comparison src/cpu/sparc/vm/graalGlobals_sparc.hpp @ 14107:800057208a2c

enable C1 + Graal tiered
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Thu, 06 Mar 2014 17:11:39 -0800
parents 22d3ee2fcb97
children 7ad529321294
comparison
equal deleted inserted replaced
14106:ca37cb080dad 14107:800057208a2c
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(COMPILER1) && !defined(COMPILER2) 34 #if !defined(COMPILER2)
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, false); 40 define_pd_global(bool, TieredCompilation, true);
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 );