Lines Matching refs:TheBB
50 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
51 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheType, TheId), in SPIRVInstruction()
52 BB(TheBB){ in SPIRVInstruction()
57 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB, SPIRVModule *TheBM) in SPIRVInstruction() argument
58 : SPIRVValue(TheBM, TheWordCount, TheOC, TheType, TheId), BB(TheBB){ in SPIRVInstruction()
64 SPIRVId TheId, SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
65 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheId), BB(TheBB){ in SPIRVInstruction()
70 SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
71 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC), BB(TheBB){ in SPIRVInstruction()
76 SPIRVType *TheType, SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
77 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheType), BB(TheBB){ in SPIRVInstruction()
82 SPIRVInstruction::setParent(SPIRVBasicBlock *TheBB) { in setParent() argument
83 assert(TheBB && "Invalid BB"); in setParent()
84 if (BB == TheBB) in setParent()
87 BB = TheBB; in setParent()