File: ldrddi_driver_ddi.cpp.mako

package info (click to toggle)
level-zero 1.26.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,468 kB
  • sloc: cpp: 130,327; ansic: 16,197; python: 9,824; makefile: 4
file content (181 lines) | stat: -rw-r--r-- 6,805 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<%!
import re
from templates import helper as th
%><%
    n=namespace
    N=n.upper()

    x=tags['$x']
    X=x.upper()
%>/*
 *
 * Copyright (C) 2019-2025 Intel Corporation
 *
 * SPDX-License-Identifier: MIT
 *
 * @file ${name}.cpp
 *
 */
#include "${x}_loader_internal.h"

namespace loader_driver_ddi
{
    %for obj in th.extract_objs(specs, r"function"):
    %if not (re.match(r"Init", obj['name']) or re.match(r"\w+InitDrivers$", th.make_func_name(n, tags, obj)) or re.match(r"\w+DriverGet$", th.make_func_name(n, tags, obj))):
    <%
    ret_type = obj['return_type']
    failure_return = None
    if ret_type != 'ze_result_t':
        failure_return = th.get_first_failure_return(obj)
    %>///////////////////////////////////////////////////////////////////////////////
    /// @brief Intercept function for ${th.make_func_name(n, tags, obj)}
    %if 'condition' in obj:
    #if ${th.subt(n, tags, obj['condition'])}
    %endif
    __${x}dlllocal ${ret_type} ${X}_APICALL
    ${th.make_func_name(n, tags, obj)}(
        %for line in th.make_param_lines(n, tags, obj):
        ${line}
        %endfor
        )
    {
        %if ret_type == 'ze_result_t':
        ${x}_result_t result = ${X}_RESULT_SUCCESS;
        %else:
        ${ret_type} result {};
        %endif

        %if namespace != "zer":
        %for i, item in enumerate(th.get_loader_prologue(n, tags, obj, meta)):
        %if 0 == i:
        // extract handle's function pointer table
        %if 'range' in item:
        %if namespace == "ze":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']}[ 0 ] )->pCore;
        %elif namespace == "zet":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']}[ 0 ] )->pTools;
        %elif namespace == "zes":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']}[ 0 ] )->pSysman;
        %endif
        %else:
        %if namespace == "ze":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']} )->pCore;
        %elif namespace == "zet":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']} )->pTools;
        %elif namespace == "zes":
        auto dditable = reinterpret_cast<ze_handle_t*>( ${item['name']} )->pSysman;
        %endif
        %endif
        if (dditable->isValidFlag == 0)
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            return ${failure_return};
            %endif
        // Check that api version in the driver is supported by this version of the API
        if (dditable->version < ${th.get_version(obj)}) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNSUPPORTED_VERSION;
            %else:
            return ${failure_return};
            %endif
        }
        // Check that the driver has the function pointer table init
        if (dditable->${th.get_table_name(n, tags, obj)} == nullptr) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            return ${failure_return};
            %endif
        }
        auto ${th.make_pfn_name(n, tags, obj)} = dditable->${th.get_table_name(n, tags, obj)}->${th.make_pfn_name(n, tags, obj)};
        %endif
        %endfor
        %else: ## for zer API's
        %if re.match(r"\w+GetLastErrorDescription", th.make_func_name(n, tags, obj)):
        error_state::getErrorDesc(ppString);
        if (ppString && *ppString && strlen(*ppString) > 0)
        {
            return ZE_RESULT_SUCCESS;
        }

        %endif
        // Check if the default driver supports DDI Handles
        if (loader::context->defaultZerDriverHandle == nullptr) {
            %if ret_type == 'ze_result_t':
            if (loader::context->zeDrivers.front().zerddiInitResult == ZE_RESULT_ERROR_UNSUPPORTED_FEATURE) {
                return ${X}_RESULT_ERROR_UNSUPPORTED_FEATURE;
            }
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            if (loader::context->zeDrivers.front().zerddiInitResult == ZE_RESULT_ERROR_UNSUPPORTED_FEATURE) {
                error_state::setErrorDesc("ERROR UNSUPPORTED FEATURE");
                return ${failure_return};
            }
            error_state::setErrorDesc("ERROR UNINITIALIZED");
            return ${failure_return};
            %endif
        }
        auto dditable = reinterpret_cast<ze_handle_t*>( loader::context->defaultZerDriverHandle )->pRuntime;
        if (dditable->isValidFlag == 0) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            error_state::setErrorDesc("ERROR UNINITIALIZED");
            return ${failure_return};
            %endif
        }
        // Check that api version in the driver is supported by this version of the API
        if (dditable->version < ${th.get_version(obj)}) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNSUPPORTED_VERSION;
            %else:
            error_state::setErrorDesc("ERROR UNSUPPORTED VERSION");
            return ${failure_return};
            %endif
        }
        // Check that the driver has the function pointer table init
        if (dditable->${th.get_table_name(n, tags, obj)} == nullptr) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            error_state::setErrorDesc("ERROR UNINITIALIZED");
            return ${failure_return};
            %endif
        }
        auto ${th.make_pfn_name(n, tags, obj)} = dditable->${th.get_table_name(n, tags, obj)}->${th.make_pfn_name(n, tags, obj)};
        %endif
        if( nullptr == ${th.make_pfn_name(n, tags, obj)} ) {
            %if ret_type == 'ze_result_t':
            return ${X}_RESULT_ERROR_UNINITIALIZED;
            %else:
            %if n == 'zer':
            error_state::setErrorDesc("ERROR UNINITIALIZED");
            %endif
            return ${failure_return};
            %endif
        }
        // forward to device-driver
        result = ${th.make_pfn_name(n, tags, obj)}( ${", ".join(th.make_param_lines(n, tags, obj, format=["name"]))} );
        return result;
    }
    %if 'condition' in obj:
    #endif // ${th.subt(n, tags, obj['condition'])}
    %endif

    %endif
    %endfor

    ///////////////////////////////////////////////////////////////////////////////
    /// @brief function for removing the ddi driver tables for ${n}
    __${x}dlllocal void ${X}_APICALL
    ${n}DestroyDDiDriverTables(${n}_dditable_driver_t* pDdiTable)
    {
        // Delete ddi tables
%for tbl in th.get_pfntables(specs, meta, n, tags):
        delete pDdiTable->${tbl['name']};
%endfor
        delete pDdiTable;
    }

} // namespace loader_driver_ddi