Lines Matching refs:iName
1086 std::string iName(getCppName(I));
1124 Out << "SwitchInst* " << iName << " = SwitchInst::Create("
1133 Out << iName << "->addCase("
1142 Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
1146 Out << iName << "->addDestination(" << opNames[i] << ");";
1158 Out << "std::vector<Value*> " << iName << "_params;";
1161 Out << iName << "_params.push_back("
1166 Out << "InvokeInst *" << iName << " = InvokeInst::Create("
1170 << iName << "_params, \"";
1173 nl(Out) << iName << "->setCallingConv(";
1176 printAttributes(inv->getAttributes(), iName);
1177 Out << iName << "->setAttributes(" << iName << "_PAL);";
1205 Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1233 Out << "FCmpInst* " << iName << " = new FCmpInst(*" << bbname << ", ";
1259 Out << "ICmpInst* " << iName << " = new ICmpInst(*" << bbname << ", ";
1280 Out << "AllocaInst* " << iName << " = new AllocaInst("
1288 nl(Out) << iName << "->setAlignment("
1294 Out << "LoadInst* " << iName << " = new LoadInst("
1300 nl(Out) << iName << "->setAlignment("
1305 nl(Out) << iName << "->setAtomic("
1312 Out << "StoreInst* " << iName << " = new StoreInst("
1318 nl(Out) << iName << "->setAlignment("
1323 nl(Out) << iName << "->setAtomic("
1331 Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1336 iName << "_indices;";
1339 Out << iName << "_indices.push_back("
1343 Out << "Instruction* " << iName << " = GetElementPtrInst::Create("
1344 << opNames[0] << ", " << iName << "_indices";
1354 Out << "PHINode* " << iName << " = PHINode::Create("
1361 Out << iName << "->addIncoming("
1381 Out << "CastInst* " << iName << " = new ";
1414 Out << "std::vector<Value*> " << iName << "_params;";
1417 Out << iName << "_params.push_back(" << opNames[i] << ");";
1420 Out << "CallInst* " << iName << " = CallInst::Create("
1422 << iName << "_params, \"";
1424 Out << "CallInst* " << iName << " = CallInst::Create("
1427 Out << "CallInst* " << iName << " = CallInst::Create("
1432 nl(Out) << iName << "->setCallingConv(";
1435 nl(Out) << iName << "->setTailCall("
1439 printAttributes(call->getAttributes(), iName);
1440 Out << iName << "->setAttributes(" << iName << "_PAL);";
1495 Out << "std::vector<unsigned> " << iName << "_indices;";
1498 Out << iName << "_indices.push_back("
1505 << iName << "_indices, \"";
1512 Out << "std::vector<unsigned> " << iName << "_indices;";
1515 Out << iName << "_indices.push_back("
1522 << iName << "_indices, \"";
1531 Out << "FenceInst* " << iName
1541 Out << "AtomicCmpXchgInst* " << iName
1546 nl(Out) << iName << "->setName(\"";
1570 Out << "AtomicRMWInst* " << iName
1576 nl(Out) << iName << "->setName(\"";