* Removed vm/tables.h include.
authortwisti <none@none>
Thu, 1 Dec 2005 19:47:56 +0000 (19:47 +0000)
committertwisti <none@none>
Thu, 1 Dec 2005 19:47:56 +0000 (19:47 +0000)
19 files changed:
src/cacaoh/headers.c
src/mm/boehm.c
src/native/vm/Constructor.c
src/native/vm/Field.c
src/native/vm/VMClass.c
src/native/vm/VMRuntime.c
src/native/vm/VMStackWalker.c
src/native/vm/VMSystemProperties.c
src/native/vm/VMThrowable.c
src/toolbox/logging.c
src/vm/jit/inline/inline.c
src/vm/jit/inline/parseRT.c
src/vm/jit/inline/parseRTstats.c
src/vm/jit/inline/parseXTA.c
src/vm/jit/inline/sets.c
src/vm/jit/parse.c
src/vm/jit/stacktrace.c
src/vm/jit/verify/typecheck.c
src/vm/jit/verify/typeinfo.c

index 2a4f82b443dcd337bf3fd95d78545d6129874268..f92933b1ffa37a4acadfb5da0864691752c7ea6b 100644 (file)
@@ -30,7 +30,7 @@
             Philipp Tomsich
             Christian Thalinger
 
-   $Id: headers.c 3807 2005-11-26 21:51:11Z edwin $
+   $Id: headers.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -42,6 +42,7 @@
 #include <string.h>
 
 #include "config.h"
+#include "vm/types.h"
 
 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
 # if defined(__DARWIN__)
@@ -60,7 +61,6 @@
 #include "vm/class.h"
 #include "vm/global.h"
 #include "vm/method.h"
-#include "vm/tables.h"
 #include "vm/loader.h"
 #include "vm/options.h"
 #include "vm/stringlocal.h"
index 15788d4c5922b8c3a4aec6fdc1fc7cef2b3dd6f3..839b9e704a749368b1b13367be97d69dc949d192 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: boehm.c 3691 2005-11-17 13:34:13Z twisti $
+   $Id: boehm.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -63,7 +63,6 @@
 #include "vm/global.h"
 #include "vm/loader.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/jit/asmpart.h"
 
 
index 5fe8f0a6e82bcf54b2919e34db9d740195a43a78..62d47dbaf6020f896a76d74056bb80b6f174bd2d 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Joseph Wenninger
             Christian Thalinger
 
-   $Id: Constructor.c 3450 2005-10-19 21:35:52Z twisti $
+   $Id: Constructor.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -51,7 +51,6 @@
 #include "vm/loader.h"
 #include "vm/options.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/jit/asmpart.h"
 
 
index ef9050c55052fbd2bc925ba225a1f989e07a754a..7ebf225e09ff9f70bc1182b0aecfc55c2f91c487 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Joseph Wenninger
             Christian Thalinger
 
-   $Id: Field.c 3801 2005-11-26 19:15:45Z twisti $
+   $Id: Field.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -60,7 +60,6 @@
 #include "vm/loader.h"
 #include "vm/resolve.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/utf8.h"
 #include "vm/jit/stacktrace.h"
 
index b7abd08522b06b8401da145c61470c1187ae5b58..fe87af8625064eee2a8155c29576c1c77e9d3cbe 100644 (file)
    Changes: Joseph Wenninger
             Christian Thalinger
 
-   $Id: VMClass.c 3801 2005-11-26 19:15:45Z twisti $
+   $Id: VMClass.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
 
 #include <string.h>
 
+#include "config.h"
 #include "vm/types.h"
 
 #include "mm/memory.h"
@@ -55,9 +56,8 @@
 #include "vm/global.h"
 #include "vm/initialize.h"
 #include "vm/loader.h"
-#include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/resolve.h"
+#include "vm/stringlocal.h"
 
 
 /*
index b7ffb119d6815a5d6ef6dc2fae0589cda13c0e1c..373b1df032cfd100189733e3e157e9a12bf429e6 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Joseph Wenninger
             Christian Thalinger
 
-   $Id: VMRuntime.c 3823 2005-12-01 18:20:34Z twisti $
+   $Id: VMRuntime.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -64,7 +64,6 @@
 #include "vm/exceptions.h"
 #include "vm/loader.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 
 
 /* this should work on BSD */
index fd5a57ee2647cb1f452783fd1be21cec6993c504..ce4cc5e717fbaa8a05a4d65829d3bbedf7106e58 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: 
 
-   $Id: VMStackWalker.c 3407 2005-10-12 08:22:50Z twisti $
+   $Id: VMStackWalker.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -42,7 +42,6 @@
 #include "vm/builtin.h"
 #include "vm/class.h"
 #include "vm/global.h"
-#include "vm/tables.h"
 
 
 /*
index f71c9523959442b7e857051e5e6bb4b978304b1b..461591055998332634a1b0c62e1c9823e426d9ea 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: VMSystemProperties.c 3666 2005-11-11 21:58:18Z twisti $
+   $Id: VMSystemProperties.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -39,6 +39,8 @@
 #include <time.h>
 
 #include "config.h"
+#include "vm/types.h"
+
 #include "cacao/cacao.h"
 #include "mm/memory.h"
 #include "native/jni.h"
@@ -51,7 +53,6 @@
 #include "vm/loader.h"
 #include "vm/options.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/jit/asmpart.h"
 
 
index 1d669d090234c395f4c3225e0572d0af58ca5237..b06f0692cdd9139535dc19ae2c98cee930bed84e 100644 (file)
 
    Changes: Christian Thalinger
 
-   $Id: VMThrowable.c 3158 2005-09-10 13:28:19Z twisti $
+   $Id: VMThrowable.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
 
 #include <assert.h>
 
+#include "config.h"
+#include "vm/types.h"
+
 #include "native/jni.h"
 #include "native/native.h"
 #include "native/include/java_lang_Class.h"
 #include "native/include/java_lang_VMThrowable.h"
 #include "vm/builtin.h"
 #include "vm/class.h"
+#include "vm/exceptions.h"
 #include "vm/loader.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
-#include "vm/jit/asmpart.h"
 #include "vm/jit/stacktrace.h"
-#include "vm/exceptions.h"
 
 
 /*
index e3c6d408dde3ef72964f55c834bcb79f02f14ba1..0a61e01fe21b2143dffa20a8adc771e1c51f8607 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: logging.c 3183 2005-09-15 20:07:37Z twisti $
+   $Id: logging.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
 #include <string.h>
 
 #include "config.h"
+#include "vm/types.h"
+
 #include "mm/memory.h"
 #include "toolbox/logging.h"
 #include "toolbox/util.h"
 #include "vm/global.h"
-#include "vm/tables.h"
 #include "vm/statistics.h"
 
 #if defined(USE_THREADS)
index efc99bfd09037108d0289f704b1b367ab36c20db..8f1fdfe62c77127fe0ecbb782f7d9ef81e532090 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Dieter Thuernbeck
 
-   $Id: inline.c 3365 2005-10-06 08:42:58Z edwin $
+   $Id: inline.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -66,7 +66,6 @@ Method to be inlined must:
 #include "vm/global.h"
 #include "vm/linker.h"
 #include "vm/loader.h"
-#include "vm/tables.h"
 #include "vm/options.h"
 #include "vm/resolve.h"
 #include "vm/statistics.h"
index 98b91236b6055f0a7b04aff8991704f031d0f55b..cf643be2ad4add43678a9ca6903c97c7fbe1469a 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: parseRT.c 3365 2005-10-06 08:42:58Z edwin $
+   $Id: parseRT.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -77,7 +77,6 @@ Results: (currently) with -stat see # methods marked used
 #include "vm/resolve.h"
 #include "vm/options.h"
 #include "vm/statistics.h"
-#include "vm/tables.h"
 #include "vm/jit/jit.h"
 #include "vm/jit/parse.h"
 #include "vm/jit/inline/parseRT.h"
index 3b6f0532cd49d6076646fd26ac7ba60c93876390..ddd84a1554239b26348876f68e9e8a28856a1c0f 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Carolyn Oates
 
-   $Id: parseRTstats.c 3368 2005-10-06 09:40:40Z edwin $
+   $Id: parseRTstats.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -38,7 +38,6 @@
 #include "vm/loader.h"
 #include "vm/options.h"
 #include "vm/statistics.h"
-#include "vm/tables.h"
 #include "vm/jit/inline/parseRT.h"
 #include "vm/jit/inline/parseRTstats.h"
 #include "vm/jit/inline/parseRTprint.h"
index 2d2d41b2f7f1bd91fc4664d0bdf57e21b374d397..24c5c917c2e8101abeb31b552896905038f9fa1d 100644 (file)
@@ -42,7 +42,7 @@ Now wondering if there is a memory corruption because XTA seems to finish ok
 
    Changes: Christian Thalinger
 
-   $Id: parseXTA.c 3365 2005-10-06 08:42:58Z edwin $
+   $Id: parseXTA.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -134,7 +134,6 @@ Results: (currently) with -stat see # methods marked used
 #include "vm/resolve.h"
 #include "vm/options.h"
 #include "vm/statistics.h"
-#include "vm/tables.h"
 #include "vm/jit/jit.h"
 #include "vm/jit/parse.h"
 #include "vm/jit/inline/parseXTA.h"
index 6756aba2d6c326d79f7f794ee16573ffd624ee3d..eb80dfd94493e75e50b492e765b6da73fb38e7d4 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Carolyn Oates
 
-   $Id: sets.c 3225 2005-09-19 13:58:44Z twisti $
+   $Id: sets.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -39,7 +39,6 @@
 #include "vm/global.h"
 #include "vm/linker.h"
 #include "vm/loader.h"
-#include "vm/tables.h"
 #include "vm/class.h"
 #include "vm/jit/inline/sets.h"
 
index 8fafead3fe722e90e0a8203266e49908f44d79f3..253994df432e508353e5a59c703524c6b42bedf5 100644 (file)
@@ -31,7 +31,7 @@
             Joseph Wenninger
             Christian Thalinger
 
-   $Id: parse.c 3801 2005-11-26 19:15:45Z twisti $
+   $Id: parse.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -55,7 +55,6 @@
 #include "vm/options.h"
 #include "vm/statistics.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/jit/asmpart.h"
 #include "vm/jit/jit.h"
 #include "vm/jit/parse.h"
index 2a318fc87af78185a2972d4de3ca2c089ab3c478..4c8bb664d4cbdb4c1e2b8cd68124cfd92ce8951c 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: stacktrace.c 3801 2005-11-26 19:15:45Z twisti $
+   $Id: stacktrace.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -54,7 +54,6 @@
 #include "vm/loader.h"
 #include "vm/options.h"
 #include "vm/stringlocal.h"
-#include "vm/tables.h"
 #include "vm/jit/asmpart.h"
 #include "vm/jit/codegen.inc.h"
 #include "vm/jit/methodheader.h"
index b21a56833241142753ed3a9dc6c0318a1881c086..35b164e1cbcb19c65ce4f617d8926f4475526014 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: typecheck.c 3811 2005-11-28 16:23:40Z edwin $
+   $Id: typecheck.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -178,7 +178,6 @@ of the typeinfo of the stack slot.
 #include "vm/jit/patcher.h"
 #include "vm/loader.h"
 #include "vm/options.h"
-#include "vm/tables.h"
 #include "vm/jit/jit.h"
 #include "vm/jit/stack.h"
 #include "vm/access.h"
index eed1e065cd4164ce0ec7e5054b4631fc5ce5e362..1981994fab2feae308f1eece451296a2291407d8 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Edwin Steiner
 
-   $Id: typeinfo.c 3642 2005-11-08 19:01:17Z edwin $
+   $Id: typeinfo.c 3829 2005-12-01 19:47:56Z twisti $
 
 */
 
@@ -37,7 +37,6 @@
 #include "toolbox/logging.h"
 #include "vm/class.h"
 #include "vm/loader.h"
-#include "vm/tables.h"
 #include "vm/jit/jit.h"
 #include "vm/jit/verify/typeinfo.h"
 #include "vm/descriptor.h"