comparison src/cpu/x86/vm/graalGlobals_x86.hpp @ 7233:57ccc2bb5868

C1 build bugfix
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 14 Dec 2012 16:23:44 +0100
parents 8a3efb8c831d
children c76b43ed5089
comparison
equal deleted inserted replaced
7232:310a68c63b69 7233:57ccc2bb5868
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 #ifndef COMPILER2
35 define_pd_global(intx, TypeProfileWidth, 8);
36 #endif
37
38 define_pd_global(intx, GraalSafepointPollOffset, 256 ); 34 define_pd_global(intx, GraalSafepointPollOffset, 256 );
39 35
40 #if !defined(COMPILER1) && !defined(COMPILER2) 36 #if !defined(COMPILER1) && !defined(COMPILER2)
41 define_pd_global(bool, BackgroundCompilation, true ); 37 define_pd_global(bool, BackgroundCompilation, true );
42 define_pd_global(bool, UseTLAB, true ); 38 define_pd_global(bool, UseTLAB, true );
59 define_pd_global(intx, InitialCodeCacheSize, 16*M ); 55 define_pd_global(intx, InitialCodeCacheSize, 16*M );
60 define_pd_global(intx, ReservedCodeCacheSize, 64*M ); 56 define_pd_global(intx, ReservedCodeCacheSize, 64*M );
61 define_pd_global(bool, ProfileInterpreter, true ); 57 define_pd_global(bool, ProfileInterpreter, true );
62 define_pd_global(intx, CodeCacheExpansionSize, 64*K ); 58 define_pd_global(intx, CodeCacheExpansionSize, 64*K );
63 define_pd_global(uintx,CodeCacheMinBlockLength, 4); 59 define_pd_global(uintx,CodeCacheMinBlockLength, 4);
60 define_pd_global(intx, TypeProfileWidth, 8);
64 #endif 61 #endif
65 62
66 #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP 63 #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP