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

References

tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
  398   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));
  399   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  400   EXPECT_EQ(-8, regloc.GetOffset());
  402   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rbp, regloc));
  403   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  404   EXPECT_EQ(-16, regloc.GetOffset());
  406   EXPECT_TRUE(row_sp->GetRegisterInfo(k_r15, regloc));
  407   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  408   EXPECT_EQ(-24, regloc.GetOffset());
  410   EXPECT_TRUE(row_sp->GetRegisterInfo(k_r14, regloc));
  411   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  412   EXPECT_EQ(-32, regloc.GetOffset());
  414   EXPECT_TRUE(row_sp->GetRegisterInfo(k_r13, regloc));
  415   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  416   EXPECT_EQ(-40, regloc.GetOffset());
  418   EXPECT_TRUE(row_sp->GetRegisterInfo(k_r12, regloc));
  419   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  420   EXPECT_EQ(-48, regloc.GetOffset());
  422   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rbx, regloc));
  423   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  424   EXPECT_EQ(-56, regloc.GetOffset());
  436   EXPECT_TRUE(row_sp->GetRegisterInfo(k_rip, regloc));
  437   EXPECT_TRUE(regloc.IsAtCFAPlusOffset());
  438   EXPECT_EQ(-8, regloc.GetOffset());
  444   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rax, regloc));
  445   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rbx, regloc));
  446   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rcx, regloc));
  447   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rdx, regloc));
  448   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rbp, regloc));
  449   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rsi, regloc));
  450   EXPECT_FALSE(row_sp->GetRegisterInfo(k_rdi, regloc));
  451   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r8, regloc));
  452   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r9, regloc));
  453   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r10, regloc));
  454   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r11, regloc));
  455   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r12, regloc));
  456   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r13, regloc));
  457   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r14, regloc));
  458   EXPECT_FALSE(row_sp->GetRegisterInfo(k_r15, regloc));