[project @ 2000-06-13 15:35:29 by partain]
authorpartain <unknown>
Tue, 13 Jun 2000 15:35:29 +0000 (15:35 +0000)
committerpartain <unknown>
Tue, 13 Jun 2000 15:35:29 +0000 (15:35 +0000)
Alleged post-Sansom 0.27+ code

ghc/driver/split/ghc-split.lprl

index 267315c..00c116e 100644 (file)
@@ -24,10 +24,14 @@ sub inject_split_markers {
        $_ = <TMPI>;
     }
     print TMPO "__STG_SPLIT_MARKER(1)\n";
-    print TMPO $_ if ! /\/\* SPLIT \*\//;
+    print TMPO $_ if ! /^\s*\/\* SPLIT \*\/\s*$/;
+
+       # Have to be a bit careful detecting /* SPLIT */ comments
+       # since a progam may use a string containing "/* SPLIT */"
+       # We check that there is nothing else on the line
 
     while (<TMPI>) {
-       if (/\/\* SPLIT \*\//) {
+       if (/^\s*\/\* SPLIT \*\/\s*$/) {
            $marker_no++;
            print TMPO "__STG_SPLIT_MARKER($marker_no)\n";
            next;
@@ -195,7 +199,7 @@ sub process_asm_block_sparc {
     $str =~ s/^\.stabs "(ghc\d+\.c)"/.stabs "$ifile_root.hc"/g; # HACK HACK
 
     # remove/record any literal constants defined here
-    while ( $str =~ /(\t\.align .\n(LC\d+):\n\t\.ascii.*\n)/ ) {
+    while ( $str =~ /(\t\.align .\n(LC\d+):\n(\t\.ascii.*\n)+)/ ) {
        local($label) = $2;
        local($body)  = $1;
 
@@ -204,7 +208,7 @@ sub process_asm_block_sparc {
 
        $LocalConstant{$label} = $body;
        
-       $str =~ s/\t\.align .\nLC\d+:\n\t\.ascii.*\n//;
+       $str =~ s/\t\.align .\nLC\d+:\n(\t\.ascii.*\n)+//;
     }
 
     # inject definitions for any local constants now used herein