mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
sparc: Add checkstack support
Add sparc support to checkstack. Signed-off-by: Martin Habets <errandir_news@mph.eclipse.co.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8dd9453737
commit
d41e2d7317
1 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
||||||
# M68k port by Geert Uytterhoeven and Andreas Schwab
|
# M68k port by Geert Uytterhoeven and Andreas Schwab
|
||||||
# AVR32 port by Haavard Skinnemoen <hskinnemoen@atmel.com>
|
# AVR32 port by Haavard Skinnemoen <hskinnemoen@atmel.com>
|
||||||
# PARISC port by Kyle McMartin <kyle@parisc-linux.org>
|
# PARISC port by Kyle McMartin <kyle@parisc-linux.org>
|
||||||
|
# sparc port by Martin Habets <errandir_news@mph.eclipse.co.uk>
|
||||||
#
|
#
|
||||||
# Usage:
|
# Usage:
|
||||||
# objdump -d vmlinux | scripts/checkstack.pl [arch]
|
# objdump -d vmlinux | scripts/checkstack.pl [arch]
|
||||||
|
@ -94,6 +95,9 @@ my (@stack, $re, $dre, $x, $xs);
|
||||||
} elsif ($arch =~ /^blackfin$/) {
|
} elsif ($arch =~ /^blackfin$/) {
|
||||||
# 0: 00 e8 38 01 LINK 0x4e0;
|
# 0: 00 e8 38 01 LINK 0x4e0;
|
||||||
$re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o;
|
$re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o;
|
||||||
|
} elsif ($arch eq 'sparc' || $arch eq 'sparc64') {
|
||||||
|
# f0019d10: 9d e3 bf 90 save %sp, -112, %sp
|
||||||
|
$re = qr/.*save.*%sp, -(([0-9]{2}|[3-9])[0-9]{2}), %sp/o;
|
||||||
} else {
|
} else {
|
||||||
print("wrong or unknown architecture \"$arch\"\n");
|
print("wrong or unknown architecture \"$arch\"\n");
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in a new issue