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

References

tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
  176   EXPECT_EQ(0ull, row_sp->GetOffset());
  177   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_rsp);
  178   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  179   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
  181   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));
  186   row_sp = unwind_plan.GetRowForFunctionOffset(1);
  187   EXPECT_EQ(1ull, row_sp->GetOffset());
  188   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_rsp);
  189   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  190   EXPECT_EQ(16, row_sp->GetCFAValue().GetOffset());
  192   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));
  197   row_sp = unwind_plan.GetRowForFunctionOffset(4);
  198   EXPECT_EQ(4ull, row_sp->GetOffset());
  199   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_rbp);
  200   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  201   EXPECT_EQ(16, row_sp->GetCFAValue().GetOffset());
  203   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));
  208   row_sp = unwind_plan.GetRowForFunctionOffset(7);
  209   EXPECT_EQ(7ull, row_sp->GetOffset());
  210   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_rsp);
  211   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  212   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
  214   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));