hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp
changeset 33222 e0a340f4ab6e
parent 31783 dbc24ca25ee4
child 33471 e70067b81b0b
equal deleted inserted replaced
33219:08f642d9214f 33222:e0a340f4ab6e
    53 define_pd_global(intx, CodeEntryAlignment,       16);
    53 define_pd_global(intx, CodeEntryAlignment,       16);
    54 #endif // COMPILER2
    54 #endif // COMPILER2
    55 define_pd_global(intx, OptoLoopAlignment,        16);
    55 define_pd_global(intx, OptoLoopAlignment,        16);
    56 define_pd_global(intx, InlineFrequencyCount,     100);
    56 define_pd_global(intx, InlineFrequencyCount,     100);
    57 
    57 
    58 define_pd_global(intx, StackYellowPages, 2);
    58 #define DEFAULT_STACK_YELLOW_PAGES (2)
    59 define_pd_global(intx, StackRedPages, 1);
    59 #define DEFAULT_STACK_RED_PAGES (1)
       
    60 #define DEFAULT_STACK_SHADOW_PAGES (4 DEBUG_ONLY(+5))
    60 
    61 
    61 define_pd_global(intx, StackShadowPages, 4 DEBUG_ONLY(+5));
    62 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
       
    63 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
       
    64 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
       
    65 
       
    66 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
       
    67 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
       
    68 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
    62 
    69 
    63 define_pd_global(bool, RewriteBytecodes,     true);
    70 define_pd_global(bool, RewriteBytecodes,     true);
    64 define_pd_global(bool, RewriteFrequentPairs, true);
    71 define_pd_global(bool, RewriteFrequentPairs, true);
    65 
    72 
    66 define_pd_global(bool, UseMembar,            true);
    73 define_pd_global(bool, UseMembar,            true);