reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
94 if (Val) 106 operator Value *() const { return Val; } 107 Value *get() const { return Val; } 120 Value *operator->() { return Val; } 121 const Value *operator->() const { return Val; }include/llvm/IR/Value.h
731 if (Val) removeFromList(); 732 Val = V; 742 set(RHS.Val);lib/IR/Use.cpp
17 if (Val == RHS.Val) 17 if (Val == RHS.Val) 20 if (Val) 23 Value *OldVal = Val; 24 if (RHS.Val) { 26 Val = RHS.Val; 26 Val = RHS.Val; 27 Val->addUse(*this); 29 Val = nullptr; 33 RHS.Val = OldVal; 34 RHS.Val->addUse(RHS); 36 RHS.Val = nullptr;