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

Declarations

include/llvm/DebugInfo/GSYM/InlineInfo.h
   88   llvm::Optional<InlineArray> getInlineStack(uint64_t Addr) const;

References

unittests/DebugInfo/GSYM/GSYMTest.cpp
  404   EXPECT_FALSE(Root.getInlineStack(0x50));
  407   EXPECT_FALSE(Root.getInlineStack(Root.Ranges[0].Start - 1));
  408   EXPECT_FALSE(Root.getInlineStack(Root.Ranges[0].End));
  412   EXPECT_FALSE(Root.getInlineStack(Inline1.Ranges[0].Start - 1));
  413   EXPECT_FALSE(Root.getInlineStack(Inline1.Ranges[0].End));
  417   auto InlineInfos = Root.getInlineStack(Inline1.Ranges[0].Start);
  421   InlineInfos = Root.getInlineStack(Inline1.Ranges[0].End - 1);
  428   InlineInfos = Root.getInlineStack(Inline1Sub1.Ranges[0].Start);
  433   InlineInfos = Root.getInlineStack(Inline1Sub1.Ranges[0].End - 1);
  441   InlineInfos = Root.getInlineStack(Inline1Sub2.Ranges[0].Start);
  446   InlineInfos = Root.getInlineStack(Inline1Sub2.Ranges[0].End - 1);