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

References

tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
  252   EXPECT_EQ(0ull, row_sp->GetOffset());
  253   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_esp);
  254   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  255   EXPECT_EQ(4, row_sp->GetCFAValue().GetOffset());
  257   EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc));
  262   row_sp = unwind_plan.GetRowForFunctionOffset(1);
  263   EXPECT_EQ(1ull, row_sp->GetOffset());
  264   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_esp);
  265   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  266   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
  268   EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc));
  273   row_sp = unwind_plan.GetRowForFunctionOffset(3);
  274   EXPECT_EQ(3ull, row_sp->GetOffset());
  275   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_ebp);
  276   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  277   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
  279   EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc));
  284   row_sp = unwind_plan.GetRowForFunctionOffset(6);
  285   EXPECT_EQ(6ull, row_sp->GetOffset());
  286   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_esp);
  287   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
  288   EXPECT_EQ(4, row_sp->GetCFAValue().GetOffset());
  290   EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc));