• Home
  • Raw
  • Download

Lines Matching refs:getUniqueId

86     Instruction* import = new Instruction(getUniqueId(), NoType, OpExtInstImport);  in import()
140 type = new Instruction(getUniqueId(), NoType, OpTypeVoid); in makeVoidType()
154 type = new Instruction(getUniqueId(), NoType, OpTypeBool); in makeBoolType()
168 type = new Instruction(getUniqueId(), NoType, OpTypeSampler); in makeSamplerType()
190 type = new Instruction(getUniqueId(), NoType, OpTypePointer); in makePointer()
205 Instruction* type = new Instruction(getUniqueId(), NoType, OpTypeForwardPointer); in makeForwardPointer()
251 type = new Instruction(getUniqueId(), NoType, OpTypeInt); in makeIntegerType()
290 type = new Instruction(getUniqueId(), NoType, OpTypeFloat); in makeFloatType()
321 Instruction* type = new Instruction(getUniqueId(), NoType, OpTypeStruct); in makeStructType()
368 type = new Instruction(getUniqueId(), NoType, OpTypeVector); in makeVectorType()
394 type = new Instruction(getUniqueId(), NoType, OpTypeMatrix); in makeMatrixType()
418 type = new Instruction(getUniqueId(), NoType, OpTypeCooperativeMatrixNV); in makeCooperativeMatrixType()
449 type = new Instruction(getUniqueId(), NoType, OpTypeArray); in makeArrayType()
461 Instruction* type = new Instruction(getUniqueId(), NoType, OpTypeRuntimeArray); in makeRuntimeArray()
489 type = new Instruction(getUniqueId(), NoType, OpTypeFunction); in makeFunctionType()
520 type = new Instruction(getUniqueId(), NoType, OpTypeImage); in makeImageType()
595 type = new Instruction(getUniqueId(), NoType, OpTypeSampledImage); in makeSampledImageType()
610 type = new Instruction(getUniqueId(), NoType, OpTypeAccelerationStructureKHR); in makeAccelerationStructureType()
625 type = new Instruction(getUniqueId(), NoType, OpTypeRayQueryKHR); in makeRayQueryType()
888 Instruction* c = new Instruction(getUniqueId(), typeId, OpConstantNull); in makeNullConstant()
917 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeBoolConstant()
937 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeIntConstant()
961 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeInt64Constant()
987 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeFloatConstant()
1018 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeDoubleConstant()
1052 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeFloat16Constant()
1169 Instruction* c = new Instruction(getUniqueId(), typeId, opcode); in makeCompositeConstant()
1415 Function* function = new Function(getUniqueId(), returnType, typeId, firstParamId, module); in makeFunctionEntry()
1429 *entry = new Block(getUniqueId(), *function); in makeFunctionEntry()
1484 Instruction* inst = new Instruction(getUniqueId(), pointerType, OpVariable); in createVariable()
1511 Instruction* inst = new Instruction(getUniqueId(), type, OpUndef); in createUndefined()
1563 Instruction* load = new Instruction(getUniqueId(), getDerefTypeId(lValue), OpLoad); in createLoad()
1601 Instruction* chain = new Instruction(getUniqueId(), typeId, OpAccessChain); in createAccessChain()
1613 Instruction* length = new Instruction(getUniqueId(), intType, OpArrayLength); in createArrayLength()
1631 Instruction* length = new Instruction(getUniqueId(), intType, OpCooperativeMatrixLengthNV); in createCooperativeMatrixLength()
1646 Instruction* extract = new Instruction(getUniqueId(), typeId, OpCompositeExtract); in createCompositeExtract()
1661 Instruction* extract = new Instruction(getUniqueId(), typeId, OpCompositeExtract); in createCompositeExtract()
1672 Instruction* insert = new Instruction(getUniqueId(), typeId, OpCompositeInsert); in createCompositeInsert()
1683 Instruction* insert = new Instruction(getUniqueId(), typeId, OpCompositeInsert); in createCompositeInsert()
1695 Instruction* extract = new Instruction(getUniqueId(), typeId, OpVectorExtractDynamic); in createVectorExtractDynamic()
1705 Instruction* insert = new Instruction(getUniqueId(), typeId, OpVectorInsertDynamic); in createVectorInsertDynamic()
1777 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createUnaryOp()
1793 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createBinOp()
1813 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createTriOp()
1824 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createOp()
1834 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createOp()
1849 Instruction* op = new Instruction(getUniqueId(), typeId, OpSpecConstantOp); in createSpecConstantOp()
1863 Instruction* op = new Instruction(getUniqueId(), function->getReturnType(), OpFunctionCall); in createFunctionCall()
1883 Instruction* swizzle = new Instruction(getUniqueId(), typeId, OpVectorShuffle); in createRvalueSwizzle()
1900 Instruction* swizzle = new Instruction(getUniqueId(), typeId, OpVectorShuffle); in createLvalueSwizzle()
1964 smear = new Instruction(getUniqueId(), vectorType, OpCompositeConstruct); in smearScalar()
1976 Instruction* inst = new Instruction(getUniqueId(), resultType, OpExtInst); in createBuiltinCall()
2180 Instruction* textureInst = new Instruction(getUniqueId(), resultType, opCode); in createTextureCall()
2262 Instruction* query = new Instruction(getUniqueId(), resultType, opCode); in createTextureQueryCall()
2364 Instruction* op = new Instruction(getUniqueId(), typeId, OpCompositeConstruct); in createCompositeConstruct()
2593 thenBlock = new Block(builder.getUniqueId(), *function); in If()
2594 mergeBlock = new Block(builder.getUniqueId(), *function); in If()
2611 elseBlock = new Block(builder.getUniqueId(), *function); in makeBeginElse()
2646 segmentBlocks.push_back(new Block(getUniqueId(), function)); in makeSwitch()
2648 Block* mergeBlock = new Block(getUniqueId(), function); in makeSwitch()
2708 auto block = new Block(getUniqueId(), function); in makeNewBlock()
3138 Block* block = new Block(getUniqueId(), buildPoint->getParent()); in createAndSetNoPredecessorBlock()