Adjust indentation for .globl directives.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 07:08:21 +0000 (07:08 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 07:08:21 +0000 (07:08 +0000)
src/threads/intr-stubs.pl
src/threads/start.S
src/threads/switch.S

index 9725860b24b297b70175cbaac1618a200f153e0b..6ac5a8df527c2a4f7951774d1af7dfedfbbae439 100755 (executable)
@@ -4,7 +4,7 @@ print <<'EOF';
 #include "mmu.h"
 
        .data
-       .globl intr_stubs
+.globl intr_stubs
 intr_stubs:
 EOF
 
@@ -20,7 +20,7 @@ EOF
 
 for $i (0...255) {
     $x = sprintf ("%02x", $i);
-    print "\t.globl intr${x}_stub\n";
+    print ".globl intr${x}_stub\n";
     print "intr${x}_stub:\n";
     print "\tpushl \$0\n"
        if ($i != 8 && $i != 10 && $i != 11
@@ -45,13 +45,12 @@ intr_entry:
 
        # Call handler.
        pushl %esp
-       .globl intr_handler
+.globl intr_handler
        call intr_handler
        addl $4, %esp
 
-       .globl intr_exit
+.globl intr_exit
 intr_exit:
-
        # Restore caller's registers.
        popal
        popl %es
index 351b5e1532a95eb286d1c05c82509034cade63f2..58624791a78e599bac5df8914a0fc0398b8dc52c 100644 (file)
@@ -2,7 +2,7 @@
 # is the very beginning of its binary image.  All we need to do is
 # jump to the real entry point.
 
-       .globl start
+.globl start
 start: call main
 
        # If main returns, spin.
index fddd821afc8ef296fb22d800768e743577be89c5..c077e46d590202ef5156ab0d9084d1ea28e6afe2 100644 (file)
@@ -1,6 +1,6 @@
 #include "switch.h"
 
-        .globl switch_threads 
+.globl switch_threads 
 switch_threads:
        # Save caller's register state.
        # Note that the SVR4 ABI allows us to destroy %eax, %ecx, %edx.
@@ -11,7 +11,7 @@ switch_threads:
        pushl %edi
 
        # Get offsetof (struct thread, stack).
-       .globl thread_stack_ofs
+.globl thread_stack_ofs
        mov thread_stack_ofs, %edx
 
        # Save current stack pointer to old thread's stack, if any.
@@ -32,14 +32,14 @@ switch_threads:
        popl %ebx
         ret
 
-       .globl switch_entry
+.globl switch_entry
 switch_entry:
        # Discard thread_switch() arguments.
        addl $8, %esp
 
        # Call schedule_tail(prev).
        pushl %eax
-       .globl schedule_tail
+.globl schedule_tail
        call schedule_tail
        addl $4, %esp