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

References

include/llvm/CodeGen/MachineMemOperand.h
   70     if (V) {
   71       if (const auto *ValPtr = V.dyn_cast<const Value*>())
   74         AddrSpace = V.get<const PseudoSourceValue*>()->getAddressSpace();
   79     if (V.isNull())
   81     if (V.is<const Value*>())
   82       return MachinePointerInfo(V.get<const Value*>(), Offset+O, StackID);
   83     return MachinePointerInfo(V.get<const PseudoSourceValue*>(), Offset+O,
  200   const Value *getValue() const { return PtrInfo.V.dyn_cast<const Value*>(); }
  203     return PtrInfo.V.dyn_cast<const PseudoSourceValue*>();
  206   const void *getOpaqueValue() const { return PtrInfo.V.getOpaqueValue(); }
  286   void setValue(const Value *NewSV) { PtrInfo.V = NewSV; }
  287   void setValue(const PseudoSourceValue *NewSV) { PtrInfo.V = NewSV; }
lib/CodeGen/MachineFunction.cpp
  417   unsigned Align = PtrInfo.V.isNull()
lib/CodeGen/MachineOperand.cpp
  974   if (!V.is<const Value *>())
  977   const Value *BasePtr = V.get<const Value *>();
 1024   assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue *>() ||
 1024   assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue *>() ||
 1025           isa<PointerType>(PtrInfo.V.get<const Value *>()->getType())) &&
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 6709   if (PtrInfo.V.isNull())
 6830   if (PtrInfo.V.isNull())
 6882   if (PtrInfo.V.isNull())
lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
 1455   auto PSV = PtrInfo.V.dyn_cast<const PseudoSourceValue *>();
lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
 1996   auto PSV = PtrInfo.V.dyn_cast<const PseudoSourceValue *>();