X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fvm%2Fjit%2Fcode.cpp;h=b39852d2ed7a8f20024421d435153fc70bb2bb25;hb=342c9d8b43cb861e7eb7b9fd7e27efe824b57409;hp=a991de2895c9938070b835979e3b0d4f39c9430f;hpb=7a1c24acd4a25921caa4be2d4e7756e254fe659d;p=cacao.git diff --git a/src/vm/jit/code.cpp b/src/vm/jit/code.cpp index a991de289..b39852d2e 100644 --- a/src/vm/jit/code.cpp +++ b/src/vm/jit/code.cpp @@ -37,7 +37,6 @@ #include "vm/jit/code.hpp" #include "vm/jit/codegen-common.hpp" -#include "vm/jit/jitcache.hpp" #include "vm/jit/patcher-common.hpp" #include "vm/jit/methodtree.h" @@ -67,7 +66,6 @@ void code_init(void) The following fields are set in codeinfo: m patchers - cachedrefs RETURN VALUE: a new, initialized codeinfo, or @@ -85,11 +83,7 @@ codeinfo *code_codeinfo_new(methodinfo *m) patcher_list_create(code); -#if defined (ENABLE_JITCACHE) - jitcache_list_create(code); -#endif - -#if defined (ENABLE_STATISTICS) +#if defined(ENABLE_STATISTICS) if (opt_stat) size_codeinfo += sizeof(codeinfo); #endif @@ -240,10 +234,6 @@ void code_codeinfo_free(codeinfo *code) patcher_list_free(code); -#if defined(ENABLE_JITCACHE) - jitcache_list_free(code); -#endif - #if defined(ENABLE_REPLACEMENT) replace_free_replacement_points(code); #endif