- added header includes
authortwisti <none@none>
Tue, 29 Mar 2005 22:18:30 +0000 (22:18 +0000)
committertwisti <none@none>
Tue, 29 Mar 2005 22:18:30 +0000 (22:18 +0000)
- moved function prototypes to codegen.inc.h: createcompilerstub,
  createnativestub, removecompilerstub, removenativestub

src/vm/jit/jit.h

index 2cb27f0df645d18191b6b9083a7a76dc10f986d7..2e9ec089a4431a84c749754a8e15f862968cc51e 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: jit.h 2081 2005-03-25 13:45:26Z edwin $
+   $Id: jit.h 2124 2005-03-29 22:18:30Z twisti $
 
 */
 
@@ -47,8 +47,9 @@ typedef struct subroutineinfo subroutineinfo;
 
 
 #include "toolbox/chain.h"
+#include "vm/class.h"
 #include "vm/global.h"
-#include "vm/builtin.h"
+#include "vm/method.h"
 #include "vm/jit/codegen.inc.h"
 #include "vm/jit/verify/typeinfo.h"
 
@@ -849,12 +850,6 @@ void jit_close();                       /* compiler finalisation              */
 
 void compile_all_class_methods(classinfo *c);
 
-u1 *createcompilerstub(methodinfo *m);
-u1 *createnativestub(functionptr f, methodinfo *m);
-
-void removecompilerstub(u1 *stub);
-void removenativestub(u1 *stub);
-
 #endif /* _JIT_H */