Home | History | Annotate | Download | only in CppBackend

Lines Matching defs:iName

1117   std::string iName(getCppName(I));
1155 Out << "SwitchInst* " << iName << " = SwitchInst::Create("
1164 Out << iName << "->addCase("
1173 Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
1177 Out << iName << "->addDestination(" << opNames[i] << ");";
1188 Out << "std::vector<Value*> " << iName << "_params;";
1191 Out << iName << "_params.push_back("
1196 Out << "InvokeInst *" << iName << " = InvokeInst::Create("
1200 << iName << "_params, \"";
1203 nl(Out) << iName << "->setCallingConv(";
1206 printAttributes(inv->getAttributes(), iName);
1207 Out << iName << "->setAttributes(" << iName << "_PAL);";
1235 Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1263 Out << "FCmpInst* " << iName << " = new FCmpInst(*" << bbname << ", ";
1289 Out << "ICmpInst* " << iName << " = new ICmpInst(*" << bbname << ", ";
1310 Out << "AllocaInst* " << iName << " = new AllocaInst("
1318 nl(Out) << iName << "->setAlignment("
1324 Out << "LoadInst* " << iName << " = new LoadInst("
1330 nl(Out) << iName << "->setAlignment("
1335 nl(Out) << iName << "->setAtomic("
1342 Out << "StoreInst* " << iName << " = new StoreInst("
1348 nl(Out) << iName
1353 nl(Out) << iName << "->setAtomic("
1361 Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1366 Out << "std::vector<Value*> " << iName << "_indices;";
1369 Out << iName << "_indices.push_back("
1373 Out << "Instruction* " << iName << " = GetElementPtrInst::Create("
1374 << opNames[0] << ", " << iName << "_indices";
1384 Out << "PHINode* " << iName << " = PHINode::Create("
1391 Out << iName << "->addIncoming("
1411 Out << "CastInst* " << iName << " = new ";
1444 Out << "std::vector<Value*> " << iName << "_params;";
1447 Out << iName << "_params.push_back(" << opNames[i] << ");";
1450 Out << "CallInst* " << iName << " = CallInst::Create("
1452 << iName << "_params, \"";
1454 Out << "CallInst* " << iName << " = CallInst::Create("
1457 Out << "CallInst* " << iName << " = CallInst::Create("
1462 nl(Out) << iName << "->setCallingConv(";
1465 nl(Out) << iName << "->setTailCall("
1469 printAttributes(call->getAttributes(), iName);
1470 Out << iName << "->setAttributes(" << iName << "_PAL);";
1525 Out << "std::vector<unsigned> " << iName << "_indices;";
1528 Out << iName << "_indices.push_back("
1535 << iName << "_indices, \"";
1542 Out << "std::vector<unsigned> " << iName << "_indices;";
1545 Out << iName << "_indices.push_back("
1552 << iName << "_indices, \"";
1561 Out << "FenceInst* " << iName
1574 Out << "AtomicCmpXchgInst* " << iName
1580 nl(Out) << iName << "->setName(\"";
1583 nl(Out) << iName << "->setVolatile("
1585 nl(Out) << iName << "->setWeak("
1608 Out << "AtomicRMWInst* " << iName
1614 nl(Out) << iName << "->setName(\"";
1617 nl(Out) << iName << "->setVolatile("
1623 Out << "LandingPadInst* " << iName << " = LandingPadInst::Create(";
1628 nl(Out) << iName << "->setCleanup("
1632 nl(Out) << iName << "->addClause(" << opNames[i+1] << ");";