projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39ed2fe
)
[POWERPC] make checkstack work with ARCH=powerpc
author
Johannes Berg
<johannes@sipsolutions.net>
Tue, 22 Aug 2006 14:57:05 +0000
(16:57 +0200)
committer
Paul Mackerras
<paulus@samba.org>
Fri, 25 Aug 2006 03:30:27 +0000
(13:30 +1000)
This patch adds 'powerpc' architecture support to checkstack.pl.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
scripts/checkstack.pl
patch
|
blob
|
blame
|
history
diff --git
a/scripts/checkstack.pl
b/scripts/checkstack.pl
index b34924663ac1f749d385efe70d09e226aff6bf45..f7844f6aa487a8c77fc08ff0edf11a8e0ab20d16 100755
(executable)
--- a/
scripts/checkstack.pl
+++ b/
scripts/checkstack.pl
@@
-62,6
+62,8
@@
my (@stack, $re, $x, $xs);
} elsif ($arch eq 'ppc64') {
#XXX
$re = qr/.*stdu.*r1,-($x{1,8})\(r1\)/o;
+ } elsif ($arch eq 'powerpc') {
+ $re = qr/.*st[dw]u.*r1,-($x{1,8})\(r1\)/o;
} elsif ($arch =~ /^s390x?$/) {
# 11160: a7 fb ff 60 aghi %r15,-160
$re = qr/.*ag?hi.*\%r15,-(([0-9]{2}|[3-9])[0-9]{2})/o;