Home
last modified time | relevance | path

Searched refs:typesGlobalValues (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Serialization/
H A DSerializer.cpp115 typesGlobalValues.size() + functions.size(); in collect()
130 binary.append(typesGlobalValues.begin(), typesGlobalValues.end()); in collect()
349 encodeInstructionInto(typesGlobalValues, typeEnum, operands); in processTypeImpl()
362 encodeInstructionInto(typesGlobalValues, spirv::Opcode::OpTypePointer, in processTypeImpl()
467 encodeInstructionInto(typesGlobalValues, in prepareBasicType()
696 encodeInstructionInto(typesGlobalValues, opcode, operands); in prepareArrayConstant()
741 encodeInstructionInto(typesGlobalValues, opcode, operands); in prepareDenseElementsConstant()
782 encodeInstructionInto(typesGlobalValues, opcode, {typeID, resultID}); in prepareConstantBool()
828 encodeInstructionInto(typesGlobalValues, opcode, {typeID, resultID, word}); in prepareConstantInt()
842 encodeInstructionInto(typesGlobalValues, opcode, in prepareConstantInt()
[all …]
H A DSerializeOps.cpp112 encodeInstructionInto(typesGlobalValues, in processSpecConstantCompositeOp()
155 encodeInstructionInto(typesGlobalValues, spirv::Opcode::OpSpecConstantOp, in processSpecConstantOperationOp()
170 encodeInstructionInto(typesGlobalValues, spirv::Opcode::OpUndef, in processUndefOp()
344 if (failed(emitDebugLine(typesGlobalValues, varOp.getLoc()))) in processGlobalVariableOp()
346 encodeInstructionInto(typesGlobalValues, spirv::Opcode::OpVariable, operands); in processGlobalVariableOp()
H A DSerializer.h353 SmallVector<uint32_t, 0> typesGlobalValues; variable