We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fcf061 commit 0367d89Copy full SHA for 0367d89
scripts/checkstack.pl
@@ -12,6 +12,7 @@
12
# sh64 port by Paul Mundt
13
# Random bits by Matt Mackall <mpm@selenic.com>
14
# M68k port by Geert Uytterhoeven and Andreas Schwab
15
+# AVR32 port by Haavard Skinnemoen <hskinnemoen@atmel.com>
16
#
17
# Usage:
18
# objdump -d vmlinux | stackcheck.pl [arch]
@@ -37,6 +38,10 @@
37
38
if ($arch eq 'arm') {
39
#c0008ffc: e24dd064 sub sp, sp, #100 ; 0x64
40
$re = qr/.*sub.*sp, sp, #(([0-9]{2}|[3-9])[0-9]{2})/o;
41
+ } elsif ($arch eq 'avr32') {
42
+ #8000008a: 20 1d sub sp,4
43
+ #80000ca8: fa cd 05 b0 sub sp,sp,1456
44
+ $re = qr/^.*sub.*sp.*,([0-9]{1,8})/o;
45
} elsif ($arch =~ /^i[3456]86$/) {
46
#c0105234: 81 ec ac 05 00 00 sub $0x5ac,%esp
47
$re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%esp$/o;
0 commit comments