comparison src/cpu/x86/vm/c1_globals_x86.hpp @ 7062:8c5333c80cfd

increased CompileThreshold to increase reliability of profiling information increased InitialCodeCacheSize to fit the bootstrapping added flag -XX:GraalClassPath to allow providing a .jar or .zip file that contains all Graal classes added support for the flag -XX:TraceCompilationPolicy to the Graal-specific compilation policy
author Christian Haeubl <haeubl@ssw.jku.at>
date Thu, 15 Nov 2012 11:40:50 +0100
parents fd71ca8c5f88
children 7d815d842ee0
comparison
equal deleted inserted replaced
6717:5bbe9618118e 7062:8c5333c80cfd
50 define_pd_global(bool, CICompileOSR, true ); 50 define_pd_global(bool, CICompileOSR, true );
51 51
52 #ifdef GRAAL 52 #ifdef GRAAL
53 define_pd_global(bool, ProfileTraps, true ); 53 define_pd_global(bool, ProfileTraps, true );
54 define_pd_global(bool, UseOnStackReplacement, true); 54 define_pd_global(bool, UseOnStackReplacement, true);
55 define_pd_global(intx, CompileThreshold, 2500 ); 55 define_pd_global(intx, CompileThreshold, 10000 );
56 define_pd_global(intx, InitialCodeCacheSize, 4*M ); 56 define_pd_global(intx, InitialCodeCacheSize, 16*M );
57 define_pd_global(intx, ReservedCodeCacheSize, 64*M ); 57 define_pd_global(intx, ReservedCodeCacheSize, 64*M );
58 define_pd_global(bool, ProfileInterpreter, true ); 58 define_pd_global(bool, ProfileInterpreter, true );
59 define_pd_global(intx, CodeCacheExpansionSize, 64*K ); 59 define_pd_global(intx, CodeCacheExpansionSize, 64*K );
60 define_pd_global(uintx,CodeCacheMinBlockLength, 4); 60 define_pd_global(uintx,CodeCacheMinBlockLength, 4);
61 define_pd_global(intx, TypeProfileWidth, 8); 61 define_pd_global(intx, TypeProfileWidth, 8);