* src/vm/jit/show.h (show_variable): Made global.
authoredwin <none@none>
Fri, 6 Oct 2006 20:09:28 +0000 (20:09 +0000)
committeredwin <none@none>
Fri, 6 Oct 2006 20:09:28 +0000 (20:09 +0000)
(show_variable_array): Likewise.

* src/vm/jit/show.c (show_variable): Likewise.
(show_variable_array): Likewise.

src/vm/jit/show.c
src/vm/jit/show.h

index 517d5d30be96222fc03cef4f36c535a69315c17c..84b57c2aa04087cea169caa8d7ef181658851f29 100644 (file)
@@ -68,9 +68,7 @@ static java_objectheader *show_global_lock;
 /* forward declarations *******************************************************/
 
 #if !defined(NDEBUG)
-static void show_variable_array(jitdata *jd, s4 *vars, int n, int stage);
 static void show_allocation(s4 type, s4 flags, s4 regoff);
-static void show_variable(jitdata *jd, s4 index, int stage);
 #endif
 
 
@@ -699,7 +697,7 @@ static void show_allocation(s4 type, s4 flags, s4 regoff)
 #endif
 }
 
-static void show_variable(jitdata *jd, s4 index, int stage)
+void show_variable(jitdata *jd, s4 index, int stage)
 {
        char type;
        char kind;
@@ -748,7 +746,7 @@ static void show_variable(jitdata *jd, s4 index, int stage)
        fflush(stdout);
 }
 
-static void show_variable_array(jitdata *jd, s4 *vars, int n, int stage)
+void show_variable_array(jitdata *jd, s4 *vars, int n, int stage)
 {
        int i;
 
index 91a9941d8412e9c23360f97636f5eebbb0e71868..4eb3656a7980ece7514662f1693a16c6218f3953 100644 (file)
@@ -65,6 +65,8 @@ bool show_init(void);
 void show_method(jitdata *jd, int stage);
 void show_basicblock(jitdata *jd, basicblock *bptr, int stage);
 void show_icmd(jitdata *jd, instruction *iptr, bool deadcode, int stage);
+void show_variable(jitdata *jd, s4 index, int stage);
+void show_variable_array(jitdata *jd, s4 *vars, int n, int stage);
 #endif /* !defined(NDEBUG) */
 
 #endif /* _SHOW_H */