/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Serializer.cpp | 457 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/ |
D | ReplaceShadowingVariables.cpp | 41 TIntermBlock *functionBody; // function body where replacement occurs member 110 if (!ReplaceVariable(compiler, replace.functionBody, replace.originalVariable, in executeReplacements()
|
D | IntermNode_util.cpp | 43 TIntermBlock *functionBody) in CreateInternalFunctionDefinitionNode() argument 45 return new TIntermFunctionDefinition(new TIntermFunctionPrototype(&func), functionBody); in CreateInternalFunctionDefinitionNode()
|
D | IntermNode_util.h | 23 TIntermBlock *functionBody);
|
/external/angle/src/tests/compiler_tests/ |
D | CollectVariables_test.cpp | 199 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/ |
D | Writer.cpp | 846 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/ |
D | ParseHelper.h | 192 …ion &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceL…
|
D | ParseHelper.cpp | 1880 …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/ |
D | hlslParseHelper.h | 87 …void handleFunctionBody(const TSourceLoc&, TFunction&, TIntermNode* functionBody, TIntermNode*& no…
|
D | hlslGrammar.cpp | 2695 TIntermNode* functionBody = nullptr; in acceptFunctionBody() local 2696 if (! acceptCompoundStatement(functionBody)) in acceptFunctionBody() 2700 … parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode); in acceptFunctionBody()
|
D | hlslParseHelper.cpp | 2264 …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/ |
D | hlslParseHelper.h | 87 …void handleFunctionBody(const TSourceLoc&, TFunction&, TIntermNode* functionBody, TIntermNode*& no…
|
D | hlslGrammar.cpp | 2693 TIntermNode* functionBody = nullptr; in acceptFunctionBody() local 2694 if (! acceptCompoundStatement(functionBody)) in acceptFunctionBody() 2698 … parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode); in acceptFunctionBody()
|
D | hlslParseHelper.cpp | 2264 …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/ |
D | ParseContext.h | 301 TIntermBlock *functionBody,
|
D | ParseContext.cpp | 3845 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()
|