comparison src/cpu/sparc/vm/graalGlobals_sparc.hpp @ 9934:0f7ca53be929

CR-806: Changes to build Graal for SPARC
author Morris Meyer <morris.meyer@oracle.com>
date Fri, 07 Jun 2013 15:43:00 -0400
parents a7a93887b4c4
children 22d3ee2fcb97
comparison
equal deleted inserted replaced
9933:78a1232be418 9934:0f7ca53be929
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 define_pd_global(intx, GraalSafepointPollOffset, 0 ); 34 #if !defined(COMPILER1) && !defined(COMPILER2)
35 define_pd_global(bool, BackgroundCompilation, true );
36 define_pd_global(bool, UseTLAB, true );
37 define_pd_global(bool, ResizeTLAB, true );
38 define_pd_global(bool, InlineIntrinsics, true );
39 define_pd_global(bool, PreferInterpreterNativeStubs, false);
40 define_pd_global(bool, TieredCompilation, false);
41 define_pd_global(intx, BackEdgeThreshold, 100000);
42
43 define_pd_global(intx, OnStackReplacePercentage, 933 );
44 define_pd_global(intx, FreqInlineSize, 325 );
45 define_pd_global(intx, NewSizeThreadIncrease, 4*K );
46 define_pd_global(uintx,MetaspaceSize, 12*M );
47 define_pd_global(bool, NeverActAsServerClassMachine, false);
48 define_pd_global(uint64_t,MaxRAM, 1ULL*G);
49 define_pd_global(bool, CICompileOSR, true );
50 define_pd_global(bool, ProfileTraps, true );
51 define_pd_global(bool, UseOnStackReplacement, true );
52 define_pd_global(intx, CompileThreshold, 10000);
53 define_pd_global(intx, InitialCodeCacheSize, 16*M );
54 define_pd_global(intx, ReservedCodeCacheSize, 64*M );
55 define_pd_global(bool, ProfileInterpreter, true );
56 define_pd_global(intx, CodeCacheExpansionSize, 64*K );
57 define_pd_global(uintx,CodeCacheMinBlockLength, 4);
58 define_pd_global(intx, TypeProfileWidth, 8);
59 define_pd_global(intx, MethodProfileWidth, 4);
60 #endif
35 61
36 #endif // CPU_SPARC_VM_GRAALGLOBALS_SPARC_HPP 62 #endif // CPU_SPARC_VM_GRAALGLOBALS_SPARC_HPP