Searched refs:addFuncDecl (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/mlir/lib/Conversion/AsyncToLLVM/ |
D | AsyncToLLVM.cpp | 117 auto addFuncDecl = [&](StringRef name, FunctionType type) { in addAsyncRuntimeApiDeclarations() local 124 addFuncDecl(kAddRef, AsyncAPI::addOrDropRefFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 125 addFuncDecl(kDropRef, AsyncAPI::addOrDropRefFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 126 addFuncDecl(kCreateToken, AsyncAPI::createTokenFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 127 addFuncDecl(kCreateGroup, AsyncAPI::createGroupFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 128 addFuncDecl(kEmplaceToken, AsyncAPI::emplaceTokenFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 129 addFuncDecl(kAwaitToken, AsyncAPI::awaitTokenFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 130 addFuncDecl(kAwaitGroup, AsyncAPI::awaitGroupFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 131 addFuncDecl(kExecute, AsyncAPI::executeFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() 132 addFuncDecl(kAddTokenToGroup, AsyncAPI::addTokenToGroupFunctionType(ctx)); in addAsyncRuntimeApiDeclarations() [all …]
|