diff options
author | Andreas Gampe <agampe@google.com> | 2015-05-21 14:44:21 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-05-26 10:00:03 -0700 |
commit | 9ca5e01fc1959a334ed2f5b89309df1364043517 (patch) | |
tree | 7ee29347c1bc83641e114fef7b39c84b1992b119 /scripts | |
parent | c75eb5eeeda32c08f15b36e24a7f12813def38b7 (diff) | |
download | android_development-9ca5e01fc1959a334ed2f5b89309df1364043517.tar.gz android_development-9ca5e01fc1959a334ed2f5b89309df1364043517.tar.bz2 android_development-9ca5e01fc1959a334ed2f5b89309df1364043517.zip |
Add mips64 to stack tool
Add register definitions to stack_core.
(cherry picked from commit 5521841a426e70f78cc901c470aadc0ff649882d)
Change-Id: I2d9d2ae075efe8d8c92fac387d2ae30f9cbb999c
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/stack_core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/stack_core.py b/scripts/stack_core.py index 9b7ff2300..5a6fd48da 100755 --- a/scripts/stack_core.py +++ b/scripts/stack_core.py @@ -53,6 +53,7 @@ class TraceConverter: "arm": "r0|r1|r2|r3|r4|r5|r6|r7|r8|r9|sl|fp|ip|sp|lr|pc|cpsr", "arm64": "x0|x1|x2|x3|x4|x5|x6|x7|x8|x9|x10|x11|x12|x13|x14|x15|x16|x17|x18|x19|x20|x21|x22|x23|x24|x25|x26|x27|x28|x29|x30|sp|pc|pstate", "mips": "zr|at|v0|v1|a0|a1|a2|a3|t0|t1|t2|t3|t4|t5|t6|t7|s0|s1|s2|s3|s4|s5|s6|s7|t8|t9|k0|k1|gp|sp|s8|ra|hi|lo|bva|epc", + "mips64": "zr|at|v0|v1|a0|a1|a2|a3|a4|a5|a6|a7|t0|t1|t2|t3|s0|s1|s2|s3|s4|s5|s6|s7|t8|t9|k0|k1|gp|sp|s8|ra|hi|lo|bva|epc", "x86": "eax|ebx|ecx|edx|esi|edi|x?cs|x?ds|x?es|x?fs|x?ss|eip|ebp|esp|flags", "x86_64": "rax|rbx|rcx|rdx|rsi|rdi|r8|r9|r10|r11|r12|r13|r14|r15|cs|ss|rip|rbp|rsp|eflags", } |