Added prefix C_ to the names prolog, jump, and locals
authorceriel <none@none>
Thu, 26 Jan 1989 14:04:11 +0000 (14:04 +0000)
committerceriel <none@none>
Thu, 26 Jan 1989 14:04:11 +0000 (14:04 +0000)
mach/i86/ce/EM_table
mach/m68020/ce/EM_table
mach/sun3/ce/EM_table
mach/vax4/ce/EM_table
util/ceg/defaults/pseudo/C_end.c
util/ceg/defaults/pseudo/C_insertpart.c
util/ceg/defaults/pseudo/C_pro.c
util/ceg/defaults/pseudo/C_pro_narg.c

index efac973..4517749 100644 (file)
@@ -1249,17 +1249,17 @@ C_df_ilb        ==>     clean_push_buf();
                        set_local_visible( $1).
 #endif
 
-jump           ==>     "jmp $1".
+C_jump         ==>             "jmp $1".
 
-prolog         ==>     "push bp";
-                       "mov bp, sp".
+C_prolog               ==>     "push bp";
+                               "mov bp, sp".
 
-locals
-  $1 == 0      ==>     .
+C_locals
+  $1 == 0              ==>     .
 
-  $1 == 2      ==>     "push ax".
+  $1 == 2              ==>     "push ax".
 
-  $1 == 4      ==>     "push ax";
-                       "push ax".
+  $1 == 4              ==>     "push ax";
+                               "push ax".
 
-  default      ==>     "sub sp, $1".
+  default              ==>     "sub sp, $1".
index 3a69739..460e893 100644 (file)
@@ -353,9 +353,9 @@ C_cii               ==>     "   move.l (sp)+, d0";
 
 C_cuu          ==>     "lea    (8,sp),sp".
 
-C_ciu          ==>     C_cuu().
+C_ciu          ==>     "lea    (8,sp),sp".
 
-C_cui          ==>     C_cuu().
+C_cui          ==>     "lea    (8,sp),sp".
 
 C_cfi          ==>     "jsr (.cfi)";
                        "move.l (4, sp), d0";
@@ -856,8 +856,8 @@ C_trp               ==>     "jsr (.trp)".
 
 /*****************************************************************************/
 
-prolog         ==>     .
+C_prolog               ==>     .
 
-jump           ==>     "bra $1".
+C_jump                 ==>     "bra $1".
 
-locals         ==>     "link a6, #-$1".
+C_locals               ==>     "link a6, #-$1".
index 1666ecc..5543d95 100644 (file)
@@ -794,8 +794,8 @@ C_trp               ==>     "jsr (.trp)".
 
 /*****************************************************************************/
 
-prolog         ==>     .
+C_prolog               ==>     .
 
-jump           ==>     "bra $1".
+C_jump                         ==>     "bra $1".
 
-locals         ==>     "link a6, #-$1".
+C_locals               ==>     "link a6, #-$1".
index 8a59faa..1c2194c 100644 (file)
@@ -768,11 +768,11 @@ C_trp             ==>     "jsb .trp".
 
 /*****************************************************************************/
 
-prolog         ==>             text2( 0x0).
+C_prolog               ==>             text2( 0x0).
 
-jump           ==>             "jmp $1".
+C_jump                         ==>             "jmp $1".
 
-locals         
+C_locals               
   $1 == 0      ==>             .
   $1 == 4       ==>             "clrq -(sp)".
   $1 == 8       ==>             "clrq -(sp)".
index d0b5801..8dc6c5f 100644 (file)
@@ -17,7 +17,7 @@ arith l;
 
                symbol_definition( p);
                set_local_visible( p);
-               locals( l);
-               jump( extnd_start( B_procno));
+               C_locals( l);
+               C_jump( extnd_start( B_procno));
        }
 }
index 0412a9e..8e657b8 100644 (file)
@@ -9,7 +9,7 @@ int d;
        char *s;
        swtxt();
 
-       jump(extnd_part( d));
+       C_jump(extnd_part( d));
        symbol_definition( s = extnd_cont( d));
        set_local_visible( s);
 }
@@ -33,7 +33,7 @@ int d;
 {
        swtxt();
 
-       jump(extnd_cont( d));
+       C_jump(extnd_cont( d));
 }
 
 
index 49a6f0d..af5f3a5 100644 (file)
@@ -13,7 +13,7 @@ arith l;
 
        symbol_definition( extnd_name( s));
        B_procno++;
-       prolog();
-       locals(l);
+       C_prolog();
+       C_locals(l);
        B_locals_created = 1;
 }
index 58ce792..dd103f5 100644 (file)
@@ -18,9 +18,9 @@ char*s;
 
        symbol_definition( extnd_name( s));
        B_procno++;
-       prolog();
+       C_prolog();
        B_locals_created = 0;
-       jump( extnd_pro( B_procno));
+       C_jump( extnd_pro( B_procno));
        symbol_definition( ss = extnd_start( B_procno));
        set_local_visible( ss);
 }