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

References

lib/Transforms/Utils/LoopRotationUtils.cpp
  333     if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() &&
  333     if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() &&
  334         !Inst->mayWriteToMemory() && !Inst->isTerminator() &&
  334         !Inst->mayWriteToMemory() && !Inst->isTerminator() &&
  335         !isa<DbgInfoIntrinsic>(Inst) && !isa<AllocaInst>(Inst)) {
  335         !isa<DbgInfoIntrinsic>(Inst) && !isa<AllocaInst>(Inst)) {
  336       Inst->moveBefore(LoopEntryBranch);
  341     Instruction *C = Inst->clone();
  361       ValueMap[Inst] = V;
  367       ValueMap[Inst] = C;
  371       C->setName(Inst->getName());
  379       ValueMapMSSA[Inst] = C;