Changes in kernel/arch/arm32/src/exception.c [cb4f078:22a28a69] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/exception.c
rcb4f078 r22a28a69 35 35 36 36 #include <arch/exception.h> 37 #include <arch/memstr.h> 37 38 #include <arch/regutils.h> 38 39 #include <arch/machine_func.h> … … 174 175 void istate_decode(istate_t *istate) 175 176 { 176 printf("r0 =%#0" PRIx32 "\tr1 =%#0" PRIx32 "\t" 177 "r2 =%#0" PRIx32 "\tr3 =%#0" PRIx32 "\n", 177 printf("r0 =%#0.8lx\tr1 =%#0.8lx\tr2 =%#0.8lx\tr3 =%#0.8lx\n", 178 178 istate->r0, istate->r1, istate->r2, istate->r3); 179 printf("r4 =%#" PRIx32 "\tr5 =%#0" PRIx32 "\t" 180 "r6 =%#0" PRIx32 "\tr7 =%#0" PRIx32 "\n", 179 printf("r4 =%#0.8lx\tr5 =%#0.8lx\tr6 =%#0.8lx\tr7 =%#0.8lx\n", 181 180 istate->r4, istate->r5, istate->r6, istate->r7); 182 printf("r8 =%#0" PRIx32 "\tr9 =%#0" PRIx32 "\t" 183 "r10=%#0" PRIx32 "\tfp =%p\n", 184 istate->r8, istate->r9, istate->r10, 185 (void *) istate->fp); 186 printf("r12=%#0" PRIx32 "\tsp =%p\tlr =%p\tspsr=%p\n", 187 istate->r12, (void *) istate->sp, 188 (void *) istate->lr, (void *) istate->spsr); 181 printf("r8 =%#0.8lx\tr9 =%#0.8lx\tr10=%#0.8lx\tfp =%#0.8lx\n", 182 istate->r8, istate->r9, istate->r10, istate->fp); 183 printf("r12=%#0.8lx\tsp =%#0.8lx\tlr =%#0.8lx\tspsr=%#0.8lx\n", 184 istate->r12, istate->sp, istate->lr, istate->spsr); 189 185 } 190 186
Note:
See TracChangeset
for help on using the changeset viewer.