2010-09-18 18:02:38 +02:00
|
|
|
/*
|
|
|
|
* Debugger ARM specific functions
|
|
|
|
*
|
|
|
|
* Copyright 2000-2003 Marcus Meissner
|
|
|
|
* 2004 Eric Pouech
|
2012-04-15 13:10:26 +02:00
|
|
|
* 2010-2012 André Hentschel
|
2010-09-18 18:02:38 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "debugger.h"
|
|
|
|
|
2012-04-06 18:22:19 +02:00
|
|
|
#if defined(__arm__) && !defined(__ARMEB__)
|
2010-09-18 18:02:38 +02:00
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
/*
|
|
|
|
* Switch to disassemble Thumb code.
|
|
|
|
*/
|
|
|
|
static BOOL db_disasm_thumb = FALSE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flag to indicate whether we need to display instruction,
|
|
|
|
* or whether we just need to know the address of the next
|
|
|
|
* instruction.
|
|
|
|
*/
|
|
|
|
static BOOL db_display = FALSE;
|
|
|
|
|
|
|
|
#define ARM_INSN_SIZE 4
|
|
|
|
#define THUMB_INSN_SIZE 2
|
|
|
|
|
|
|
|
#define ROR32(n, r) (((n) >> (r)) | ((n) << (32 - (r))))
|
|
|
|
|
|
|
|
#define get_cond(ins) tbl_cond[(ins >> 28) & 0x0f]
|
|
|
|
#define get_nibble(ins, num) ((ins >> (num * 4)) & 0x0f)
|
|
|
|
|
2012-04-15 13:14:47 +02:00
|
|
|
static char const tbl_regs[][4] = {
|
|
|
|
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
|
|
|
|
"fp", "ip", "sp", "lr", "pc", "cpsr"
|
|
|
|
};
|
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
static char const tbl_addrmode[][3] = {
|
|
|
|
"da", "ia", "db", "ib"
|
|
|
|
};
|
|
|
|
|
|
|
|
static char const tbl_cond[][3] = {
|
|
|
|
"eq", "ne", "cs", "cc", "mi", "pl", "vs", "vc", "hi", "ls", "ge", "lt", "gt", "le", "", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
static char const tbl_dataops[][4] = {
|
|
|
|
"and", "eor", "sub", "rsb", "add", "adc", "sbc", "rsc", "tst", "teq", "cmp", "cmn", "orr",
|
|
|
|
"mov", "bic", "mvn"
|
|
|
|
};
|
|
|
|
|
2012-04-18 00:01:57 +02:00
|
|
|
static char const tbl_shifts[][4] = {
|
|
|
|
"lsl", "lsr", "asr", "ror"
|
|
|
|
};
|
|
|
|
|
2012-04-12 23:36:56 +02:00
|
|
|
static char const tbl_hiops_t[][4] = {
|
2012-05-01 19:45:45 +02:00
|
|
|
"add", "cmp", "mov", "bx"
|
2012-04-12 23:36:56 +02:00
|
|
|
};
|
|
|
|
|
2012-04-18 23:05:27 +02:00
|
|
|
static char const tbl_aluops_t[][4] = {
|
|
|
|
"and", "eor", "lsl", "lsr", "asr", "adc", "sbc", "ror", "tst", "neg", "cmp", "cmn", "orr",
|
|
|
|
"mul", "bic", "mvn"
|
|
|
|
};
|
|
|
|
|
2012-04-12 23:36:56 +02:00
|
|
|
static char const tbl_immops_t[][4] = {
|
2012-05-01 19:45:45 +02:00
|
|
|
"mov", "cmp", "add", "sub"
|
|
|
|
};
|
|
|
|
|
|
|
|
static char const tbl_sregops_t[][5] = {
|
|
|
|
"strh", "ldsb", "ldrh", "ldsh"
|
2012-04-12 23:36:56 +02:00
|
|
|
};
|
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
static UINT db_get_inst(void* addr, int size)
|
|
|
|
{
|
|
|
|
UINT result = 0;
|
|
|
|
char buffer[4];
|
|
|
|
|
|
|
|
if (dbg_read_memory(addr, buffer, size))
|
|
|
|
{
|
|
|
|
switch (size)
|
|
|
|
{
|
|
|
|
case 4:
|
|
|
|
result = *(UINT*)buffer;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
result = *(WORD*)buffer;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static void db_printsym(unsigned int addr)
|
|
|
|
{
|
|
|
|
ADDRESS64 a;
|
|
|
|
|
|
|
|
a.Mode = AddrModeFlat;
|
|
|
|
a.Offset = addr;
|
|
|
|
|
|
|
|
print_address(&a, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT arm_disasm_branch(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
short link = (inst >> 24) & 0x01;
|
|
|
|
int offset = (inst << 2) & 0x03ffffff;
|
|
|
|
|
|
|
|
if (offset & 0x02000000) offset |= 0xfc000000;
|
|
|
|
offset += 8;
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
dbg_printf("\n\tb%s%s\t", link ? "l" : "", get_cond(inst));
|
|
|
|
db_printsym(addr->Offset + offset);
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_branchreg(UINT inst, ADDRESS64 *addr)
|
2012-04-16 23:52:30 +02:00
|
|
|
{
|
|
|
|
dbg_printf("\n\tb%s\t%s", get_cond(inst), tbl_regs[get_nibble(inst, 0)]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_dataprocessing(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
short condcodes = (inst >> 20) & 0x01;
|
|
|
|
short opcode = (inst >> 21) & 0x0f;
|
|
|
|
short immediate = (inst >> 25) & 0x01;
|
|
|
|
short no_op1 = (opcode & 0x0d) == 0x0d;
|
2012-04-16 23:52:30 +02:00
|
|
|
short no_dst = (opcode & 0x0c) == 0x08;
|
2012-04-11 20:28:30 +02:00
|
|
|
|
|
|
|
/* check for nop */
|
|
|
|
if (get_nibble(inst, 3) == 15 /* r15 */ && condcodes == 0 &&
|
|
|
|
opcode >= 8 /* tst */ && opcode <= 11 /* cmn */)
|
|
|
|
{
|
|
|
|
dbg_printf("\n\tnop");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s%s%s", tbl_dataops[opcode], condcodes ? "s" : "", get_cond(inst));
|
2012-04-16 23:52:30 +02:00
|
|
|
if (!no_dst) dbg_printf("\t%s, ", tbl_regs[get_nibble(inst, 3)]);
|
|
|
|
else dbg_printf("\t");
|
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
if (no_op1)
|
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("#%u", ROR32(inst & 0xff, 2 * get_nibble(inst, 2)));
|
2012-04-11 20:28:30 +02:00
|
|
|
else
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("%s", tbl_regs[get_nibble(inst, 0)]);
|
2012-04-11 20:28:30 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("%s, #%u", tbl_regs[get_nibble(inst, 4)],
|
2012-04-11 20:28:30 +02:00
|
|
|
ROR32(inst & 0xff, 2 * get_nibble(inst, 2)));
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0xff) == 0x00) /* no shift */
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("%s, %s", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)]);
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0x09) == 0x01) /* register shift */
|
|
|
|
dbg_printf("%s, %s, %s %s", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)],
|
|
|
|
tbl_shifts[(inst >> 5) & 0x03], tbl_regs[(inst >> 8) & 0x0f]);
|
|
|
|
else if (((inst >> 4) & 0x01) == 0x00) /* immediate shift */
|
|
|
|
dbg_printf("%s, %s, %s #%d", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)],
|
|
|
|
tbl_shifts[(inst >> 5) & 0x03], (inst >> 7) & 0x1f);
|
|
|
|
else
|
|
|
|
return inst;
|
2012-04-11 20:28:30 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_singletrans(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
short load = (inst >> 20) & 0x01;
|
|
|
|
short writeback = (inst >> 21) & 0x01;
|
|
|
|
short byte = (inst >> 22) & 0x01;
|
|
|
|
short direction = (inst >> 23) & 0x01;
|
2012-04-15 13:12:07 +02:00
|
|
|
short indexing = (inst >> 24) & 0x01;
|
2012-04-11 20:28:30 +02:00
|
|
|
short immediate = !((inst >> 25) & 0x01);
|
|
|
|
short offset = inst & 0x0fff;
|
|
|
|
|
|
|
|
if (!direction) offset *= -1;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s%s%s%s", load ? "ldr" : "str", byte ? "b" : "", writeback ? "t" : "",
|
|
|
|
get_cond(inst));
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\t%s, ", tbl_regs[get_nibble(inst, 3)]);
|
2012-04-15 13:12:07 +02:00
|
|
|
if (indexing)
|
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s, #%d]", tbl_regs[get_nibble(inst, 4)], offset);
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0xff) == 0x00) /* no shift */
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s, %s]", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)]);
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0x01) == 0x00) /* immediate shift (there's no register shift) */
|
|
|
|
dbg_printf("[%s, %s, %s #%d]", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)],
|
|
|
|
tbl_shifts[(inst >> 5) & 0x03], (inst >> 7) & 0x1f);
|
|
|
|
else
|
|
|
|
return inst;
|
2012-04-15 13:12:07 +02:00
|
|
|
}
|
2012-04-11 20:28:30 +02:00
|
|
|
else
|
2012-04-15 13:12:07 +02:00
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s], #%d", tbl_regs[get_nibble(inst, 4)], offset);
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0xff) == 0x00) /* no shift */
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s], %s", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)]);
|
2012-04-18 00:01:57 +02:00
|
|
|
else if (((inst >> 4) & 0x01) == 0x00) /* immediate shift (there's no register shift) */
|
|
|
|
dbg_printf("[%s], %s, %s #%d", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)],
|
|
|
|
tbl_shifts[(inst >> 5) & 0x03], (inst >> 7) & 0x1f);
|
|
|
|
else
|
|
|
|
return inst;
|
2012-04-15 13:12:07 +02:00
|
|
|
}
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_halfwordtrans(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
short halfword = (inst >> 5) & 0x01;
|
|
|
|
short sign = (inst >> 6) & 0x01;
|
|
|
|
short load = (inst >> 20) & 0x01;
|
|
|
|
short writeback = (inst >> 21) & 0x01;
|
|
|
|
short immediate = (inst >> 22) & 0x01;
|
|
|
|
short direction = (inst >> 23) & 0x01;
|
2012-04-15 13:12:07 +02:00
|
|
|
short indexing = (inst >> 24) & 0x01;
|
2012-04-11 20:28:30 +02:00
|
|
|
short offset = ((inst >> 4) & 0xf0) + (inst & 0x0f);
|
|
|
|
|
|
|
|
if (!direction) offset *= -1;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s%s%s%s%s", load ? "ldr" : "str", sign ? "s" : "",
|
|
|
|
halfword ? "h" : (sign ? "b" : ""), writeback ? "t" : "", get_cond(inst));
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\t%s, ", tbl_regs[get_nibble(inst, 3)]);
|
2012-04-15 13:12:07 +02:00
|
|
|
if (indexing)
|
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s, #%d]", tbl_regs[get_nibble(inst, 4)], offset);
|
2012-04-15 13:12:07 +02:00
|
|
|
else
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s, %s]", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)]);
|
2012-04-15 13:12:07 +02:00
|
|
|
}
|
2012-04-11 20:28:30 +02:00
|
|
|
else
|
2012-04-15 13:12:07 +02:00
|
|
|
{
|
|
|
|
if (immediate)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s], #%d", tbl_regs[get_nibble(inst, 4)], offset);
|
2012-04-15 13:12:07 +02:00
|
|
|
else
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("[%s], %s", tbl_regs[get_nibble(inst, 4)], tbl_regs[get_nibble(inst, 0)]);
|
2012-04-15 13:12:07 +02:00
|
|
|
}
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_blocktrans(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
short load = (inst >> 20) & 0x01;
|
|
|
|
short writeback = (inst >> 21) & 0x01;
|
|
|
|
short psr = (inst >> 22) & 0x01;
|
|
|
|
short addrmode = (inst >> 23) & 0x03;
|
|
|
|
short i;
|
|
|
|
short last=15;
|
|
|
|
for (i=15;i>=0;i--)
|
|
|
|
if ((inst>>i) & 1)
|
|
|
|
{
|
|
|
|
last = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s%s%s\t%s%s, {", load ? "ldm" : "stm", tbl_addrmode[addrmode], get_cond(inst),
|
|
|
|
tbl_regs[get_nibble(inst, 4)], writeback ? "!" : "");
|
2012-04-11 20:28:30 +02:00
|
|
|
for (i=0;i<=15;i++)
|
|
|
|
if ((inst>>i) & 1)
|
|
|
|
{
|
2012-04-15 13:14:47 +02:00
|
|
|
if (i == last) dbg_printf("%s", tbl_regs[i]);
|
|
|
|
else dbg_printf("%s, ", tbl_regs[i]);
|
2012-04-11 20:28:30 +02:00
|
|
|
}
|
|
|
|
dbg_printf("}%s", psr ? "^" : "");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_swi(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
UINT comment = inst & 0x00ffffff;
|
2012-04-15 13:12:07 +02:00
|
|
|
dbg_printf("\n\tswi%s\t#%d", get_cond(inst), comment);
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_coproctrans(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
WORD CRm = inst & 0x0f;
|
|
|
|
WORD CP = (inst >> 5) & 0x07;
|
|
|
|
WORD CPnum = (inst >> 8) & 0x0f;
|
|
|
|
WORD CRn = (inst >> 16) & 0x0f;
|
|
|
|
WORD load = (inst >> 20) & 0x01;
|
|
|
|
WORD CP_Opc = (inst >> 21) & 0x07;
|
|
|
|
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s%s\t%u, %u, %s, cr%u, cr%u, {%u}", load ? "mrc" : "mcr", get_cond(inst), CPnum,
|
|
|
|
CP, tbl_regs[get_nibble(inst, 3)], CRn, CRm, CP_Opc);
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_coprocdataop(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
WORD CRm = inst & 0x0f;
|
|
|
|
WORD CP = (inst >> 5) & 0x07;
|
|
|
|
WORD CPnum = (inst >> 8) & 0x0f;
|
|
|
|
WORD CRd = (inst >> 12) & 0x0f;
|
|
|
|
WORD CRn = (inst >> 16) & 0x0f;
|
|
|
|
WORD CP_Opc = (inst >> 20) & 0x0f;
|
|
|
|
|
|
|
|
dbg_printf("\n\tcdp%s\t%u, %u, cr%u, cr%u, cr%u, {%u}", get_cond(inst),
|
|
|
|
CPnum, CP, CRd, CRn, CRm, CP_Opc);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-22 19:03:36 +02:00
|
|
|
static UINT arm_disasm_coprocdatatrans(UINT inst, ADDRESS64 *addr)
|
2012-04-11 20:28:30 +02:00
|
|
|
{
|
|
|
|
WORD CPnum = (inst >> 8) & 0x0f;
|
|
|
|
WORD CRd = (inst >> 12) & 0x0f;
|
|
|
|
WORD load = (inst >> 20) & 0x01;
|
2012-04-15 13:12:07 +02:00
|
|
|
WORD writeback = (inst >> 21) & 0x01;
|
2012-04-11 20:28:30 +02:00
|
|
|
WORD translen = (inst >> 22) & 0x01;
|
|
|
|
WORD direction = (inst >> 23) & 0x01;
|
2012-04-15 13:12:07 +02:00
|
|
|
WORD indexing = (inst >> 24) & 0x01;
|
2012-04-11 20:28:30 +02:00
|
|
|
short offset = (inst & 0xff) << 2;
|
|
|
|
|
|
|
|
if (!direction) offset *= -1;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s%s%s", load ? "ldc" : "stc", translen ? "l" : "", get_cond(inst));
|
2012-04-15 13:12:07 +02:00
|
|
|
if (indexing)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\t%u, cr%u, [%s, #%d]%s", CPnum, CRd, tbl_regs[get_nibble(inst, 4)], offset, writeback?"!":"");
|
2012-04-15 13:12:07 +02:00
|
|
|
else
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\t%u, cr%u, [%s], #%d", CPnum, CRd, tbl_regs[get_nibble(inst, 4)], offset);
|
2012-04-11 20:28:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_hireg(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
short dst = inst & 0x07;
|
|
|
|
short src = (inst >> 3) & 0x07;
|
|
|
|
short h2 = (inst >> 6) & 0x01;
|
|
|
|
short h1 = (inst >> 7) & 0x01;
|
|
|
|
short op = (inst >> 8) & 0x03;
|
|
|
|
|
|
|
|
if (h1) dst += 8;
|
|
|
|
if (h2) src += 8;
|
|
|
|
|
2012-04-19 23:05:04 +02:00
|
|
|
if (op == 2 && dst == src) /* mov rx, rx */
|
|
|
|
{
|
|
|
|
dbg_printf("\n\tnop");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-12 23:36:56 +02:00
|
|
|
if (op == 3)
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\tb%sx\t%s", h1?"l":"", tbl_regs[src]);
|
2012-04-12 23:36:56 +02:00
|
|
|
else
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s\t%s, %s", tbl_hiops_t[op], tbl_regs[dst], tbl_regs[src]);
|
2012-04-12 23:36:56 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-18 23:05:27 +02:00
|
|
|
static WORD thumb_disasm_aluop(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
short dst = inst & 0x07;
|
|
|
|
short src = (inst >> 3) & 0x07;
|
|
|
|
short op = (inst >> 6) & 0x0f;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s\t%s, %s", tbl_aluops_t[op], tbl_regs[dst], tbl_regs[src]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-01 19:45:45 +02:00
|
|
|
static WORD thumb_disasm_pushpop(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
short lrpc = (inst >> 8) & 0x01;
|
|
|
|
short load = (inst >> 11) & 0x01;
|
|
|
|
short i;
|
|
|
|
short last;
|
|
|
|
|
|
|
|
for (i=7;i>=0;i--)
|
|
|
|
if ((inst>>i) & 1) break;
|
|
|
|
last = i;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s\t{", load ? "pop" : "push");
|
|
|
|
|
|
|
|
for (i=0;i<=7;i++)
|
|
|
|
if ((inst>>i) & 1)
|
|
|
|
{
|
2012-04-15 13:14:47 +02:00
|
|
|
if (i == last) dbg_printf("%s", tbl_regs[i]);
|
|
|
|
else dbg_printf("%s, ", tbl_regs[i]);
|
2012-04-12 23:36:56 +02:00
|
|
|
}
|
|
|
|
if (lrpc)
|
2012-05-01 19:45:45 +02:00
|
|
|
dbg_printf("%s%s", last ? ", " : "", load ? "pc" : "lr");
|
|
|
|
|
|
|
|
dbg_printf("}");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static WORD thumb_disasm_blocktrans(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
short load = (inst >> 11) & 0x01;
|
|
|
|
short i;
|
|
|
|
short last;
|
|
|
|
|
|
|
|
for (i=7;i>=0;i--)
|
|
|
|
if ((inst>>i) & 1) break;
|
|
|
|
last = i;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s\t%s!, {", load ? "ldmia" : "stmia", tbl_regs[(inst >> 8) & 0x07]);
|
|
|
|
|
|
|
|
for (i=0;i<=7;i++)
|
|
|
|
if ((inst>>i) & 1)
|
|
|
|
{
|
|
|
|
if (i == last) dbg_printf("%s", tbl_regs[i]);
|
|
|
|
else dbg_printf("%s, ", tbl_regs[i]);
|
|
|
|
}
|
2012-04-12 23:36:56 +02:00
|
|
|
|
|
|
|
dbg_printf("}");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_longbl(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD inst2;
|
|
|
|
UINT offset = (inst & 0x07ff) << 12;
|
|
|
|
|
|
|
|
addr->Offset += 2;
|
|
|
|
inst2 = db_get_inst( memory_to_linear_addr(addr), 2 );
|
|
|
|
if (!((inst2 & 0xf800) == 0xf800)) return inst;
|
|
|
|
|
|
|
|
offset += (inst2 & 0x07ff) << 1;
|
2012-04-22 19:03:36 +02:00
|
|
|
dbg_printf("\n\tbl\t");
|
|
|
|
db_printsym(addr->Offset + offset);
|
2012-04-18 23:05:27 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static WORD thumb_disasm_condbranch(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD offset = inst & 0x00ff;
|
2012-04-22 19:03:36 +02:00
|
|
|
dbg_printf("\n\tb%s\t", tbl_cond[(inst >> 8) & 0x0f]);
|
|
|
|
db_printsym(addr->Offset + offset);
|
2012-04-15 13:10:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-01 19:45:45 +02:00
|
|
|
static WORD thumb_disasm_uncondbranch(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
short offset = (inst & 0x07ff) << 1;
|
|
|
|
|
|
|
|
if (offset & 0x0800) offset |= 0xf000;
|
|
|
|
offset += 4;
|
|
|
|
|
|
|
|
dbg_printf("\n\tb\t");
|
|
|
|
db_printsym(addr->Offset + offset);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-19 23:05:04 +02:00
|
|
|
static WORD thumb_disasm_loadadr(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD src = (inst >> 11) & 0x01;
|
|
|
|
WORD offset = (inst & 0xff) << 2;
|
|
|
|
|
|
|
|
dbg_printf("\n\tadd\t%s, %s, #%d", tbl_regs[(inst >> 8) & 0x07], src ? "sp" : "pc", offset);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_swi(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
WORD comment = inst & 0x00ff;
|
|
|
|
dbg_printf("\n\tswi\t#%d", comment);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_nop(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
dbg_printf("\n\tnop");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_ldrpcrel(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
WORD offset = (inst & 0xff) << 2;
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\tldr\t%s, [pc, #%u]", tbl_regs[(inst >> 8) & 0x07], offset);
|
2012-04-12 23:36:56 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_ldrsprel(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
WORD offset = (inst & 0xff) << 2;
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s\t%s, [sp, #%u]", (inst & 0x0800)?"ldr":"str", tbl_regs[(inst >> 8) & 0x07], offset);
|
2012-04-12 23:36:56 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-18 23:05:27 +02:00
|
|
|
static WORD thumb_disasm_addsprel(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD offset = (inst & 0x7f) << 2;
|
|
|
|
if ((inst >> 7) & 0x01)
|
|
|
|
dbg_printf("\n\tsub\tsp, sp, #%u", offset);
|
|
|
|
else
|
|
|
|
dbg_printf("\n\tadd\tsp, sp, #%u", offset);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_ldrimm(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
WORD offset = (inst & 0x07c0) >> 6;
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s%s\t%s, [%s, #%u]", (inst & 0x0800)?"ldr":"str", (inst & 0x1000)?"b":"",
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07], (inst & 0x1000)?offset:(offset << 2));
|
2012-04-12 23:36:56 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-01 19:45:45 +02:00
|
|
|
static WORD thumb_disasm_ldrhimm(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD offset = (inst & 0x07c0) >> 5;
|
|
|
|
dbg_printf("\n\t%s\t%s, [%s, #%u]", (inst & 0x0800)?"ldrh":"strh",
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07], offset);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static WORD thumb_disasm_ldrreg(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
dbg_printf("\n\t%s%s\t%s, [%s, %s]", (inst & 0x0800)?"ldr":"str", (inst & 0x0400)?"b":"",
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07], tbl_regs[(inst >> 6) & 0x07]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static WORD thumb_disasm_ldrsreg(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
dbg_printf("\n\t%s\t%s, [%s, %s]", tbl_sregops_t[(inst >> 10) & 0x03],
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07], tbl_regs[(inst >> 6) & 0x07]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-15 13:10:26 +02:00
|
|
|
static WORD thumb_disasm_immop(WORD inst, ADDRESS64 *addr)
|
2012-04-12 23:36:56 +02:00
|
|
|
{
|
|
|
|
WORD op = (inst >> 11) & 0x03;
|
2012-04-15 13:14:47 +02:00
|
|
|
dbg_printf("\n\t%s\t%s, #%u", tbl_immops_t[op], tbl_regs[(inst >> 8) & 0x07], inst & 0xff);
|
2012-04-12 23:36:56 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-18 23:05:27 +02:00
|
|
|
static WORD thumb_disasm_addsub(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD op = (inst >> 9) & 0x01;
|
|
|
|
WORD immediate = (inst >> 10) & 0x01;
|
|
|
|
|
|
|
|
dbg_printf("\n\t%s\t%s, %s, ", op ? "sub" : "add",
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07]);
|
|
|
|
if (immediate)
|
|
|
|
dbg_printf("#%d", (inst >> 6) & 0x07);
|
|
|
|
else
|
|
|
|
dbg_printf("%s", tbl_regs[(inst >> 6) & 0x07]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static WORD thumb_disasm_movshift(WORD inst, ADDRESS64 *addr)
|
|
|
|
{
|
|
|
|
WORD op = (inst >> 11) & 0x03;
|
|
|
|
dbg_printf("\n\t%s\t%s, %s, #%u", tbl_shifts[op],
|
|
|
|
tbl_regs[inst & 0x07], tbl_regs[(inst >> 3) & 0x07], (inst >> 6) & 0x1f);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
struct inst_arm
|
|
|
|
{
|
|
|
|
UINT mask;
|
|
|
|
UINT pattern;
|
2012-04-22 19:03:36 +02:00
|
|
|
UINT (*func)(UINT, ADDRESS64*);
|
2012-04-11 20:28:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct inst_arm tbl_arm[] = {
|
|
|
|
{ 0x0e000000, 0x0a000000, arm_disasm_branch },
|
2012-04-16 23:52:30 +02:00
|
|
|
{ 0x0e000090, 0x00000090, arm_disasm_halfwordtrans },
|
|
|
|
{ 0x0fffff00, 0x012fff00, arm_disasm_branchreg },
|
2012-04-11 20:28:30 +02:00
|
|
|
{ 0x0c000000, 0x00000000, arm_disasm_dataprocessing },
|
|
|
|
{ 0x0c000000, 0x04000000, arm_disasm_singletrans },
|
|
|
|
{ 0x0e000000, 0x08000000, arm_disasm_blocktrans },
|
|
|
|
{ 0x0f000000, 0x0f000000, arm_disasm_swi },
|
|
|
|
{ 0x0f000010, 0x0e000010, arm_disasm_coproctrans },
|
|
|
|
{ 0x0f000010, 0x0e000000, arm_disasm_coprocdataop },
|
|
|
|
{ 0x0e000000, 0x0c000000, arm_disasm_coprocdatatrans },
|
|
|
|
{ 0x00000000, 0x00000000, NULL }
|
|
|
|
};
|
|
|
|
|
2012-04-12 23:36:56 +02:00
|
|
|
struct inst_thumb16
|
|
|
|
{
|
|
|
|
WORD mask;
|
|
|
|
WORD pattern;
|
2012-04-15 13:10:26 +02:00
|
|
|
WORD (*func)(WORD, ADDRESS64*);
|
2012-04-12 23:36:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct inst_thumb16 tbl_thumb16[] = {
|
|
|
|
{ 0xfc00, 0x4400, thumb_disasm_hireg },
|
2012-04-18 23:05:27 +02:00
|
|
|
{ 0xfc00, 0x4000, thumb_disasm_aluop },
|
2012-05-01 19:45:45 +02:00
|
|
|
{ 0xf600, 0xb400, thumb_disasm_pushpop },
|
|
|
|
{ 0xf000, 0xc000, thumb_disasm_blocktrans },
|
2012-04-15 13:10:26 +02:00
|
|
|
{ 0xf800, 0xf000, thumb_disasm_longbl },
|
2012-04-18 23:05:27 +02:00
|
|
|
{ 0xf000, 0xd000, thumb_disasm_condbranch },
|
2012-05-01 19:45:45 +02:00
|
|
|
{ 0xf800, 0xe000, thumb_disasm_uncondbranch },
|
2012-04-19 23:05:04 +02:00
|
|
|
{ 0xf000, 0xa000, thumb_disasm_loadadr },
|
2012-04-12 23:36:56 +02:00
|
|
|
{ 0xf800, 0x4800, thumb_disasm_ldrpcrel },
|
|
|
|
{ 0xf000, 0x9000, thumb_disasm_ldrsprel },
|
2012-04-18 23:05:27 +02:00
|
|
|
{ 0xff00, 0xb000, thumb_disasm_addsprel },
|
2012-04-12 23:36:56 +02:00
|
|
|
{ 0xe000, 0x6000, thumb_disasm_ldrimm },
|
2012-05-01 19:45:45 +02:00
|
|
|
{ 0xf000, 0x8000, thumb_disasm_ldrhimm },
|
|
|
|
{ 0xf200, 0x5000, thumb_disasm_ldrreg },
|
|
|
|
{ 0xf200, 0x5200, thumb_disasm_ldrsreg },
|
2012-04-12 23:36:56 +02:00
|
|
|
{ 0xe000, 0x2000, thumb_disasm_immop },
|
|
|
|
{ 0xff00, 0xdf00, thumb_disasm_swi },
|
|
|
|
{ 0xff00, 0xbf00, thumb_disasm_nop },
|
2012-04-19 23:05:04 +02:00
|
|
|
{ 0xf800, 0x1800, thumb_disasm_addsub },
|
2012-04-18 23:05:27 +02:00
|
|
|
{ 0xe000, 0x0000, thumb_disasm_movshift },
|
2012-04-12 23:36:56 +02:00
|
|
|
{ 0x0000, 0x0000, NULL }
|
|
|
|
};
|
|
|
|
|
2012-04-11 20:28:30 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* disasm_one_insn
|
|
|
|
*
|
|
|
|
* Disassemble instruction at 'addr'. addr is changed to point to the
|
|
|
|
* start of the next instruction.
|
|
|
|
*/
|
|
|
|
void be_arm_disasm_one_insn(ADDRESS64 *addr, int display)
|
|
|
|
{
|
|
|
|
struct inst_arm *a_ptr = (struct inst_arm *)&tbl_arm;
|
2012-04-12 23:36:56 +02:00
|
|
|
struct inst_thumb16 *t_ptr = (struct inst_thumb16 *)&tbl_thumb16;
|
2012-04-11 20:28:30 +02:00
|
|
|
UINT inst;
|
2012-04-12 23:36:56 +02:00
|
|
|
WORD tinst;
|
2012-04-11 20:28:30 +02:00
|
|
|
int size;
|
|
|
|
int matched = 0;
|
|
|
|
|
|
|
|
char tmp[64];
|
|
|
|
DWORD_PTR* pval;
|
|
|
|
|
|
|
|
if (!memory_get_register(CV_ARM_CPSR, &pval, tmp, sizeof(tmp)))
|
2012-04-19 23:05:04 +02:00
|
|
|
dbg_printf("\n\tmemory_get_register failed: %s", tmp);
|
2012-04-11 20:28:30 +02:00
|
|
|
else
|
|
|
|
db_disasm_thumb=(*pval & 0x20)?TRUE:FALSE;
|
|
|
|
|
|
|
|
if (db_disasm_thumb) size = THUMB_INSN_SIZE;
|
|
|
|
else size = ARM_INSN_SIZE;
|
|
|
|
|
|
|
|
db_display = display;
|
|
|
|
inst = db_get_inst( memory_to_linear_addr(addr), size );
|
|
|
|
|
|
|
|
if (!db_disasm_thumb)
|
|
|
|
{
|
|
|
|
while (a_ptr->func) {
|
|
|
|
if ((inst & a_ptr->mask) == a_ptr->pattern) {
|
|
|
|
matched = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
a_ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!matched) {
|
2012-04-19 23:05:04 +02:00
|
|
|
dbg_printf("\n\tUnknown Instruction: %08x", inst);
|
2012-04-11 20:28:30 +02:00
|
|
|
addr->Offset += size;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-22 19:03:36 +02:00
|
|
|
if (!a_ptr->func(inst, addr))
|
2012-04-11 20:28:30 +02:00
|
|
|
addr->Offset += size;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-12 23:36:56 +02:00
|
|
|
tinst = inst;
|
|
|
|
while (t_ptr->func) {
|
|
|
|
if ((tinst & t_ptr->mask) == t_ptr->pattern) {
|
|
|
|
matched = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
t_ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!matched) {
|
2012-04-19 23:05:04 +02:00
|
|
|
dbg_printf("\n\tUnknown Instruction: %04x", tinst);
|
2012-04-12 23:36:56 +02:00
|
|
|
addr->Offset += size;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-15 13:10:26 +02:00
|
|
|
if (!t_ptr->func(tinst, addr))
|
2012-04-12 23:36:56 +02:00
|
|
|
addr->Offset += size;
|
|
|
|
}
|
|
|
|
return;
|
2012-04-11 20:28:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-18 18:02:38 +02:00
|
|
|
static unsigned be_arm_get_addr(HANDLE hThread, const CONTEXT* ctx,
|
|
|
|
enum be_cpu_addr bca, ADDRESS64* addr)
|
|
|
|
{
|
|
|
|
switch (bca)
|
|
|
|
{
|
|
|
|
case be_cpu_addr_pc:
|
|
|
|
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Pc);
|
|
|
|
case be_cpu_addr_stack:
|
|
|
|
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Sp);
|
|
|
|
case be_cpu_addr_frame:
|
2010-10-06 22:20:25 +02:00
|
|
|
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Fp);
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_get_register_info(int regno, enum be_cpu_addr* kind)
|
|
|
|
{
|
2011-04-16 15:06:50 +02:00
|
|
|
switch (regno)
|
|
|
|
{
|
|
|
|
case CV_ARM_PC: *kind = be_cpu_addr_pc; return TRUE;
|
|
|
|
case CV_ARM_R0 + 11: *kind = be_cpu_addr_frame; return TRUE;
|
|
|
|
case CV_ARM_SP: *kind = be_cpu_addr_stack; return TRUE;
|
|
|
|
}
|
2010-09-18 18:02:38 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void be_arm_single_step(CONTEXT* ctx, unsigned enable)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_single_step: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void be_arm_print_context(HANDLE hThread, const CONTEXT* ctx, int all_regs)
|
|
|
|
{
|
2011-05-02 22:40:00 +02:00
|
|
|
static const char condflags[] = "NZCV";
|
|
|
|
int i;
|
|
|
|
char buf[8];
|
|
|
|
|
|
|
|
switch (ctx->Cpsr & 0x1F)
|
|
|
|
{
|
|
|
|
case 0: strcpy(buf, "User26"); break;
|
|
|
|
case 1: strcpy(buf, "FIQ26"); break;
|
|
|
|
case 2: strcpy(buf, "IRQ26"); break;
|
|
|
|
case 3: strcpy(buf, "SVC26"); break;
|
|
|
|
case 16: strcpy(buf, "User"); break;
|
|
|
|
case 17: strcpy(buf, "FIQ"); break;
|
|
|
|
case 18: strcpy(buf, "IRQ"); break;
|
|
|
|
case 19: strcpy(buf, "SVC"); break;
|
|
|
|
case 23: strcpy(buf, "ABT"); break;
|
|
|
|
case 27: strcpy(buf, "UND"); break;
|
|
|
|
default: strcpy(buf, "UNKNWN"); break;
|
|
|
|
}
|
|
|
|
|
2011-04-15 19:33:54 +02:00
|
|
|
dbg_printf("Register dump:\n");
|
2011-05-02 22:40:00 +02:00
|
|
|
dbg_printf("%s %s Mode\n", (ctx->Cpsr & 0x20) ? "Thumb" : "ARM", buf);
|
|
|
|
|
|
|
|
strcpy(buf, condflags);
|
|
|
|
for (i = 0; buf[i]; i++)
|
|
|
|
if (!((ctx->Cpsr >> 26) & (1 << (sizeof(condflags) - i))))
|
|
|
|
buf[i] = '-';
|
|
|
|
|
|
|
|
dbg_printf(" Pc:%04x Sp:%04x Lr:%04x Cpsr:%04x(%s)\n",
|
|
|
|
ctx->Pc, ctx->Sp, ctx->Lr, ctx->Cpsr, buf);
|
2011-04-15 19:33:54 +02:00
|
|
|
dbg_printf(" r0:%04x r1:%04x r2:%04x r3:%04x\n",
|
|
|
|
ctx->R0, ctx->R1, ctx->R2, ctx->R3);
|
|
|
|
dbg_printf(" r4:%04x r5:%04x r6:%04x r7:%04x r8:%04x\n",
|
|
|
|
ctx->R4, ctx->R5, ctx->R6, ctx->R7, ctx->R8 );
|
|
|
|
dbg_printf(" r9:%04x r10:%04x Fp:%04x Ip:%04x\n",
|
|
|
|
ctx->R9, ctx->R10, ctx->Fp, ctx->Ip );
|
|
|
|
|
|
|
|
if (all_regs) dbg_printf( "Floating point ARM dump not implemented\n" );
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void be_arm_print_segment_info(HANDLE hThread, const CONTEXT* ctx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct dbg_internal_var be_arm_ctx[] =
|
|
|
|
{
|
2011-04-26 23:10:42 +02:00
|
|
|
{CV_ARM_R0 + 0, "r0", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R0), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 1, "r1", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R1), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 2, "r2", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R2), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 3, "r3", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R3), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 4, "r4", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R4), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 5, "r5", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R5), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 6, "r6", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R6), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 7, "r7", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R7), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 8, "r8", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R8), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 9, "r9", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R9), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 10, "r10", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R10), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 11, "r11", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Fp), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_R0 + 12, "r12", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Ip), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_SP, "sp", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Sp), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_LR, "lr", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Lr), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_PC, "pc", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Pc), dbg_itype_unsigned_int},
|
|
|
|
{CV_ARM_CPSR, "cpsr", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Cpsr), dbg_itype_unsigned_int},
|
|
|
|
{0, NULL, 0, dbg_itype_none}
|
2010-09-18 18:02:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned be_arm_is_step_over_insn(const void* insn)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_is_step_over_insn: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_is_function_return(const void* insn)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_is_function_return: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_is_break_insn(const void* insn)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_is_break_insn: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_is_func_call(const void* insn, ADDRESS64* callee)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-01-08 14:08:56 +01:00
|
|
|
static unsigned be_arm_is_jump(const void* insn, ADDRESS64* jumpee)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-09-18 18:02:38 +02:00
|
|
|
static unsigned be_arm_insert_Xpoint(HANDLE hProcess, const struct be_process_io* pio,
|
|
|
|
CONTEXT* ctx, enum be_xpoint_type type,
|
|
|
|
void* addr, unsigned long* val, unsigned size)
|
|
|
|
{
|
|
|
|
SIZE_T sz;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case be_xpoint_break:
|
|
|
|
if (!size) return 0;
|
|
|
|
if (!pio->read(hProcess, addr, val, 4, &sz) || sz != 4) return 0;
|
|
|
|
default:
|
|
|
|
dbg_printf("Unknown/unsupported bp type %c\n", type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_remove_Xpoint(HANDLE hProcess, const struct be_process_io* pio,
|
|
|
|
CONTEXT* ctx, enum be_xpoint_type type,
|
|
|
|
void* addr, unsigned long val, unsigned size)
|
|
|
|
{
|
|
|
|
SIZE_T sz;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case be_xpoint_break:
|
|
|
|
if (!size) return 0;
|
|
|
|
if (!pio->write(hProcess, addr, &val, 4, &sz) || sz == 4) return 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dbg_printf("Unknown/unsupported bp type %c\n", type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned be_arm_is_watchpoint_set(const CONTEXT* ctx, unsigned idx)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_is_watchpoint_set: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void be_arm_clear_watchpoint(CONTEXT* ctx, unsigned idx)
|
|
|
|
{
|
2011-04-15 19:36:25 +02:00
|
|
|
dbg_printf("be_arm_clear_watchpoint: not done\n");
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int be_arm_adjust_pc_for_break(CONTEXT* ctx, BOOL way)
|
|
|
|
{
|
2012-03-10 18:26:05 +01:00
|
|
|
INT step = (ctx->Cpsr & 0x20) ? 2 : 4;
|
|
|
|
|
2010-10-06 22:20:29 +02:00
|
|
|
if (way)
|
|
|
|
{
|
2012-03-10 18:26:05 +01:00
|
|
|
ctx->Pc -= step;
|
|
|
|
return -step;
|
2010-10-06 22:20:29 +02:00
|
|
|
}
|
2012-03-10 18:26:05 +01:00
|
|
|
ctx->Pc += step;
|
|
|
|
return step;
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int be_arm_fetch_integer(const struct dbg_lvalue* lvalue, unsigned size,
|
|
|
|
unsigned ext_sign, LONGLONG* ret)
|
|
|
|
{
|
2011-04-26 23:11:06 +02:00
|
|
|
if (size != 1 && size != 2 && size != 4 && size != 8) return FALSE;
|
|
|
|
|
|
|
|
memset(ret, 0, sizeof(*ret)); /* clear unread bytes */
|
|
|
|
/* FIXME: this assumes that debuggee and debugger use the same
|
|
|
|
* integral representation
|
|
|
|
*/
|
|
|
|
if (!memory_read_value(lvalue, size, ret)) return FALSE;
|
|
|
|
|
|
|
|
/* propagate sign information */
|
|
|
|
if (ext_sign && size < 8 && (*ret >> (size * 8 - 1)) != 0)
|
|
|
|
{
|
|
|
|
ULONGLONG neg = -1;
|
|
|
|
*ret |= neg << (size * 8);
|
|
|
|
}
|
|
|
|
return TRUE;
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int be_arm_fetch_float(const struct dbg_lvalue* lvalue, unsigned size,
|
|
|
|
long double* ret)
|
|
|
|
{
|
2012-03-08 22:28:26 +01:00
|
|
|
char tmp[sizeof(long double)];
|
|
|
|
|
|
|
|
/* FIXME: this assumes that debuggee and debugger use the same
|
|
|
|
* representation for reals
|
|
|
|
*/
|
|
|
|
if (!memory_read_value(lvalue, size, tmp)) return FALSE;
|
|
|
|
|
|
|
|
switch (size)
|
|
|
|
{
|
|
|
|
case sizeof(float): *ret = *(float*)tmp; break;
|
|
|
|
case sizeof(double): *ret = *(double*)tmp; break;
|
|
|
|
default: return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2010-09-18 18:02:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-04 22:30:38 +02:00
|
|
|
static int be_arm_store_integer(const struct dbg_lvalue* lvalue, unsigned size,
|
|
|
|
unsigned is_signed, LONGLONG val)
|
|
|
|
{
|
2012-04-06 18:22:19 +02:00
|
|
|
/* this is simple if we're on a little endian CPU */
|
|
|
|
return memory_write_value(lvalue, size, &val);
|
2012-04-04 22:30:38 +02:00
|
|
|
}
|
|
|
|
|
2010-09-18 18:02:38 +02:00
|
|
|
struct backend_cpu be_arm =
|
|
|
|
{
|
2011-11-01 16:41:33 +01:00
|
|
|
IMAGE_FILE_MACHINE_ARMV7,
|
2010-09-18 18:02:38 +02:00
|
|
|
4,
|
|
|
|
be_cpu_linearize,
|
|
|
|
be_cpu_build_addr,
|
|
|
|
be_arm_get_addr,
|
|
|
|
be_arm_get_register_info,
|
|
|
|
be_arm_single_step,
|
|
|
|
be_arm_print_context,
|
|
|
|
be_arm_print_segment_info,
|
|
|
|
be_arm_ctx,
|
|
|
|
be_arm_is_step_over_insn,
|
|
|
|
be_arm_is_function_return,
|
|
|
|
be_arm_is_break_insn,
|
|
|
|
be_arm_is_func_call,
|
2011-01-08 14:08:56 +01:00
|
|
|
be_arm_is_jump,
|
2010-09-18 18:02:38 +02:00
|
|
|
be_arm_disasm_one_insn,
|
|
|
|
be_arm_insert_Xpoint,
|
|
|
|
be_arm_remove_Xpoint,
|
|
|
|
be_arm_is_watchpoint_set,
|
|
|
|
be_arm_clear_watchpoint,
|
|
|
|
be_arm_adjust_pc_for_break,
|
|
|
|
be_arm_fetch_integer,
|
|
|
|
be_arm_fetch_float,
|
2012-04-04 22:30:38 +02:00
|
|
|
be_arm_store_integer,
|
2010-09-18 18:02:38 +02:00
|
|
|
};
|
|
|
|
#endif
|