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

References

tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
 2472   row_sp = unwind_plan.GetRowForFunctionOffset(2);
 2473   EXPECT_EQ(2ull, row_sp->GetOffset());
 2474   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_esp);
 2475   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
 2476   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
 2478   EXPECT_TRUE(row_sp->GetRegisterInfo(k_ebp, regloc));
 2487   row_sp = unwind_plan.GetRowForFunctionOffset(2);
 2488   EXPECT_EQ(0ull, row_sp->GetOffset());
 2489   EXPECT_TRUE(row_sp->GetCFAValue().GetRegisterNumber() == k_rsp);
 2490   EXPECT_TRUE(row_sp->GetCFAValue().IsRegisterPlusOffset() == true);
 2491   EXPECT_EQ(8, row_sp->GetCFAValue().GetOffset());
 2493   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rbp, regloc));