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

References

include/llvm/Transforms/Scalar/GVN.h
  205     if (!Curr.Val) {
  206       Curr.Val = V;
  212     Node->Val = V;
  224     while (Curr && (Curr->Val != I || Curr->BB != BB)) {
  236         Curr->Val = nullptr;
  240         Curr->Val = Next->Val;
  240         Curr->Val = Next->Val;
lib/Transforms/Scalar/GVN.cpp
 1611     Call = dyn_cast<CallInst>(Vals->Val);
 1710   if (!Vals.Val) return nullptr;
 1714     Val = Vals.Val;
 1721       if (isa<Constant>(Next->Val)) return Next->Val;
 1721       if (isa<Constant>(Next->Val)) return Next->Val;
 1722       if (!Val) Val = Next->Val;
 2509     assert(Node->Val != Inst && "Inst still in value numbering scope!");
 2513       assert(Node->Val != Inst && "Inst still in value numbering scope!");