Home
last modified time | relevance | path

Searched refs:EF (Results 1 – 5 of 5) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_reflection.cpp422 const RSExportForEach *EF = *I; in genScriptClassConstructor() local
424 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes(); in genScriptClassConstructor()
433 const RSExportType *OET = EF->getOutType(); in genScriptClassConstructor()
613 void RSReflectionJava::genExportFunction(const RSExportFunc *EF) { in genExportFunction() argument
615 << EF->getName() << " = " << getNextExportFuncSlot() << ";\n"; in genExportFunction()
620 if (EF->hasParam()) { in genExportFunction()
621 for (RSExportFunc::const_param_iterator I = EF->params_begin(), in genExportFunction()
622 E = EF->params_end(); in genExportFunction()
630 "invoke_" + EF->getName(/*Mangle=*/false), in genExportFunction()
635 if (!EF->hasParam()) { in genExportFunction()
[all …]
Dslang_rs_backend.cpp280 const RSExportFunc *EF = *I; in dumpExportFunctionInfo() local
283 if (!EF->hasParam()) { in dumpExportFunctionInfo()
285 EF->getName().c_str())); in dumpExportFunctionInfo()
287 llvm::Function *F = M->getFunction(EF->getName()); in dumpExportFunctionInfo()
289 const std::string HelperFunctionName(".helper_" + EF->getName()); in dumpExportFunctionInfo()
313 if (!EF->checkParameterPacketType(HelperFunctionParameterTy)) { in dumpExportFunctionInfo()
316 EF->getName().c_str()); in dumpExportFunctionInfo()
318 const RSExportRecordType *Expected = EF->getParamPacketType(); in dumpExportFunctionInfo()
365 for (size_t i = 0; i < EF->getNumParameters(); i++) { in dumpExportFunctionInfo()
Dslang_rs_context.cpp113 RSExportFunc *EF = RSExportFunc::Create(this, FD); in processExportFunc() local
114 if (EF == NULL) in processExportFunc()
117 mExportFuncs.push_back(EF); in processExportFunc()
Dslang_rs_reflection.h196 void genExportFunction(const RSExportFunc *EF);
198 void genExportForEach(const RSExportForEach *EF);
Dslang_rs_reflection_cpp.cpp183 const RSExportForEach *EF = *I; in genTypeInstancesUsedInForEach() local
184 const RSExportType *OET = EF->getOutType(); in genTypeInstancesUsedInForEach()
190 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes(); in genTypeInstancesUsedInForEach()