Home
last modified time | relevance | path

Searched refs:functionHeader (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Serialization/
H A DSerializeOps.cpp179 assert(functionHeader.empty() && functionBody.empty()); in processFuncOp()
203 encodeInstructionInto(functionHeader, spirv::Opcode::OpFunction, operands); in processFuncOp()
218 encodeInstructionInto(functionHeader, spirv::Opcode::OpFunctionParameter, in processFuncOp()
231 encodeInstructionInto(functionHeader, spirv::Opcode::OpLabel, in processFuncOp()
258 functions.append(functionHeader.begin(), functionHeader.end()); in processFuncOp()
260 functionHeader.clear(); in processFuncOp()
291 if (failed(emitDebugLine(functionHeader, op.getLoc()))) in processVariableOp()
293 encodeInstructionInto(functionHeader, spirv::Opcode::OpVariable, operands); in processVariableOp()
H A DSerializer.h380 SmallVector<uint32_t, 0> functionHeader; variable