Lines Matching refs:instMap
235 DenseMap<llvm::Value *, Value> instMap; member in __anonbfc9ccbf0111::Importer
492 assert(instMap.count(i)); in processConstant()
500 Value value = instMap[i]; in processConstant()
501 instMap.erase(i); in processConstant()
567 auto it = instMap.find(value); in processValue()
568 if (it != instMap.end()) in processValue()
787 assert(!instMap.count(inst) && in processInstruction()
851 instMap[inst] = op->getResult(0); in processInstruction()
860 instMap[inst] = in processInstruction()
871 instMap[inst] = b.create<ICmpOp>( in processInstruction()
881 instMap[inst] = b.create<FCmpOp>( in processInstruction()
954 instMap[inst] = b.getInsertionBlock()->addArgument( in processInstruction()
988 instMap[inst] = op->getResult(0); in processInstruction()
1002 instMap[inst] = op->getResult(0); in processInstruction()
1016 instMap[inst] = b.create<LandingpadOp>(loc, ty, lpi->isCleanup(), ops); in processInstruction()
1049 instMap[inst] = op->getResult(0); in processInstruction()
1091 instMap[inst] = b.create<GEPOp>(loc, type, sourceElementType, basePtr, in processInstruction()
1109 instMap[inst] = b.create<InsertValueOp>(loc, aggOperand, inserted, indices); in processInstruction()
1127 instMap[inst] = b.create<ExtractValueOp>(loc, type, aggOperand, indices); in processInstruction()
1141 instMap[inst] = b.create<ShuffleVectorOp>(loc, vec1, vec2, mask); in processInstruction()
1171 instMap.clear(); in processFunction()
1216 instMap[&kv.value()] = blockList[0]->addArgument( in processFunction()
1228 assert(instMap.count(llvmAndUnknown.first)); in processFunction()
1229 Value newValue = instMap[llvmAndUnknown.first]; in processFunction()