/system/core/libunwindstack/tests/ |
D | RegsTest.cpp | 97 EXPECT_EQ(4U, arm64.GetPcAdjustment(0x10, elf_.get())); in TEST_F() 98 EXPECT_EQ(4U, arm64.GetPcAdjustment(0x4, elf_.get())); in TEST_F() 99 EXPECT_EQ(0U, arm64.GetPcAdjustment(0x3, elf_.get())); in TEST_F() 100 EXPECT_EQ(0U, arm64.GetPcAdjustment(0x2, elf_.get())); in TEST_F() 101 EXPECT_EQ(0U, arm64.GetPcAdjustment(0x1, elf_.get())); in TEST_F() 102 EXPECT_EQ(0U, arm64.GetPcAdjustment(0x0, elf_.get())); in TEST_F() 105 EXPECT_EQ(1U, x86.GetPcAdjustment(0x100, elf_.get())); in TEST_F() 106 EXPECT_EQ(1U, x86.GetPcAdjustment(0x2, elf_.get())); in TEST_F() 107 EXPECT_EQ(1U, x86.GetPcAdjustment(0x1, elf_.get())); in TEST_F() 108 EXPECT_EQ(0U, x86.GetPcAdjustment(0x0, elf_.get())); in TEST_F() [all …]
|
D | RegsFake.h | 57 uint64_t GetPcAdjustment(uint64_t, Elf*) override { return 2; } in GetPcAdjustment() function 89 uint64_t GetPcAdjustment(uint64_t, Elf*) override { return 0; } in GetPcAdjustment() function
|
/system/core/libunwindstack/include/unwindstack/ |
D | RegsMips.h | 39 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | RegsArm64.h | 39 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | RegsArm.h | 39 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | RegsMips64.h | 39 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | RegsX86_64.h | 40 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | RegsX86.h | 40 uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) override;
|
D | Regs.h | 67 virtual uint64_t GetPcAdjustment(uint64_t rel_pc, Elf* elf) = 0;
|
/system/core/libunwindstack/ |
D | LocalUnwinder.cpp | 109 pc_adjustment = regs->GetPcAdjustment(rel_pc, elf); in Unwind()
|
D | RegsArm64.cpp | 55 uint64_t RegsArm64::GetPcAdjustment(uint64_t rel_pc, Elf*) { in GetPcAdjustment() function in unwindstack::RegsArm64
|
D | RegsArm.cpp | 54 uint64_t RegsArm::GetPcAdjustment(uint64_t rel_pc, Elf* elf) { in GetPcAdjustment() function in unwindstack::RegsArm
|
D | RegsMips64.cpp | 55 uint64_t RegsMips64::GetPcAdjustment(uint64_t rel_pc, Elf*) { in GetPcAdjustment() function in unwindstack::RegsMips64
|
D | RegsMips.cpp | 55 uint64_t RegsMips::GetPcAdjustment(uint64_t rel_pc, Elf*) { in GetPcAdjustment() function in unwindstack::RegsMips
|
D | RegsX86.cpp | 53 uint64_t RegsX86::GetPcAdjustment(uint64_t rel_pc, Elf*) { in GetPcAdjustment() function in unwindstack::RegsX86
|
D | RegsX86_64.cpp | 54 uint64_t RegsX86_64::GetPcAdjustment(uint64_t rel_pc, Elf*) { in GetPcAdjustment() function in unwindstack::RegsX86_64
|
D | Unwinder.cpp | 182 pc_adjustment = regs_->GetPcAdjustment(rel_pc, elf); in Unwind()
|