[PATCH] Fix checkstack to work with ARCH=x86

From: David Woodhouse
Date: Thu Dec 20 2012 - 11:25:51 EST



Signed-off-by: David Woodhouse <David.Woodhouse@xxxxxxxxx>
---
scripts/checkstack.pl | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl
index 17e3843..bf7a6af 100755
--- a/scripts/checkstack.pl
+++ b/scripts/checkstack.pl
@@ -59,6 +59,11 @@ my (@stack, $re, $dre, $x, $xs);
# 2f60: 48 81 ec e8 05 00 00 sub $0x5e8,%rsp
$re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%rsp$/o;
$dre = qr/^.*[as][du][db] (\%.*),\%rsp$/o;
+ } elsif ($arch eq 'x86') {
+ #c0105234: 81 ec ac 05 00 00 sub $0x5ac,%esp
+ # 2f60: 48 81 ec e8 05 00 00 sub $0x5e8,%rsp
+ $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%[er]sp$/o;
+ $dre = qr/^.*[as][du][db] (\%.*),\%[er]sp$/o;
} elsif ($arch eq 'ia64') {
#e0000000044011fc: 01 0f fc 8c adds r12=-384,r12
$re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o;
--
1.8.0.1


--
dwmw2

Attachment: smime.p7s
Description: S/MIME cryptographic signature