src/hotspot/cpu/x86/globals_x86.hpp
changeset 47799 1772ebf07d1f
parent 47216 71c04702a3d5
child 47821 0cd18aa4f7b6
equal deleted inserted replaced
47798:9fe9292f5931 47799:1772ebf07d1f
    44 // #ifdef to minimize the change as it's late in Mantis. -- FIXME.
    44 // #ifdef to minimize the change as it's late in Mantis. -- FIXME.
    45 // c1 doesn't have this problem because the fix to 4858033 assures us
    45 // c1 doesn't have this problem because the fix to 4858033 assures us
    46 // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns
    46 // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns
    47 // the uep and the vep doesn't get real alignment but just slops on by
    47 // the uep and the vep doesn't get real alignment but just slops on by
    48 // only assured that the entry instruction meets the 5 byte size requirement.
    48 // only assured that the entry instruction meets the 5 byte size requirement.
    49 #if defined(COMPILER2) || INCLUDE_JVMCI
    49 #if COMPILER2_OR_JVMCI
    50 define_pd_global(intx, CodeEntryAlignment,       32);
    50 define_pd_global(intx, CodeEntryAlignment,       32);
    51 #else
    51 #else
    52 define_pd_global(intx, CodeEntryAlignment,       16);
    52 define_pd_global(intx, CodeEntryAlignment,       16);
    53 #endif // COMPILER2
    53 #endif // COMPILER2_OR_JVMCI
    54 define_pd_global(intx, OptoLoopAlignment,        16);
    54 define_pd_global(intx, OptoLoopAlignment,        16);
    55 define_pd_global(intx, InlineFrequencyCount,     100);
    55 define_pd_global(intx, InlineFrequencyCount,     100);
    56 define_pd_global(intx, InlineSmallCode,          1000);
    56 define_pd_global(intx, InlineSmallCode,          1000);
    57 
    57 
    58 #define DEFAULT_STACK_YELLOW_PAGES (NOT_WINDOWS(2) WINDOWS_ONLY(3))
    58 #define DEFAULT_STACK_YELLOW_PAGES (NOT_WINDOWS(2) WINDOWS_ONLY(3))