reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/BrainF/BrainF.cpp
   99   BB->getInstList().push_back(cast<Instruction>(ptr_arr));
  133   endbb->getInstList().push_back(CallInst::CreateFree(ptr_arr, endbb));
examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
  866   TheFunction->getBasicBlockList().push_back(ElseBB);
  878   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
  866   TheFunction->getBasicBlockList().push_back(ElseBB);
  878   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
  865   TheFunction->getBasicBlockList().push_back(ElseBB);
  877   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
  851   TheFunction->getBasicBlockList().push_back(ElseBB);
  863   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
  875   TheFunction->getBasicBlockList().push_back(ElseBB);
  887   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/Chapter5/toy.cpp
  652   TheFunction->getBasicBlockList().push_back(ElseBB);
  664   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/Chapter6/toy.cpp
  764   TheFunction->getBasicBlockList().push_back(ElseBB);
  776   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/Chapter7/toy.cpp
  871   TheFunction->getBasicBlockList().push_back(ElseBB);
  883   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/Chapter8/toy.cpp
  870   TheFunction->getBasicBlockList().push_back(ElseBB);
  882   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/Kaleidoscope/Chapter9/toy.cpp
 1033   TheFunction->getBasicBlockList().push_back(ElseBB);
 1045   TheFunction->getBasicBlockList().push_back(MergeBB);
examples/ModuleMaker/ModuleMaker.cpp
   58   BB->getInstList().push_back(Add);
   61   BB->getInstList().push_back(ReturnInst::Create(Context, Add));
include/llvm/ADT/ilist.h
  246       push_back(clone(V));
include/llvm/CodeGen/MachineBasicBlock.h
  601   void push_back(MachineInstr *MI) { Insts.push_back(MI); }
include/llvm/CodeGen/MachineFunction.h
  668   void push_back (MachineBasicBlock *MBB) { BasicBlocks.push_back (MBB); }
lib/Analysis/AliasSetTracker.cpp
  398   AliasSets.push_back(new AliasSet());
  456   AliasSets.push_back(new AliasSet());
  618   AliasSets.push_back(new AliasSet());
lib/Analysis/IVUsers.cpp
  300   IVUses.push_back(new IVStrideUse(this, User, Operand));
lib/Analysis/MemorySSA.cpp
 1532       Accesses->push_back(MUD);
 1616     Accesses->push_back(NewAccess);
lib/AsmParser/LLParser.cpp
 1002     M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
 1004     M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
 5658       BB->getInstList().push_back(Inst);
 5667       BB->getInstList().push_back(Inst);
lib/Bitcode/Reader/BitcodeReader.cpp
 2987     TheModule->getGlobalList().push_back(Pair.second);
 3939           CurBB->getInstList().push_back(Temp);
 4940         CurBB->getInstList().push_back(I);
 5133     CurBB->getInstList().push_back(I);
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  834   AllNodes.push_back(N);
lib/CodeGen/SlotIndexes.cpp
   67   indexList.push_back(createEntry(nullptr, index));
   79       indexList.push_back(createEntry(&MI, index += SlotIndex::InstrDist));
   87     indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist));
lib/CodeGen/WinEHPrepare.cpp
 1206       IncomingBlock->getInstList().push_back(CatchRet);
 1207       NewBlock->getInstList().push_back(Goto);
lib/IR/BasicBlock.cpp
   60     NewParent->getBasicBlockList().push_back(this);
lib/IR/Core.cpp
 2648   unwrap<Function>(Fn)->getBasicBlockList().push_back(unwrap(BB));
lib/IR/Function.cpp
  261     ParentModule->getFunctionList().push_back(this);
lib/IR/Globals.cpp
  377     M.getGlobalList().push_back(this);
  482     ParentModule->getAliasList().push_back(this);
  538     ParentModule->getIFuncList().push_back(this);
lib/IR/Instruction.cpp
   41   InsertAtEnd->getInstList().push_back(this);
lib/IR/Instructions.cpp
  588       InsertAtEnd->getInstList().push_back(MCall);
 2219   InsertAtEnd->getInstList().push_back(Res);
 2350   InsertAtEnd->getInstList().push_back(Res);
lib/IR/Module.cpp
  153     FunctionList.push_back(New);
  265     NamedMDList.push_back(NMD);
lib/MC/MCFragment.cpp
  242     Parent->getFragmentList().push_back(this);
lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
  135     NewRetBlock->getInstList().push_back(PN);
lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
  349         M.getFunctionList().push_back(NewF);
lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
  136     M.getFunctionList().push_back(NewF);
lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
  153         BB->getInstList().push_back(PtrCast);
  193       BB->getInstList().push_back(Cast);
lib/Transforms/IPO/GlobalOpt.cpp
  493       Globals.push_back(NGV);
  529       Globals.push_back(NGV);
lib/Transforms/Instrumentation/ControlHeightReduction.cpp
 1833   PreEntryBlock->getInstList().push_back(NewBR);
lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
  382     CaseBB->getInstList().push_back(NewInst);
lib/Transforms/Scalar/JumpThreading.cpp
 2012     NewBB->getInstList().push_back(New);
lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  464       ParentBB->getInstList().push_back(BI.clone());
 2045     ParentBB->getInstList().push_back(NewTI);
lib/Transforms/Utils/BasicBlockUtils.cpp
  773   Pred->getInstList().push_back(NewRet);
lib/Transforms/Utils/CloneFunction.cpp
   60     NewBB->getInstList().push_back(NewInst);
  366     NewBB->getInstList().push_back(NewInst);
  423     NewBB->getInstList().push_back(NewInst);
  499     NewFunc->getBasicBlockList().push_back(NewBB);
lib/Transforms/Utils/CodeExtractor.cpp
  923   newFunction->getBasicBlockList().push_back(newRootNode);
 1122       codeReplacer->getInstList().push_back(GEP);
 1124       codeReplacer->getInstList().push_back(SI);
 1139   codeReplacer->getInstList().push_back(call);
 1161       codeReplacer->getInstList().push_back(GEP);
 1169     codeReplacer->getInstList().push_back(load);
 1336     newBlocks.push_back(Block);
 1468   newFuncRoot->getInstList().push_back(BranchI);
lib/Transforms/Utils/LoopUnroll.cpp
  609       Header->getParent()->getBasicBlockList().push_back(New);
lib/Transforms/Utils/LoopUnrollAndJam.cpp
  321       Header->getParent()->getBasicBlockList().push_back(New);
lib/Transforms/Utils/LowerSwitch.cpp
  322   NewNode->getInstList().push_back(Comp);
lib/Transforms/Utils/PredicateInfo.cpp
  345   AllInfos.push_back(PB);
lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
   96     NewRetBlock->getInstList().push_back(PN);
tools/clang/lib/CodeGen/CGCleanup.cpp
  902         NormalExit->getInstList().push_back(InstsToAppend[I]);
tools/clang/lib/CodeGen/CGObjCMac.cpp
 7279     CGM.getModule().getGlobalList().push_back(GV);
tools/clang/lib/CodeGen/CGStmt.cpp
  481     CurFn->getBasicBlockList().push_back(BB);
  514     CurFn->getBasicBlockList().push_back(block);
 1223   CurFn->getBasicBlockList().push_back(CaseRangeBlock);
tools/clang/lib/CodeGen/CodeGenFunction.cpp
  291     return CGF.CurFn->getBasicBlockList().push_back(BB);
tools/lld/include/lld/Core/Simple.h
  207     _references.push_back(node);
  232       _references.push_back(node);
unittests/ADT/IListTest.cpp
   30   List.push_back(new Node(1));
   35   List.push_back(new Node(2));
   52   L1.push_back(&L1Nodes[0]);
   53   L1.push_back(&L1Nodes[1]);
   59   L3.push_back(new Node(7));
   79   List.push_back(new Node(1));
   88   List.push_back(new Node(2));
   89   List.push_back(new Node(3));
  144   List.push_back(new Node(1));
  154   List.push_back(new Node(5));
  155   List.push_back(new Node(6));
unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
   39     Main->getBasicBlockList().push_back(BasicBlock::Create(Context));
unittests/ExecutionEngine/Orc/RemoteObjectLayerTest.cpp
  103   Main->getBasicBlockList().push_back(BasicBlock::Create(Ctx));