comparison src/cpu/x86/vm/graalGlobals_x86.hpp @ 14124:7ad529321294

make: remove GRAALVM and introduce COMPILERGRAAL. fix client hosted-mode
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 10 Mar 2014 16:26:10 +0100
parents 800057208a2c
children 7986af88b782
comparison
equal deleted inserted replaced
14123:dc41eab09fe8 14124:7ad529321294
29 #include "utilities/macros.hpp" 29 #include "utilities/macros.hpp"
30 30
31 // Sets the default values for platform dependent flags used by the Graal compiler. 31 // Sets the default values for platform dependent flags used by the Graal compiler.
32 // (see graalGlobals.hpp) 32 // (see graalGlobals.hpp)
33 33
34 #if !defined(COMPILER2) 34 #ifdef COMPILERGRAAL
35 define_pd_global(bool, BackgroundCompilation, true ); 35 define_pd_global(bool, BackgroundCompilation, true );
36 define_pd_global(bool, UseTLAB, true ); 36 define_pd_global(bool, UseTLAB, true );
37 define_pd_global(bool, ResizeTLAB, true ); 37 define_pd_global(bool, ResizeTLAB, true );
38 define_pd_global(bool, InlineIntrinsics, true ); 38 define_pd_global(bool, InlineIntrinsics, true );
39 define_pd_global(bool, PreferInterpreterNativeStubs, false); 39 define_pd_global(bool, PreferInterpreterNativeStubs, false);
40 define_pd_global(bool, TieredCompilation, true); 40 define_pd_global(bool, TieredCompilation, trueInTiered);
41 define_pd_global(intx, BackEdgeThreshold, 100000); 41 define_pd_global(intx, BackEdgeThreshold, 100000);
42 42
43 define_pd_global(intx, OnStackReplacePercentage, 933 ); 43 define_pd_global(intx, OnStackReplacePercentage, 933 );
44 define_pd_global(intx, FreqInlineSize, 325 ); 44 define_pd_global(intx, FreqInlineSize, 325 );
45 define_pd_global(intx, NewSizeThreadIncrease, 4*K ); 45 define_pd_global(intx, NewSizeThreadIncrease, 4*K );
56 define_pd_global(intx, CodeCacheExpansionSize, 64*K ); 56 define_pd_global(intx, CodeCacheExpansionSize, 64*K );
57 define_pd_global(uintx,CodeCacheMinBlockLength, 4); 57 define_pd_global(uintx,CodeCacheMinBlockLength, 4);
58 define_pd_global(uintx, CodeCacheMinimumUseSpace, 400*K); 58 define_pd_global(uintx, CodeCacheMinimumUseSpace, 400*K);
59 define_pd_global(intx, TypeProfileWidth, 8); 59 define_pd_global(intx, TypeProfileWidth, 8);
60 define_pd_global(intx, MethodProfileWidth, 4); 60 define_pd_global(intx, MethodProfileWidth, 4);
61 #endif 61 #endif // COMPILERGRAAL
62 62
63 #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP 63 #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP