blob: b7d69970ab0a85e58b85b6ee4c7141523c7f3cdd [file] [log] [blame]
Christopher Ferris20303f82014-01-10 16:33:16 -08001/*
2 *
3 * Copyright 2006, The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Bruce Beare84924902010-10-13 14:21:30 -070017
Elliott Hughes9e7d2182013-11-26 18:01:29 -080018#include <errno.h>
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070019#include <stdint.h>
Jeff Brown053b8652012-06-06 16:25:03 -070020#include <string.h>
Bruce Beare84924902010-10-13 14:21:30 -070021#include <sys/ptrace.h>
Bruce Beare84924902010-10-13 14:21:30 -070022
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070023#include <backtrace/Backtrace.h>
Bruce Beare84924902010-10-13 14:21:30 -070024
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070025#include "machine.h"
26#include "utility.h"
27
28void dump_memory_and_code(log_t* log, Backtrace* backtrace) {
Elliott Hughese7f18e12014-07-09 12:11:42 -070029 pt_regs regs;
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070030 if (ptrace(PTRACE_GETREGS, backtrace->Tid(), 0, &regs)) {
31 _LOG(log, logtype::ERROR, "cannot get registers: %s\n", strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -080032 return;
33 }
34
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070035 static const char reg_names[] = "r0r1r2r3r4r5r6r7r8r9slfpipsp";
Christopher Ferris20303f82014-01-10 16:33:16 -080036
Brigid Smith62ba4892014-06-10 11:53:08 -070037 for (int reg = 0; reg < 14; reg++) {
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070038 dump_memory(log, backtrace, regs.uregs[reg], "memory near %.2s:", &reg_names[reg * 2]);
Christopher Ferris20303f82014-01-10 16:33:16 -080039 }
Andy McFadden136dcc52011-09-22 16:37:06 -070040
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070041 dump_memory(log, backtrace, static_cast<uintptr_t>(regs.ARM_pc), "code around pc:");
Andy McFadden136dcc52011-09-22 16:37:06 -070042
Christopher Ferris20303f82014-01-10 16:33:16 -080043 if (regs.ARM_pc != regs.ARM_lr) {
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070044 dump_memory(log, backtrace, static_cast<uintptr_t>(regs.ARM_lr), "code around lr:");
Christopher Ferris20303f82014-01-10 16:33:16 -080045 }
Bruce Beare84924902010-10-13 14:21:30 -070046}
47
Brigid Smith62ba4892014-06-10 11:53:08 -070048void dump_registers(log_t* log, pid_t tid) {
Elliott Hughese7f18e12014-07-09 12:11:42 -070049 pt_regs r;
Christopher Ferris20303f82014-01-10 16:33:16 -080050 if (ptrace(PTRACE_GETREGS, tid, 0, &r)) {
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070051 _LOG(log, logtype::ERROR, "cannot get registers: %s\n", strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -080052 return;
53 }
Bruce Beare84924902010-10-13 14:21:30 -070054
Brigid Smith62ba4892014-06-10 11:53:08 -070055 _LOG(log, logtype::REGISTERS, " r0 %08x r1 %08x r2 %08x r3 %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080056 static_cast<uint32_t>(r.ARM_r0), static_cast<uint32_t>(r.ARM_r1),
57 static_cast<uint32_t>(r.ARM_r2), static_cast<uint32_t>(r.ARM_r3));
Brigid Smith62ba4892014-06-10 11:53:08 -070058 _LOG(log, logtype::REGISTERS, " r4 %08x r5 %08x r6 %08x r7 %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080059 static_cast<uint32_t>(r.ARM_r4), static_cast<uint32_t>(r.ARM_r5),
60 static_cast<uint32_t>(r.ARM_r6), static_cast<uint32_t>(r.ARM_r7));
Brigid Smith62ba4892014-06-10 11:53:08 -070061 _LOG(log, logtype::REGISTERS, " r8 %08x r9 %08x sl %08x fp %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080062 static_cast<uint32_t>(r.ARM_r8), static_cast<uint32_t>(r.ARM_r9),
63 static_cast<uint32_t>(r.ARM_r10), static_cast<uint32_t>(r.ARM_fp));
Brigid Smith62ba4892014-06-10 11:53:08 -070064 _LOG(log, logtype::REGISTERS, " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080065 static_cast<uint32_t>(r.ARM_ip), static_cast<uint32_t>(r.ARM_sp),
66 static_cast<uint32_t>(r.ARM_lr), static_cast<uint32_t>(r.ARM_pc),
67 static_cast<uint32_t>(r.ARM_cpsr));
Bruce Beare84924902010-10-13 14:21:30 -070068
Elliott Hughese7f18e12014-07-09 12:11:42 -070069 user_vfp vfp_regs;
Christopher Ferris20303f82014-01-10 16:33:16 -080070 if (ptrace(PTRACE_GETVFPREGS, tid, 0, &vfp_regs)) {
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070071 _LOG(log, logtype::ERROR, "cannot get FP registers: %s\n", strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -080072 return;
73 }
Bruce Beare84924902010-10-13 14:21:30 -070074
Elliott Hughese7f18e12014-07-09 12:11:42 -070075 for (size_t i = 0; i < 32; i += 2) {
Elliott Hughesb40c5032014-07-14 16:10:15 -070076 _LOG(log, logtype::FP_REGISTERS, " d%-2d %016llx d%-2d %016llx\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080077 i, vfp_regs.fpregs[i], i+1, vfp_regs.fpregs[i+1]);
78 }
Elliott Hughesb40c5032014-07-14 16:10:15 -070079 _LOG(log, logtype::FP_REGISTERS, " scr %08lx\n", vfp_regs.fpscr);
Bruce Beare84924902010-10-13 14:21:30 -070080}