Home
last modified time | relevance | path

Searched refs:functionBody (Results 1 – 16 of 16) sorted by relevance

/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DSerializer.cpp457 SmallVector<uint32_t, 0> functionBody; member in __anon4460d32f0111::Serializer
818 assert(functionHeader.empty() && functionBody.empty()); in processFuncOp()
886 functionBody[offset] = id; in processFuncOp()
893 if (failed(encodeInstructionInto(functionBody, spirv::Opcode::OpFunctionEnd, in processFuncOp()
899 functions.append(functionBody.begin(), functionBody.end()); in processFuncOp()
901 functionBody.clear(); in processFuncOp()
1614 encodeInstructionInto(functionBody, spirv::Opcode::OpLabel, {blockID}); in processBlock()
1694 deferredPhiValues[value].push_back(functionBody.size() + 1 + in emitPhiForBlockArguments()
1704 encodeInstructionInto(functionBody, spirv::Opcode::OpPhi, phiArgs); in emitPhiForBlockArguments()
1727 emitDebugLine(functionBody, loc); in processSelectionOp()
[all …]
/external/angle/src/compiler/translator/tree_util/
DReplaceShadowingVariables.cpp41 TIntermBlock *functionBody; // function body where replacement occurs member
110 if (!ReplaceVariable(compiler, replace.functionBody, replace.originalVariable, in executeReplacements()
DIntermNode_util.cpp43 TIntermBlock *functionBody) in CreateInternalFunctionDefinitionNode() argument
45 return new TIntermFunctionDefinition(new TIntermFunctionPrototype(&func), functionBody); in CreateInternalFunctionDefinitionNode()
DIntermNode_util.h23 TIntermBlock *functionBody);
/external/angle/src/tests/compiler_tests/
DCollectVariables_test.cpp199 const std::string &functionBody) in compileGeometryShaderWithInputPrimitive() argument
206 << inputVarying << functionBody; in compileGeometryShaderWithInputPrimitive()
1074 const std::string &functionBody = in TEST_F() local
1082 compileGeometryShaderWithInputPrimitive(kInputPrimitives[i], "", functionBody); in TEST_F()
/external/llvm-project/lld/wasm/
DWriter.cpp846 std::string functionBody; in createFunction() local
848 raw_string_ostream os(functionBody); in createFunction()
852 ArrayRef<uint8_t> body = arrayRefFromStringRef(saver.save(functionBody)); in createFunction()
/external/swiftshader/src/OpenGL/compiler/
DParseHelper.h192 …ion &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceL…
DParseHelper.cpp1880 …ion &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceL… in addFunctionDefinition() argument
1890 …TIntermAggregate *aggregate = intermediate.growAggregate(functionPrototype, functionBody, location… in addFunctionDefinition()
1900 if(functionBody && functionBody->getAsAggregate()) in addFunctionDefinition()
1901 aggregate->setEndLine(functionBody->getAsAggregate()->getEndLine()); in addFunctionDefinition()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/
DhlslParseHelper.h87 …void handleFunctionBody(const TSourceLoc&, TFunction&, TIntermNode* functionBody, TIntermNode*& no…
DhlslGrammar.cpp2695 TIntermNode* functionBody = nullptr; in acceptFunctionBody() local
2696 if (! acceptCompoundStatement(functionBody)) in acceptFunctionBody()
2700 … parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode); in acceptFunctionBody()
DhlslParseHelper.cpp2264 …eContext::handleFunctionBody(const TSourceLoc& loc, TFunction& function, TIntermNode* functionBody, in handleFunctionBody() argument
2267 node = intermediate.growAggregate(node, functionBody); in handleFunctionBody()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.h87 …void handleFunctionBody(const TSourceLoc&, TFunction&, TIntermNode* functionBody, TIntermNode*& no…
DhlslGrammar.cpp2693 TIntermNode* functionBody = nullptr; in acceptFunctionBody() local
2694 if (! acceptCompoundStatement(functionBody)) in acceptFunctionBody()
2698 … parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode); in acceptFunctionBody()
DhlslParseHelper.cpp2264 …eContext::handleFunctionBody(const TSourceLoc& loc, TFunction& function, TIntermNode* functionBody, in handleFunctionBody() argument
2267 node = intermediate.growAggregate(node, functionBody); in handleFunctionBody()
/external/angle/src/compiler/translator/
DParseContext.h301 TIntermBlock *functionBody,
DParseContext.cpp3845 TIntermBlock *functionBody, in addFunctionDefinition() argument
3862 if (functionBody == nullptr) in addFunctionDefinition()
3864 functionBody = new TIntermBlock(); in addFunctionDefinition()
3865 functionBody->setLine(location); in addFunctionDefinition()
3868 new TIntermFunctionDefinition(functionPrototype, functionBody); in addFunctionDefinition()