po: A couple of line wrapping tweaks in the Czech translation.
[wine/multimedia.git] / programs / winedbg / be_arm.c
blobcd892dffd8d748a1c1dee32499c126281867b5be
1 /*
2 * Debugger ARM specific functions
4 * Copyright 2000-2003 Marcus Meissner
5 * 2004 Eric Pouech
6 * 2010, 2011 André Hentschel
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "debugger.h"
25 #if defined(__arm__)
27 static unsigned be_arm_get_addr(HANDLE hThread, const CONTEXT* ctx,
28 enum be_cpu_addr bca, ADDRESS64* addr)
30 switch (bca)
32 case be_cpu_addr_pc:
33 return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Pc);
34 case be_cpu_addr_stack:
35 return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Sp);
36 case be_cpu_addr_frame:
37 return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Fp);
39 return FALSE;
42 static unsigned be_arm_get_register_info(int regno, enum be_cpu_addr* kind)
44 switch (regno)
46 case CV_ARM_PC: *kind = be_cpu_addr_pc; return TRUE;
47 case CV_ARM_R0 + 11: *kind = be_cpu_addr_frame; return TRUE;
48 case CV_ARM_SP: *kind = be_cpu_addr_stack; return TRUE;
50 return FALSE;
53 static void be_arm_single_step(CONTEXT* ctx, unsigned enable)
55 dbg_printf("be_arm_single_step: not done\n");
58 static void be_arm_print_context(HANDLE hThread, const CONTEXT* ctx, int all_regs)
60 static const char condflags[] = "NZCV";
61 int i;
62 char buf[8];
64 switch (ctx->Cpsr & 0x1F)
66 case 0: strcpy(buf, "User26"); break;
67 case 1: strcpy(buf, "FIQ26"); break;
68 case 2: strcpy(buf, "IRQ26"); break;
69 case 3: strcpy(buf, "SVC26"); break;
70 case 16: strcpy(buf, "User"); break;
71 case 17: strcpy(buf, "FIQ"); break;
72 case 18: strcpy(buf, "IRQ"); break;
73 case 19: strcpy(buf, "SVC"); break;
74 case 23: strcpy(buf, "ABT"); break;
75 case 27: strcpy(buf, "UND"); break;
76 default: strcpy(buf, "UNKNWN"); break;
79 dbg_printf("Register dump:\n");
80 dbg_printf("%s %s Mode\n", (ctx->Cpsr & 0x20) ? "Thumb" : "ARM", buf);
82 strcpy(buf, condflags);
83 for (i = 0; buf[i]; i++)
84 if (!((ctx->Cpsr >> 26) & (1 << (sizeof(condflags) - i))))
85 buf[i] = '-';
87 dbg_printf(" Pc:%04x Sp:%04x Lr:%04x Cpsr:%04x(%s)\n",
88 ctx->Pc, ctx->Sp, ctx->Lr, ctx->Cpsr, buf);
89 dbg_printf(" r0:%04x r1:%04x r2:%04x r3:%04x\n",
90 ctx->R0, ctx->R1, ctx->R2, ctx->R3);
91 dbg_printf(" r4:%04x r5:%04x r6:%04x r7:%04x r8:%04x\n",
92 ctx->R4, ctx->R5, ctx->R6, ctx->R7, ctx->R8 );
93 dbg_printf(" r9:%04x r10:%04x Fp:%04x Ip:%04x\n",
94 ctx->R9, ctx->R10, ctx->Fp, ctx->Ip );
96 if (all_regs) dbg_printf( "Floating point ARM dump not implemented\n" );
99 static void be_arm_print_segment_info(HANDLE hThread, const CONTEXT* ctx)
103 static struct dbg_internal_var be_arm_ctx[] =
105 {CV_ARM_R0 + 0, "r0", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R0), dbg_itype_unsigned_int},
106 {CV_ARM_R0 + 1, "r1", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R1), dbg_itype_unsigned_int},
107 {CV_ARM_R0 + 2, "r2", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R2), dbg_itype_unsigned_int},
108 {CV_ARM_R0 + 3, "r3", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R3), dbg_itype_unsigned_int},
109 {CV_ARM_R0 + 4, "r4", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R4), dbg_itype_unsigned_int},
110 {CV_ARM_R0 + 5, "r5", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R5), dbg_itype_unsigned_int},
111 {CV_ARM_R0 + 6, "r6", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R6), dbg_itype_unsigned_int},
112 {CV_ARM_R0 + 7, "r7", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R7), dbg_itype_unsigned_int},
113 {CV_ARM_R0 + 8, "r8", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R8), dbg_itype_unsigned_int},
114 {CV_ARM_R0 + 9, "r9", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R9), dbg_itype_unsigned_int},
115 {CV_ARM_R0 + 10, "r10", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, R10), dbg_itype_unsigned_int},
116 {CV_ARM_R0 + 11, "r11", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Fp), dbg_itype_unsigned_int},
117 {CV_ARM_R0 + 12, "r12", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Ip), dbg_itype_unsigned_int},
118 {CV_ARM_SP, "sp", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Sp), dbg_itype_unsigned_int},
119 {CV_ARM_LR, "lr", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Lr), dbg_itype_unsigned_int},
120 {CV_ARM_PC, "pc", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Pc), dbg_itype_unsigned_int},
121 {CV_ARM_CPSR, "cpsr", (DWORD_PTR*)FIELD_OFFSET(CONTEXT, Cpsr), dbg_itype_unsigned_int},
122 {0, NULL, 0, dbg_itype_none}
125 static unsigned be_arm_is_step_over_insn(const void* insn)
127 dbg_printf("be_arm_is_step_over_insn: not done\n");
128 return FALSE;
131 static unsigned be_arm_is_function_return(const void* insn)
133 dbg_printf("be_arm_is_function_return: not done\n");
134 return FALSE;
137 static unsigned be_arm_is_break_insn(const void* insn)
139 dbg_printf("be_arm_is_break_insn: not done\n");
140 return FALSE;
143 static unsigned be_arm_is_func_call(const void* insn, ADDRESS64* callee)
145 return FALSE;
148 static unsigned be_arm_is_jump(const void* insn, ADDRESS64* jumpee)
150 return FALSE;
153 static void be_arm_disasm_one_insn(ADDRESS64* addr, int display)
155 dbg_printf("Disasm NIY\n");
158 static unsigned be_arm_insert_Xpoint(HANDLE hProcess, const struct be_process_io* pio,
159 CONTEXT* ctx, enum be_xpoint_type type,
160 void* addr, unsigned long* val, unsigned size)
162 SIZE_T sz;
164 switch (type)
166 case be_xpoint_break:
167 if (!size) return 0;
168 if (!pio->read(hProcess, addr, val, 4, &sz) || sz != 4) return 0;
169 default:
170 dbg_printf("Unknown/unsupported bp type %c\n", type);
171 return 0;
173 return 1;
176 static unsigned be_arm_remove_Xpoint(HANDLE hProcess, const struct be_process_io* pio,
177 CONTEXT* ctx, enum be_xpoint_type type,
178 void* addr, unsigned long val, unsigned size)
180 SIZE_T sz;
182 switch (type)
184 case be_xpoint_break:
185 if (!size) return 0;
186 if (!pio->write(hProcess, addr, &val, 4, &sz) || sz == 4) return 0;
187 break;
188 default:
189 dbg_printf("Unknown/unsupported bp type %c\n", type);
190 return 0;
192 return 1;
195 static unsigned be_arm_is_watchpoint_set(const CONTEXT* ctx, unsigned idx)
197 dbg_printf("be_arm_is_watchpoint_set: not done\n");
198 return FALSE;
201 static void be_arm_clear_watchpoint(CONTEXT* ctx, unsigned idx)
203 dbg_printf("be_arm_clear_watchpoint: not done\n");
206 static int be_arm_adjust_pc_for_break(CONTEXT* ctx, BOOL way)
208 if (way)
210 ctx->Pc-=4;
211 return -4;
213 ctx->Pc+=4;
214 return 4;
217 static int be_arm_fetch_integer(const struct dbg_lvalue* lvalue, unsigned size,
218 unsigned ext_sign, LONGLONG* ret)
220 if (size != 1 && size != 2 && size != 4 && size != 8) return FALSE;
222 memset(ret, 0, sizeof(*ret)); /* clear unread bytes */
223 /* FIXME: this assumes that debuggee and debugger use the same
224 * integral representation
226 if (!memory_read_value(lvalue, size, ret)) return FALSE;
228 /* propagate sign information */
229 if (ext_sign && size < 8 && (*ret >> (size * 8 - 1)) != 0)
231 ULONGLONG neg = -1;
232 *ret |= neg << (size * 8);
234 return TRUE;
237 static int be_arm_fetch_float(const struct dbg_lvalue* lvalue, unsigned size,
238 long double* ret)
240 dbg_printf("be_arm_fetch_float: not done\n");
241 return FALSE;
244 static int be_arm_store_integer(const struct dbg_lvalue* lvalue, unsigned size,
245 unsigned is_signed, LONGLONG val)
247 dbg_printf("be_arm_store_integer: not done\n");
248 return FALSE;
251 struct backend_cpu be_arm =
253 IMAGE_FILE_MACHINE_ARMV7,
255 be_cpu_linearize,
256 be_cpu_build_addr,
257 be_arm_get_addr,
258 be_arm_get_register_info,
259 be_arm_single_step,
260 be_arm_print_context,
261 be_arm_print_segment_info,
262 be_arm_ctx,
263 be_arm_is_step_over_insn,
264 be_arm_is_function_return,
265 be_arm_is_break_insn,
266 be_arm_is_func_call,
267 be_arm_is_jump,
268 be_arm_disasm_one_insn,
269 be_arm_insert_Xpoint,
270 be_arm_remove_Xpoint,
271 be_arm_is_watchpoint_set,
272 be_arm_clear_watchpoint,
273 be_arm_adjust_pc_for_break,
274 be_arm_fetch_integer,
275 be_arm_fetch_float,
276 be_arm_store_integer,
278 #endif