Lines Matching refs:iName
1097 std::string iName(getCppName(I));
1135 Out << "SwitchInst* " << iName << " = SwitchInst::Create("
1144 Out << iName << "->addCase("
1153 Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
1157 Out << iName << "->addDestination(" << opNames[i] << ");";
1169 Out << "std::vector<Value*> " << iName << "_params;";
1172 Out << iName << "_params.push_back("
1177 Out << "InvokeInst *" << iName << " = InvokeInst::Create("
1181 << iName << "_params, \"";
1184 nl(Out) << iName << "->setCallingConv(";
1187 printAttributes(inv->getAttributes(), iName);
1188 Out << iName << "->setAttributes(" << iName << "_PAL);";
1216 Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1244 Out << "FCmpInst* " << iName << " = new FCmpInst(*" << bbname << ", ";
1270 Out << "ICmpInst* " << iName << " = new ICmpInst(*" << bbname << ", ";
1291 Out << "AllocaInst* " << iName << " = new AllocaInst("
1299 nl(Out) << iName << "->setAlignment("
1305 Out << "LoadInst* " << iName << " = new LoadInst("
1311 nl(Out) << iName << "->setAlignment("
1316 nl(Out) << iName << "->setAtomic("
1323 Out << "StoreInst* " << iName << " = new StoreInst("
1329 nl(Out) << iName << "->setAlignment("
1334 nl(Out) << iName << "->setAtomic("
1342 Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1347 Out << "std::vector<Value*> " << iName << "_indices;";
1350 Out << iName << "_indices.push_back("
1354 Out << "Instruction* " << iName << " = GetElementPtrInst::Create("
1355 << opNames[0] << ", " << iName << "_indices";
1365 Out << "PHINode* " << iName << " = PHINode::Create("
1372 Out << iName << "->addIncoming("
1392 Out << "CastInst* " << iName << " = new ";
1425 Out << "std::vector<Value*> " << iName << "_params;";
1428 Out << iName << "_params.push_back(" << opNames[i] << ");";
1431 Out << "CallInst* " << iName << " = CallInst::Create("
1433 << iName << "_params, \"";
1435 Out << "CallInst* " << iName << " = CallInst::Create("
1438 Out << "CallInst* " << iName << " = CallInst::Create("
1443 nl(Out) << iName << "->setCallingConv(";
1446 nl(Out) << iName << "->setTailCall("
1450 printAttributes(call->getAttributes(), iName);
1451 Out << iName << "->setAttributes(" << iName << "_PAL);";
1506 Out << "std::vector<unsigned> " << iName << "_indices;";
1509 Out << iName << "_indices.push_back("
1516 << iName << "_indices, \"";
1523 Out << "std::vector<unsigned> " << iName << "_indices;";
1526 Out << iName << "_indices.push_back("
1533 << iName << "_indices, \"";
1542 Out << "FenceInst* " << iName
1552 Out << "AtomicCmpXchgInst* " << iName
1557 nl(Out) << iName << "->setName(\"";
1581 Out << "AtomicRMWInst* " << iName
1587 nl(Out) << iName << "->setName(\"";