reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
681 EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc)); 682 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 683 EXPECT_EQ(-4, regloc.GetOffset()); 685 EXPECT_TRUE(row_sp->GetRegisterInfo(k_ebp, regloc)); 686 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 687 EXPECT_EQ(-8, regloc.GetOffset()); 689 EXPECT_TRUE(row_sp->GetRegisterInfo(k_ebx, regloc)); 690 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 691 EXPECT_EQ(-12, regloc.GetOffset()); 693 EXPECT_TRUE(row_sp->GetRegisterInfo(k_edi, regloc)); 694 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 695 EXPECT_EQ(-16, regloc.GetOffset()); 697 EXPECT_TRUE(row_sp->GetRegisterInfo(k_esi, regloc)); 698 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 699 EXPECT_EQ(-20, regloc.GetOffset()); 739 EXPECT_TRUE(row_sp->GetRegisterInfo(k_eip, regloc)); 740 EXPECT_TRUE(regloc.IsAtCFAPlusOffset()); 741 EXPECT_EQ(-4, regloc.GetOffset()); 743 EXPECT_TRUE(row_sp->GetRegisterInfo(k_esp, regloc)); 744 EXPECT_TRUE(regloc.IsCFAPlusOffset()); 745 EXPECT_EQ(0, regloc.GetOffset()); 749 EXPECT_FALSE(row_sp->GetRegisterInfo(k_eax, regloc)); 750 EXPECT_FALSE(row_sp->GetRegisterInfo(k_ebx, regloc)); 751 EXPECT_FALSE(row_sp->GetRegisterInfo(k_ecx, regloc)); 752 EXPECT_FALSE(row_sp->GetRegisterInfo(k_edx, regloc)); 753 EXPECT_FALSE(row_sp->GetRegisterInfo(k_esi, regloc)); 754 EXPECT_FALSE(row_sp->GetRegisterInfo(k_edi, regloc)); 755 EXPECT_FALSE(row_sp->GetRegisterInfo(k_ebp, regloc));