19 lines
375 B
TableGen
19 lines
375 B
TableGen
|
def GPUExtensions : StandardSpec<"GPUExtensions"> {
|
||
|
HeaderSpec RPC = HeaderSpec<
|
||
|
"gpu/rpc.h",
|
||
|
[], // Macros
|
||
|
[], // Types
|
||
|
[], // Enumerations
|
||
|
[
|
||
|
FunctionSpec<
|
||
|
"rpc_host_call",
|
||
|
RetValSpec<VoidType>,
|
||
|
[ArgSpec<VoidPtr>, ArgSpec<VoidPtr>, ArgSpec<SizeTType>]
|
||
|
>,
|
||
|
]
|
||
|
>;
|
||
|
let Headers = [
|
||
|
RPC,
|
||
|
];
|
||
|
}
|