Home | History | Annotate | Download | only in CppBackend

Lines Matching defs:iName

1116   std::string iName(getCppName(I));
1154 Out << "SwitchInst* " << iName << " = SwitchInst::Create("
1163 Out << iName << "->addCase("
1172 Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
1176 Out << iName << "->addDestination(" << opNames[i] << ");";
1187 Out << "std::vector<Value*> " << iName << "_params;";
1190 Out << iName << "_params.push_back("
1195 Out << "InvokeInst *" << iName << " = InvokeInst::Create("
1199 << iName << "_params, \"";
1202 nl(Out) << iName << "->setCallingConv(";
1205 printAttributes(inv->getAttributes(), iName);
1206 Out << iName << "->setAttributes(" << iName << "_PAL);";
1234 Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1262 Out << "FCmpInst* " << iName << " = new FCmpInst(*" << bbname << ", ";
1288 Out << "ICmpInst* " << iName << " = new ICmpInst(*" << bbname << ", ";
1309 Out << "AllocaInst* " << iName << " = new AllocaInst("
1317 nl(Out) << iName << "->setAlignment("
1323 Out << "LoadInst* " << iName << " = new LoadInst("
1329 nl(Out) << iName << "->setAlignment("
1334 nl(Out) << iName << "->setAtomic("
1341 Out << "StoreInst* " << iName << " = new StoreInst("
1347 nl(Out) << iName
1352 nl(Out) << iName << "->setAtomic("
1359 Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1378 Out << "PHINode* " << iName << " = PHINode::Create("
1385 Out << iName << "->addIncoming("
1405 Out << "CastInst* " << iName << " = new ";
1438 Out << "std::vector<Value*> " << iName << "_params;";
1441 Out << iName << "_params.push_back(" << opNames[i] << ");";
1444 Out << "CallInst* " << iName << " = CallInst::Create("
1446 << iName << "_params, \"";
1448 Out << "CallInst* " << iName << " = CallInst::Create("
1451 Out << "CallInst* " << iName << " = CallInst::Create("
1456 nl(Out) << iName << "->setCallingConv(";
1459 nl(Out) << iName << "->setTailCall("
1463 printAttributes(call->getAttributes(), iName);
1464 Out << iName << "->setAttributes(" << iName << "_PAL);";
1519 Out << "std::vector<unsigned> " << iName << "_indices;";
1522 Out << iName << "_indices.push_back("
1529 << iName << "_indices, \"";
1536 Out << "std::vector<unsigned> " << iName << "_indices;";
1539 Out << iName << "_indices.push_back("
1546 << iName << "_indices, \"";
1555 Out << "FenceInst* " << iName
1568 Out << "AtomicCmpXchgInst* " << iName
1574 nl(Out) << iName << "->setName(\"";
1577 nl(Out) << iName << "->setVolatile("
1579 nl(Out) << iName << "->setWeak("
1602 Out << "AtomicRMWInst* " << iName
1608 nl(Out) << iName << "->setName(\"";
1611 nl(Out) << iName << "->setVolatile("
1617 Out << "LandingPadInst* " << iName << " = LandingPadInst::Create(";
1622 nl(Out) << iName << "->setCleanup("
1626 nl(Out) << iName << "->addClause(" << opNames[i+1] << ");";