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

References

unittests/DebugInfo/GSYM/GSYMTest.cpp
  383   Root.Ranges.insert(AddressRange(0x100, 0x200));
  401   Root.Children.push_back(Inline1);
  404   EXPECT_FALSE(Root.getInlineStack(0x50));
  407   EXPECT_FALSE(Root.getInlineStack(Root.Ranges[0].Start - 1));
  407   EXPECT_FALSE(Root.getInlineStack(Root.Ranges[0].Start - 1));
  408   EXPECT_FALSE(Root.getInlineStack(Root.Ranges[0].End));
  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);
  453   TestInlineInfoEncodeDecode(llvm::support::little, Root);
  454   TestInlineInfoEncodeDecode(llvm::support::big, Root);