Home
last modified time | relevance | path

Searched refs:TheOpCode (Results 1 – 5 of 5) sorted by relevance

/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVValue.h59 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() argument
61 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId), Type(TheType) { in SPIRVValue()
65 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() argument
67 :SPIRVEntry(M, TheWordCount, TheOpCode), Type(TheType) { in SPIRVValue()
72 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() argument
74 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId), Type(NULL) { in SPIRVValue()
79 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode) in SPIRVValue() argument
80 :SPIRVEntry(M, TheWordCount, TheOpCode), Type(NULL) { in SPIRVValue()
86 SPIRVValue(Op TheOpCode):SPIRVEntry(TheOpCode), Type(NULL) {} in SPIRVValue() argument
DSPIRVType.h61 SPIRVType(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVType() argument
63 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId){} in SPIRVType()
65 SPIRVType(Op TheOpCode):SPIRVEntry(TheOpCode){} in SPIRVType() argument
625 SPIRVTypeOpaqueGeneric(Op TheOpCode, SPIRVModule *M, SPIRVId TheId) in SPIRVTypeOpaqueGeneric() argument
626 :SPIRVType(M, 2, TheOpCode, TheId){ in SPIRVTypeOpaqueGeneric()
631 SPIRVTypeOpaqueGeneric(Op TheOpCode):SPIRVType(TheOpCode), in SPIRVTypeOpaqueGeneric() argument
645 template<Op TheOpCode>
650 :SPIRVTypeOpaqueGeneric(TheOpCode, M, TheId){} in SPIRVOpaqueGenericType()
652 SPIRVOpaqueGenericType():SPIRVTypeOpaqueGeneric(TheOpCode){} in SPIRVOpaqueGenericType()
DSPIRVEntry.h205 SPIRVEntry(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVEntry() argument
207 :Module(M), OpCode(TheOpCode), Id(TheId), Attrib(SPIRVEA_DEFAULT), in SPIRVEntry()
213 SPIRVEntry(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode) in SPIRVEntry() argument
214 :Module(M), OpCode(TheOpCode), Id(SPIRVID_INVALID), Attrib(SPIRVEA_NOID), in SPIRVEntry()
220 SPIRVEntry(Op TheOpCode) in SPIRVEntry() argument
221 :Module(NULL), OpCode(TheOpCode), Id(SPIRVID_INVALID), in SPIRVEntry()
392 template<Op TheOpCode>
393 class SPIRVEntryOpCodeOnly:public SPIRVEntryNoId<TheOpCode> {
DSPIRVModule.cpp731 SPIRVModuleImpl::addOpaqueGenericType(Op TheOpCode) { in addOpaqueGenericType() argument
732 return addType(new SPIRVTypeOpaqueGeneric(TheOpCode, this, getId())); in addOpaqueGenericType()
999 SPIRVModuleImpl::addBinaryInst(Op TheOpCode, SPIRVType *Type, in addBinaryInst() argument
1001 return addInstruction(SPIRVInstTemplateBase::create(TheOpCode, Type, getId(), in addBinaryInst()
1016 SPIRVModuleImpl::addUnaryInst(Op TheOpCode, SPIRVType *TheType, in addUnaryInst() argument
1018 return addInstruction(SPIRVInstTemplateBase::create(TheOpCode, in addUnaryInst()
1057 SPIRVModuleImpl::addCmpInst(Op TheOpCode, SPIRVType *TheType, in addCmpInst() argument
1059 return addInstruction(SPIRVInstTemplateBase::create(TheOpCode, in addCmpInst()
DSPIRVInstruction.h686 template<Op TheOpCode>
690 SPIRVInstNoOperand(SPIRVBasicBlock *TheBB):SPIRVInstruction(1, TheOpCode,
696 SPIRVInstNoOperand():SPIRVInstruction(TheOpCode){