Home | History | Annotate | Download | only in SPIRV

Lines Matching refs:entryPoint

852     Instruction* entryPoint = new Instruction(OpEntryPoint);
853 entryPoint->addImmediateOperand(model);
854 entryPoint->addIdOperand(function->getId());
855 entryPoint->addStringOperand(name);
857 entryPoints.push_back(std::unique_ptr<Instruction>(entryPoint));
859 return entryPoint;
863 void Builder::addExecutionMode(Function* entryPoint, ExecutionMode mode, int value1, int value2, int value3)
866 instr->addIdOperand(entryPoint->getId());
934 Function* Builder::makeEntrypoint(const char* entryPoint)
942 mainFunction = makeFunctionEntry(NoPrecision, makeVoidType(), entryPoint, params, precisions, &entry);
1406 Id Builder::createBuiltinCall(Id resultType, Id builtins, int entryPoint, std::vector<Id>& args)
1410 inst->addImmediateOperand(entryPoint);