annotate .gdbinit @ 604:ff033b46cac5

*** empty log message ***
author kono
date Mon, 30 Jan 2006 13:42:12 +0900
parents 6b808480f08b
children 2dee957ef988
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
1 define regs
116
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
2 printf "pc =%08x lr =%08x r0 =%08x r1 =%08x r3= %08x r4= %08x\n",$pc,$lr,$r0,$r1,$r3,$r4
111
7aa449aff3e6 floating point
kono
parents: 110
diff changeset
3 printf "r10=%08x r11=%08x r12=%08x r13=%08x r14=%08x r15=%08x\n",$r10,$r11,$r12,$r13,$r14,$r15
7aa449aff3e6 floating point
kono
parents: 110
diff changeset
4 end
7aa449aff3e6 floating point
kono
parents: 110
diff changeset
5 define fregs
7aa449aff3e6 floating point
kono
parents: 110
diff changeset
6 printf "f1=%g f2=%g f3=%g f4=%g f5=%g f6=%g\n",$f1,$f2,$f3,$f4,$f5,$f6
7aa449aff3e6 floating point
kono
parents: 110
diff changeset
7 printf "f10=%g f11=%g f12=%g f13=%g f14=%g f15=%g\n",$f10,$f11,$f12,$f13,$f14,$f15
32
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
8 end
116
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
9 define allreg
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
10 printf "pc =%08x lr =%08x r0 =%08x r1 =%08x r3= %08x r4= %08x\n",$pc,$lr,$r0,$r1,$r3,$r4
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
11 printf "r5=%08x r6=%08x r7=%08x r8=%08x r9=%08x\n",$r5,$r6,$r7,$r8,$r9
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
12 printf "r10=%08x r11=%08x r12=%08x r13=%08x r14=%08x r15=%08x\n",$r10,$r11,$r12,$r13,$r14,$r15
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
13 printf "r16=%08x r17=%08x r18=%08x r19=%08x r20=%08x r21=%08x\n",$r10,$r11,$r12,$r13,$r14,$r15
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
14 printf "f1=%g f2=%g f3=%g f4=%g f5=%g f6=%g\n",$f1,$f2,$f3,$f4,$f5,$f6
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
15 printf "f10=%g f11=%g f12=%g f13=%g f14=%g f15=%g\n",$f10,$f11,$f12,$f13,$f14,$f15
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
16 printf "f20=%g f21=%g f22=%g f23=%g f24=%g f25=%g\n",$f20,$f21,$f22,$f23,$f24,$f25
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
17 end
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
18 define sh
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
19 regs
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
20 x/20i $pc-36
b14ff9671c90 register offset fix
kono
parents: 111
diff changeset
21 end
32
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
22 define si
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
23 stepi
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
24 regs
110
fb502a0071f8 first binary run
kono
parents: 103
diff changeset
25 x/1i $pc
32
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
26 end
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
27 define ni
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
28 nexti
51
c2ef3a2fbe88 *** empty log message ***
kono
parents: 49
diff changeset
29 regs
110
fb502a0071f8 first binary run
kono
parents: 103
diff changeset
30 x/1i $pc
32
b35787d8a442 macro initialization
kono
parents: 30
diff changeset
31 end
39
c63c4fdeb9a7 struct done.
kono
parents: 38
diff changeset
32 b errmsg
467
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
33 tb main
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
34 # run -s test/inline.c
489
79fef53141b4 fix clear_ptr_cache in MIPS/ARM.
kono
parents: 467
diff changeset
35 # run -s mc-parse.c
467
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
36 # run -s mc-codegen.c
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
37 # run -s nkf203/nkf.c
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
38 # run -s -ob01.s mc-switch.c
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
39 # run -s l.c
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
40 # run -s test/const.c
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
41 # run -s test/basic.c
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 583
diff changeset
42 # run -s test/code-gen-all.c
467
32737bad7489 fix list/tag interference
kono
parents: 453
diff changeset
43 # run -s test/tmp7.c
529
ad874ef77dde use_input_reg...
kono
parents: 489
diff changeset
44 # run -s test/inline.c
535
c17f1ef0d2be *** empty log message ***
kono
parents: 529
diff changeset
45 # run -s test/code-gen-inline.c
537
a6c9ffbf3f08 arg offset in nested function arguments.
kono
parents: 535
diff changeset
46 # run -s -DINLINE=inline test/basic.c
548
650717de878b *** empty log message ***
kono
parents: 537
diff changeset
47 # run -s test/too-long-argument.c
550
df60b120675d *** empty log message ***
kono
parents: 549
diff changeset
48 # run -s test/strinit.c
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 551
diff changeset
49 # run -DINLINE=inline test/scope.c
572
388baa7d4bee more strict errors.
kono
parents: 566
diff changeset
50 # run -DINLINE=inline test/code-gen-all.c
574
aad312f61654 remove too much inmode.
kono
parents: 572
diff changeset
51 # run -DINLINE=inline test/bitfield1.c
556
ef225b589888 s-dandy fix
kono
parents: 553
diff changeset
52 # run -s test/linux_kernel.c.---
ef225b589888 s-dandy fix
kono
parents: 553
diff changeset
53 # run -s test/stralign.c
566
ddc435b64fc8 binop/inline interaction
kono
parents: 556
diff changeset
54 # run -s test/putenemy.c
574
aad312f61654 remove too much inmode.
kono
parents: 572
diff changeset
55 # run -s test/func_conv_err.c
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 583
diff changeset
56 run -DINLINE=inline test/tmp7.c
577
7e0076617c76 env switch continue..
kono
parents: 574
diff changeset
57 # run -DINLINE=inline test/code-gen-all.c
583
421be86892b3 ia32 reorganization
kono
parents: 577
diff changeset
58 # run -s throw.c