reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
394 auto *BBIDF = MPhi->getBlock(); 397 MPhi->addIncoming(getPreviousDefFromEnd(Pred, CachedPreviousDef), Pred);lib/Transforms/Scalar/DivRemPairs.cpp
85 assert((DivInst->getOpcode() == Instruction::UDiv || 86 DivInst->getOpcode() == Instruction::SDiv) && 88 assert(DivInst->getType() == RemInst->getType() && "Types should match."); 88 assert(DivInst->getType() == RemInst->getType() && "Types should match."); 94 Type *getType() const { return DivInst->getType(); } 97 bool isSigned() const { return DivInst->getOpcode() == Instruction::SDiv; } 100 Value *getDividend() const { return DivInst->getOperand(0); } 101 Value *getDivisor() const { return DivInst->getOperand(1); } 104 switch (RemInst->getOpcode()) { 209 RealRem->setName(RemInst->getName() + ".recomposed"); 229 if (HasDivRemOp && RemInst->getParent() == DivInst->getParent()) 229 if (HasDivRemOp && RemInst->getParent() == DivInst->getParent()) 249 RemInst->moveAfter(DivInst); 251 DivInst->moveAfter(RemInst); 299 DivInst->moveBefore(RemInst); 305 Sub->setName(RemInst->getName() + ".decomposed");tools/clang/lib/CodeGen/CGExpr.cpp
130 llvm::BasicBlock *Block = AllocaInsertPt->getParent(); 131 Block->getInstList().insertAfter(AllocaInsertPt->getIterator(), Store);tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
1612 Elem.second.ServiceInsertPt->insertAfter(CGF.AllocaInsertPt); 1705 llvm::BasicBlock *TopBlock = CGF.AllocaInsertPt->getParent(); 3141 assert(Elem.second->getType()->getPointerElementType() == Ty &&tools/polly/lib/Analysis/ScopInfo.cpp
963 OS << "[Fortran array descriptor: " << FAD->getName();
tools/polly/lib/CodeGen/BlockGenerators.cpp 517 Addr->insertBefore(&*EntryBB->getFirstInsertionPt());
unittests/IR/ValueHandleTest.cpp 133 EXPECT_FALSE(AVH->mayWriteToMemory());
unittests/Transforms/Utils/LocalTest.cpp82 P1->addIncoming(B.getInt32(42), Entry); 88 P3->addIncoming(B.getInt32(42), Entry); 89 P3->addIncoming(B.getInt32(23), BB); 95 P1->addIncoming(P3, BB);