blob: a8bb4aaf4823f9b529ba8f5b0c0ae12c0833b0ca [file] [log] [blame]
Christopher Ferris3958f802017-02-01 15:44:40 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <elf.h>
18
19#include <gtest/gtest.h>
20
21#include <vector>
22
Christopher Ferris53914162018-02-08 19:27:47 -080023#include <unwindstack/MachineArm.h>
Christopher Ferrisd06001d2017-11-30 18:56:01 -080024#include <unwindstack/RegsArm.h>
Christopher Ferrisd226a512017-07-14 10:37:19 -070025
Christopher Ferris3958f802017-02-01 15:44:40 -080026#include "ElfInterfaceArm.h"
Christopher Ferris3958f802017-02-01 15:44:40 -080027
Christopher Ferrise69f4702017-10-19 16:08:58 -070028#include "ElfFake.h"
Christopher Ferris3958f802017-02-01 15:44:40 -080029#include "MemoryFake.h"
30
Christopher Ferrisd226a512017-07-14 10:37:19 -070031namespace unwindstack {
32
Christopher Ferris3958f802017-02-01 15:44:40 -080033class ElfInterfaceArmTest : public ::testing::Test {
34 protected:
35 void SetUp() override {
36 memory_.Clear();
37 process_memory_.Clear();
38 }
39
40 MemoryFake memory_;
41 MemoryFake process_memory_;
42};
43
44TEST_F(ElfInterfaceArmTest, GetPrel32Addr) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070045 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -080046 memory_.SetData32(0x1000, 0x230000);
47
48 uint32_t value;
49 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
50 ASSERT_EQ(0x231000U, value);
51
52 memory_.SetData32(0x1000, 0x80001000);
53 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
54 ASSERT_EQ(0x2000U, value);
55
56 memory_.SetData32(0x1000, 0x70001000);
57 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
58 ASSERT_EQ(0xf0002000U, value);
59}
60
61TEST_F(ElfInterfaceArmTest, FindEntry_start_zero) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070062 ElfInterfaceArmFake interface(&memory_);
63 interface.FakeSetStartOffset(0);
64 interface.FakeSetTotalEntries(10);
Christopher Ferris3958f802017-02-01 15:44:40 -080065
66 uint64_t entry_offset;
67 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
68}
69
70TEST_F(ElfInterfaceArmTest, FindEntry_no_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070071 ElfInterfaceArmFake interface(&memory_);
72 interface.FakeSetStartOffset(0x100);
73 interface.FakeSetTotalEntries(0);
Christopher Ferris3958f802017-02-01 15:44:40 -080074
75 uint64_t entry_offset;
76 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
77}
78
79TEST_F(ElfInterfaceArmTest, FindEntry_no_valid_memory) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070080 ElfInterfaceArmFake interface(&memory_);
81 interface.FakeSetStartOffset(0x100);
82 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -080083
84 uint64_t entry_offset;
85 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
86}
87
88TEST_F(ElfInterfaceArmTest, FindEntry_ip_before_first) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070089 ElfInterfaceArmFake interface(&memory_);
90 interface.FakeSetStartOffset(0x1000);
91 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -080092 memory_.SetData32(0x1000, 0x6000);
93
94 uint64_t entry_offset;
95 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
96}
97
98TEST_F(ElfInterfaceArmTest, FindEntry_single_entry_negative_value) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070099 ElfInterfaceArmFake interface(&memory_);
100 interface.FakeSetStartOffset(0x8000);
101 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -0800102 memory_.SetData32(0x8000, 0x7fffff00);
103
104 uint64_t entry_offset;
105 ASSERT_TRUE(interface.FindEntry(0x7ff0, &entry_offset));
106 ASSERT_EQ(0x8000U, entry_offset);
107}
108
109TEST_F(ElfInterfaceArmTest, FindEntry_two_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700110 ElfInterfaceArmFake interface(&memory_);
111 interface.FakeSetStartOffset(0x1000);
112 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800113 memory_.SetData32(0x1000, 0x6000);
114 memory_.SetData32(0x1008, 0x7000);
115
116 uint64_t entry_offset;
117 ASSERT_TRUE(interface.FindEntry(0x7000, &entry_offset));
118 ASSERT_EQ(0x1000U, entry_offset);
119}
120
Christopher Ferris3958f802017-02-01 15:44:40 -0800121TEST_F(ElfInterfaceArmTest, FindEntry_last_check_single_entry) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700122 ElfInterfaceArmFake interface(&memory_);
123 interface.FakeSetStartOffset(0x1000);
124 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -0800125 memory_.SetData32(0x1000, 0x6000);
126
127 uint64_t entry_offset;
128 ASSERT_TRUE(interface.FindEntry(0x7000, &entry_offset));
129 ASSERT_EQ(0x1000U, entry_offset);
130
131 // To guarantee that we are using the cache on the second run,
132 // set the memory to a different value.
133 memory_.SetData32(0x1000, 0x8000);
134 ASSERT_TRUE(interface.FindEntry(0x7004, &entry_offset));
135 ASSERT_EQ(0x1000U, entry_offset);
136}
137
138TEST_F(ElfInterfaceArmTest, FindEntry_last_check_multiple_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700139 ElfInterfaceArmFake interface(&memory_);
140 interface.FakeSetStartOffset(0x1000);
141 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800142 memory_.SetData32(0x1000, 0x6000);
143 memory_.SetData32(0x1008, 0x8000);
144
145 uint64_t entry_offset;
146 ASSERT_TRUE(interface.FindEntry(0x9008, &entry_offset));
147 ASSERT_EQ(0x1008U, entry_offset);
148
149 // To guarantee that we are using the cache on the second run,
150 // set the memory to a different value.
151 memory_.SetData32(0x1000, 0x16000);
152 memory_.SetData32(0x1008, 0x18000);
153 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
154 ASSERT_EQ(0x1008U, entry_offset);
155}
156
157TEST_F(ElfInterfaceArmTest, FindEntry_multiple_entries_even) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700158 ElfInterfaceArmFake interface(&memory_);
159 interface.FakeSetStartOffset(0x1000);
160 interface.FakeSetTotalEntries(4);
Christopher Ferris3958f802017-02-01 15:44:40 -0800161 memory_.SetData32(0x1000, 0x6000);
162 memory_.SetData32(0x1008, 0x7000);
163 memory_.SetData32(0x1010, 0x8000);
164 memory_.SetData32(0x1018, 0x9000);
165
166 uint64_t entry_offset;
167 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
168 ASSERT_EQ(0x1010U, entry_offset);
169
170 // To guarantee that we are using the cache on the second run,
171 // set the memory to a different value.
172 memory_.SetData32(0x1000, 0x16000);
173 memory_.SetData32(0x1008, 0x17000);
174 memory_.SetData32(0x1010, 0x18000);
175 memory_.SetData32(0x1018, 0x19000);
176 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
177 ASSERT_EQ(0x1010U, entry_offset);
178}
179
180TEST_F(ElfInterfaceArmTest, FindEntry_multiple_entries_odd) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700181 ElfInterfaceArmFake interface(&memory_);
182 interface.FakeSetStartOffset(0x1000);
183 interface.FakeSetTotalEntries(5);
Christopher Ferris3958f802017-02-01 15:44:40 -0800184 memory_.SetData32(0x1000, 0x5000);
185 memory_.SetData32(0x1008, 0x6000);
186 memory_.SetData32(0x1010, 0x7000);
187 memory_.SetData32(0x1018, 0x8000);
188 memory_.SetData32(0x1020, 0x9000);
189
190 uint64_t entry_offset;
191 ASSERT_TRUE(interface.FindEntry(0x8100, &entry_offset));
192 ASSERT_EQ(0x1010U, entry_offset);
193
194 // To guarantee that we are using the cache on the second run,
195 // set the memory to a different value.
196 memory_.SetData32(0x1000, 0x15000);
197 memory_.SetData32(0x1008, 0x16000);
198 memory_.SetData32(0x1010, 0x17000);
199 memory_.SetData32(0x1018, 0x18000);
200 memory_.SetData32(0x1020, 0x19000);
201 ASSERT_TRUE(interface.FindEntry(0x8100, &entry_offset));
202 ASSERT_EQ(0x1010U, entry_offset);
203}
204
205TEST_F(ElfInterfaceArmTest, iterate) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700206 ElfInterfaceArmFake interface(&memory_);
207 interface.FakeSetStartOffset(0x1000);
208 interface.FakeSetTotalEntries(5);
Christopher Ferris3958f802017-02-01 15:44:40 -0800209 memory_.SetData32(0x1000, 0x5000);
210 memory_.SetData32(0x1008, 0x6000);
211 memory_.SetData32(0x1010, 0x7000);
212 memory_.SetData32(0x1018, 0x8000);
213 memory_.SetData32(0x1020, 0x9000);
214
215 std::vector<uint32_t> entries;
216 for (auto addr : interface) {
217 entries.push_back(addr);
218 }
219 ASSERT_EQ(5U, entries.size());
220 ASSERT_EQ(0x6000U, entries[0]);
221 ASSERT_EQ(0x7008U, entries[1]);
222 ASSERT_EQ(0x8010U, entries[2]);
223 ASSERT_EQ(0x9018U, entries[3]);
224 ASSERT_EQ(0xa020U, entries[4]);
225
226 // Make sure the iterate cached the entries.
227 memory_.SetData32(0x1000, 0x11000);
228 memory_.SetData32(0x1008, 0x12000);
229 memory_.SetData32(0x1010, 0x13000);
230 memory_.SetData32(0x1018, 0x14000);
231 memory_.SetData32(0x1020, 0x15000);
232
233 entries.clear();
234 for (auto addr : interface) {
235 entries.push_back(addr);
236 }
237 ASSERT_EQ(5U, entries.size());
238 ASSERT_EQ(0x6000U, entries[0]);
239 ASSERT_EQ(0x7008U, entries[1]);
240 ASSERT_EQ(0x8010U, entries[2]);
241 ASSERT_EQ(0x9018U, entries[3]);
242 ASSERT_EQ(0xa020U, entries[4]);
243}
244
Christopher Ferris3958f802017-02-01 15:44:40 -0800245TEST_F(ElfInterfaceArmTest, HandleType_not_arm_exidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700246 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800247
Christopher Ferrisf882a382018-06-22 16:48:02 -0700248 ASSERT_FALSE(interface.HandleType(0x1000, PT_NULL));
249 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOAD));
250 ASSERT_FALSE(interface.HandleType(0x1000, PT_DYNAMIC));
251 ASSERT_FALSE(interface.HandleType(0x1000, PT_INTERP));
252 ASSERT_FALSE(interface.HandleType(0x1000, PT_NOTE));
253 ASSERT_FALSE(interface.HandleType(0x1000, PT_SHLIB));
254 ASSERT_FALSE(interface.HandleType(0x1000, PT_PHDR));
255 ASSERT_FALSE(interface.HandleType(0x1000, PT_TLS));
256 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOOS));
257 ASSERT_FALSE(interface.HandleType(0x1000, PT_HIOS));
258 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOPROC));
259 ASSERT_FALSE(interface.HandleType(0x1000, PT_HIPROC));
260 ASSERT_FALSE(interface.HandleType(0x1000, PT_GNU_EH_FRAME));
261 ASSERT_FALSE(interface.HandleType(0x1000, PT_GNU_STACK));
Christopher Ferris3958f802017-02-01 15:44:40 -0800262}
263
264TEST_F(ElfInterfaceArmTest, HandleType_arm_exidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700265 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800266
Christopher Ferrisf882a382018-06-22 16:48:02 -0700267 Elf32_Phdr phdr = {};
Christopher Ferrise69f4702017-10-19 16:08:58 -0700268 interface.FakeSetStartOffset(0x1000);
269 interface.FakeSetTotalEntries(100);
Christopher Ferrisf882a382018-06-22 16:48:02 -0700270 phdr.p_offset = 0x2000;
271 phdr.p_filesz = 0xa00;
Christopher Ferris3958f802017-02-01 15:44:40 -0800272
273 // Verify that if reads fail, we don't set the values but still get true.
Christopher Ferrisf882a382018-06-22 16:48:02 -0700274 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001));
Christopher Ferris3958f802017-02-01 15:44:40 -0800275 ASSERT_EQ(0x1000U, interface.start_offset());
276 ASSERT_EQ(100U, interface.total_entries());
277
278 // Everything is correct and present.
Christopher Ferrisf882a382018-06-22 16:48:02 -0700279 memory_.SetMemory(0x1000, &phdr, sizeof(phdr));
280 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001));
Christopher Ferris3958f802017-02-01 15:44:40 -0800281 ASSERT_EQ(0x2000U, interface.start_offset());
282 ASSERT_EQ(320U, interface.total_entries());
Christopher Ferris3958f802017-02-01 15:44:40 -0800283}
284
285TEST_F(ElfInterfaceArmTest, StepExidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700286 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800287
288 // FindEntry fails.
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700289 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700290 ASSERT_FALSE(interface.StepExidx(0x7000, nullptr, nullptr, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800291 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800292
293 // ExtractEntry should fail.
Christopher Ferrise69f4702017-10-19 16:08:58 -0700294 interface.FakeSetStartOffset(0x1000);
295 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800296 memory_.SetData32(0x1000, 0x6000);
297 memory_.SetData32(0x1008, 0x8000);
298
299 RegsArm regs;
300 regs[ARM_REG_SP] = 0x1000;
301 regs[ARM_REG_LR] = 0x20000;
302 regs.set_sp(regs[ARM_REG_SP]);
303 regs.set_pc(0x1234);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700304 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800305 EXPECT_EQ(ERROR_MEMORY_INVALID, interface.LastErrorCode());
306 EXPECT_EQ(0x1004U, interface.LastErrorAddress());
Christopher Ferris3958f802017-02-01 15:44:40 -0800307
308 // Eval should fail.
309 memory_.SetData32(0x1004, 0x81000000);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700310 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800311 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800312
313 // Everything should pass.
314 memory_.SetData32(0x1004, 0x80b0b0b0);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700315 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800316 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700317 ASSERT_FALSE(finished);
Christopher Ferris3958f802017-02-01 15:44:40 -0800318 ASSERT_EQ(0x1000U, regs.sp());
319 ASSERT_EQ(0x1000U, regs[ARM_REG_SP]);
320 ASSERT_EQ(0x20000U, regs.pc());
321 ASSERT_EQ(0x20000U, regs[ARM_REG_PC]);
Christopher Ferrise7b66242017-12-15 11:17:45 -0800322
323 // Load bias is non-zero.
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700324 interface.set_load_bias(0x1000);
325 ASSERT_TRUE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800326 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferrise7b66242017-12-15 11:17:45 -0800327
328 // Pc too small.
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700329 interface.set_load_bias(0x9000);
330 ASSERT_FALSE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800331 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800332}
333
334TEST_F(ElfInterfaceArmTest, StepExidx_pc_set) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700335 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800336
Christopher Ferrise69f4702017-10-19 16:08:58 -0700337 interface.FakeSetStartOffset(0x1000);
338 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800339 memory_.SetData32(0x1000, 0x6000);
340 memory_.SetData32(0x1004, 0x808800b0);
341 memory_.SetData32(0x1008, 0x8000);
342 process_memory_.SetData32(0x10000, 0x10);
343
344 RegsArm regs;
345 regs[ARM_REG_SP] = 0x10000;
346 regs[ARM_REG_LR] = 0x20000;
347 regs.set_sp(regs[ARM_REG_SP]);
348 regs.set_pc(0x1234);
349
350 // Everything should pass.
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700351 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700352 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800353 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700354 ASSERT_FALSE(finished);
Christopher Ferris3958f802017-02-01 15:44:40 -0800355 ASSERT_EQ(0x10004U, regs.sp());
356 ASSERT_EQ(0x10004U, regs[ARM_REG_SP]);
357 ASSERT_EQ(0x10U, regs.pc());
358 ASSERT_EQ(0x10U, regs[ARM_REG_PC]);
359}
Christopher Ferrisd226a512017-07-14 10:37:19 -0700360
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700361TEST_F(ElfInterfaceArmTest, StepExidx_cant_unwind) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700362 ElfInterfaceArmFake interface(&memory_);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700363
Christopher Ferrise69f4702017-10-19 16:08:58 -0700364 interface.FakeSetStartOffset(0x1000);
365 interface.FakeSetTotalEntries(1);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700366 memory_.SetData32(0x1000, 0x6000);
367 memory_.SetData32(0x1004, 1);
368
369 RegsArm regs;
370 regs[ARM_REG_SP] = 0x10000;
371 regs[ARM_REG_LR] = 0x20000;
372 regs.set_sp(regs[ARM_REG_SP]);
373 regs.set_pc(0x1234);
374
375 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700376 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800377 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700378 ASSERT_TRUE(finished);
379 ASSERT_EQ(0x10000U, regs.sp());
380 ASSERT_EQ(0x10000U, regs[ARM_REG_SP]);
381 ASSERT_EQ(0x1234U, regs.pc());
382}
383
384TEST_F(ElfInterfaceArmTest, StepExidx_refuse_unwind) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700385 ElfInterfaceArmFake interface(&memory_);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700386
Christopher Ferrise69f4702017-10-19 16:08:58 -0700387 interface.FakeSetStartOffset(0x1000);
388 interface.FakeSetTotalEntries(1);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700389 memory_.SetData32(0x1000, 0x6000);
390 memory_.SetData32(0x1004, 0x808000b0);
391
392 RegsArm regs;
393 regs[ARM_REG_SP] = 0x10000;
394 regs[ARM_REG_LR] = 0x20000;
395 regs.set_sp(regs[ARM_REG_SP]);
396 regs.set_pc(0x1234);
397
398 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700399 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800400 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700401 ASSERT_TRUE(finished);
402 ASSERT_EQ(0x10000U, regs.sp());
403 ASSERT_EQ(0x10000U, regs[ARM_REG_SP]);
404 ASSERT_EQ(0x1234U, regs.pc());
405}
406
Christopher Ferris2502a602017-10-23 13:51:54 -0700407TEST_F(ElfInterfaceArmTest, StepExidx_pc_zero) {
408 ElfInterfaceArmFake interface(&memory_);
409
410 interface.FakeSetStartOffset(0x1000);
411 interface.FakeSetTotalEntries(1);
412 memory_.SetData32(0x1000, 0x6000);
413 // Set the pc using a pop r15 command.
414 memory_.SetData32(0x1004, 0x808800b0);
415
416 // pc value of zero.
417 process_memory_.SetData32(0x10000, 0);
418
419 RegsArm regs;
420 regs[ARM_REG_SP] = 0x10000;
421 regs[ARM_REG_LR] = 0x20000;
422 regs.set_sp(regs[ARM_REG_SP]);
423 regs.set_pc(0x1234);
424
425 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700426 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800427 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferris2502a602017-10-23 13:51:54 -0700428 ASSERT_TRUE(finished);
429 ASSERT_EQ(0U, regs.pc());
430
431 // Now set the pc from the lr register (pop r14).
432 memory_.SetData32(0x1004, 0x808400b0);
433
434 regs[ARM_REG_SP] = 0x10000;
435 regs[ARM_REG_LR] = 0x20000;
436 regs.set_sp(regs[ARM_REG_SP]);
437 regs.set_pc(0x1234);
438
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700439 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800440 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferris2502a602017-10-23 13:51:54 -0700441 ASSERT_TRUE(finished);
442 ASSERT_EQ(0U, regs.pc());
443}
444
Christopher Ferrisd226a512017-07-14 10:37:19 -0700445} // namespace unwindstack