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

Declarations

include/llvm/IR/IntrinsicInst.h
   92     Value *getVariableLocation(bool AllowNullOp = true) const;

References

include/llvm/IR/IntrinsicInst.h
  140     Value *getAddress() const { return getVariableLocation(); }
  156     Value *getAddress() const { return getVariableLocation(); }
  172       return getVariableLocation(/* AllowNullOp = */ false);
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
 1204           UndefValue::get(DDI.getDI()->getVariableLocation()->getType());
 1258   auto Undef = UndefValue::get(DDI.getDI()->getVariableLocation()->getType());
 5814     const Value *Address = DI.getVariableLocation();
lib/Target/AArch64/AArch64StackTagging.cpp
  538                 dyn_cast_or_null<AllocaInst>(DVI->getVariableLocation())) {
lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
 1215                   dyn_cast_or_null<AllocaInst>(DVI->getVariableLocation()))
lib/Transforms/Scalar/ADCE.cpp
  523         if (Value *V = DII->getVariableLocation())
lib/Transforms/Utils/Local.cpp
 1265     if (auto *AI = dyn_cast_or_null<AllocaInst>(DII->getVariableLocation()))
 1458       if (auto *Loc = dyn_cast_or_null<PHINode>(DbgII->getVariableLocation()))
 1785       if (DII->getVariableLocation() == &From) {
lib/Transforms/Utils/LoopRotationUtils.cpp
  313     return {{D->getVariableLocation(), D->getVariable()}, D->getExpression()};
unittests/Transforms/Utils/LocalTest.cpp
  760   EXPECT_EQ(ConstantInt::get(A.getType(), 0), ADbgVal->getVariableLocation());