Searched refs:functionType (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
H A D | intrinsics_lowering.cpp | 85 auto functionType = call->getFunctionType(); in ReplaceWithLLVMIntrinsic() local 88 argTypes.push_back(functionType->getParamType(0U)); // Dst type in ReplaceWithLLVMIntrinsic() 89 argTypes.push_back(functionType->getParamType(1U)); // Src type in ReplaceWithLLVMIntrinsic() 90 argTypes.push_back(functionType->getParamType(2U)); // Size type in ReplaceWithLLVMIntrinsic() 92 argTypes.push_back(functionType->getParamType(0U)); // Dst type in ReplaceWithLLVMIntrinsic() 93 argTypes.push_back(functionType->getParamType(2U)); // Size type in ReplaceWithLLVMIntrinsic()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | gc_barriers.cpp | 74 auto functionType = in EmitPreWRB() local 76 builder->CreateCall(functionType, entrypoint, {load}); in EmitPreWRB()
|
H A D | llvm_ir_constructor.cpp | 97 inline llvm::Function *CreateFunctionDeclaration(llvm::FunctionType *functionType, const std::string &name, in CreateFunctionDeclaration() argument 100 ASSERT(functionType != nullptr); in CreateFunctionDeclaration() 111 function = llvm::Function::Create(functionType, llvm::Function::ExternalLinkage, name, module); in CreateFunctionDeclaration() 2309 auto functionType = llvm::FunctionType::get(func_->getReturnType(), argTypes, false); in CreateTailCallInterpreter() local 2310 auto call = builder_.CreateCall(functionType, ptr, ccValues_); in CreateTailCallInterpreter()
|
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/ |
H A D | declgenEts2Ts.h | 50 void GenFunctionType(const checker::ETSFunctionType *functionType, const ir::MethodDefinition *methodDef = nullptr);
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSAnalyzerHelpers.h | 43 checker::Signature *ResolveCallExtensionFunction(checker::ETSFunctionType *functionType, checker::ETSChecker *checker,
|
H A D | ETSAnalyzerHelpers.cpp | 300 checker::Signature *ResolveCallExtensionFunction(checker::ETSFunctionType *functionType, checker::ETSChecker *checker, in ResolveCallExtensionFunction() argument 306 checker->ResolveCallExpressionAndTrailingLambda(functionType->CallSignatures(), expr, expr->Start()); in ResolveCallExtensionFunction()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_ir_builder.cpp | 1255 LiteCGType *functionType = lmirBuilder_->CreateFuncType(paramTys, retType, false); in GenerateFuncType() local 1256 return functionType; in GenerateFuncType() 2771 LiteCGType *functionType = lmirBuilder_->CreateFuncType(paramTys, lmirBuilder_->i64RefType, false); in GetExperimentalDeoptTy() local 2772 return functionType; in GetExperimentalDeoptTy()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/ |
H A D | llvm_ir_builder.cpp | 3057 auto functionType = LLVMFunctionType(returnType, paramTys.data(), paramTys.size(), false); in GenerateFuncType() local 3058 return functionType; in GenerateFuncType()
|
Completed in 26 milliseconds