public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@bergmann-dalldorf.de>
To: "Jörn Engel" <joern@wohnheim.fh-wedel.de>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] add checkstack Makefile target
Date: Thu, 06 Mar 2003 02:50:22 +0100	[thread overview]
Message-ID: <200303060152.h261qUiU012772@post.webmailer.de> (raw)
In-Reply-To: 20030305172012$38f6@gated-at.bofh.it

Jörn Engel wrote:

> Yet another version:
> - Arch dependent code is reduced to one regular expression.
> - Much shorter.
> - A tiny bit faster.
> 
> Still, Keith' code beats the crap out of mine, speed-wise.

Ok, here is another regex for s390, including a changed $line
calculation. I didn't have ksymoops around, but this change
removes the need for it and should also speed things up.

        Arnd <><

--- checkstack.pl       2003-03-06 02:28:13.000000000 +0100
+++ scripts/checkstack.pl       2003-03-06 02:25:23.000000000 +0100
@@ -31,6 +31,9 @@
        } elsif ($arch =~ /^ppc$/) {
                #c00029f4:       94 21 ff 30     stwu    r1,-208(r1)
                $re = qr/.*(stwu.*r1,-($x{3,5})\(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;
        } else {
                print "wrong or unknown architecture\n";
                exit
@@ -46,16 +49,17 @@
 #
 # main()
 #
+$funcre = qr/^$x* \<(.*)\>:$/;
 while (defined($line = <STDIN>)) {
+       if ($line =~ m/$funcre/) {
+               ($func = $line) =~ s/$funcre/\1/;
+               chomp($func);
+       }
+                                       
        if ($line =~ m/$re/) {
-               (my $addr = $line) =~ s/^($x{8}).*/0x\1/o;
+               (my $addr = $line) =~ s/^([ 0-9a-z]{8}):.*/0x\1/o;
                chomp($addr);
 
-               my $ksymoops = `ksymoops -v vmlinux -m System.map -K -L -O -A $addr | \
-                               tail -2 | head -1`;
-               (my $func = $ksymoops) =~ s/^Adhoc [0-9a-f]{8} (<.*>)/\1/;
-               chomp($func);
-
                my $intro = "$addr $func:";
                my $padlen = 56 - length($intro);
                while ($padlen > 0) {

       reply	other threads:[~2003-03-06  1:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20030305172012$3eb0@gated-at.bofh.it>
     [not found] ` <20030305172012$0dea@gated-at.bofh.it>
     [not found]   ` <20030305172012$0ad6@gated-at.bofh.it>
     [not found]     ` <20030305172012$4a05@gated-at.bofh.it>
     [not found]       ` <20030305172012$03b3@gated-at.bofh.it>
     [not found]         ` <20030305172012$525f@gated-at.bofh.it>
     [not found]           ` <20030305172012$698e@gated-at.bofh.it>
     [not found]             ` <20030305172012$38f6@gated-at.bofh.it>
2003-03-06  1:50               ` Arnd Bergmann [this message]
2003-03-06 10:51                 ` [PATCH] add checkstack Makefile target Jörn Engel
2003-03-03 21:16 Jörn Engel
2003-03-04  7:03 ` Muli Ben-Yehuda
2003-03-04  7:24   ` Jörn Engel
2003-03-04 10:21     ` Jörn Engel
2003-03-04 10:57       ` Jörn Engel
2003-03-04 19:08         ` Sam Ravnborg
2003-03-05 14:51           ` Jörn Engel
2003-03-05 17:14             ` Jörn Engel
2003-03-05 19:15             ` Sam Ravnborg
2003-03-05 19:54               ` Jörn Engel
2003-03-11 15:36                 ` =?unknown-8bit?Q?J=F6rn?= Engel
2003-03-23 19:08                 ` Sam Ravnborg
2003-03-25 13:49                   ` Jörn Engel
2003-03-25 23:53                     ` Juan Quintela

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200303060152.h261qUiU012772@post.webmailer.de \
    --to=arnd@bergmann-dalldorf.de \
    --cc=joern@wohnheim.fh-wedel.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox