src/hotspot/cpu/x86/c1_globals_x86.hpp
changeset 48807 fd8ccb37fce9
parent 47216 71c04702a3d5
child 53244 9807daeb47c4
equal deleted inserted replaced
48806:51fc22e5fb00 48807:fd8ccb37fce9
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    43 define_pd_global(intx, CompileThreshold,               1500 );
    43 define_pd_global(intx, CompileThreshold,               1500 );
    44 
    44 
    45 define_pd_global(intx,   OnStackReplacePercentage,     933  );
    45 define_pd_global(intx,   OnStackReplacePercentage,     933  );
    46 define_pd_global(intx,   FreqInlineSize,               325  );
    46 define_pd_global(intx,   FreqInlineSize,               325  );
    47 define_pd_global(size_t, NewSizeThreadIncrease,        4*K  );
    47 define_pd_global(size_t, NewSizeThreadIncrease,        4*K  );
    48 define_pd_global(intx, InitialCodeCacheSize,           160*K);
    48 define_pd_global(uintx,  InitialCodeCacheSize,         160*K);
    49 define_pd_global(intx, ReservedCodeCacheSize,          32*M );
    49 define_pd_global(uintx,  ReservedCodeCacheSize,        32*M );
    50 define_pd_global(intx, NonProfiledCodeHeapSize,        13*M );
    50 define_pd_global(uintx,  NonProfiledCodeHeapSize,      13*M );
    51 define_pd_global(intx, ProfiledCodeHeapSize,           14*M );
    51 define_pd_global(uintx,  ProfiledCodeHeapSize,         14*M );
    52 define_pd_global(intx, NonNMethodCodeHeapSize,         5*M  );
    52 define_pd_global(uintx,  NonNMethodCodeHeapSize,       5*M  );
    53 define_pd_global(bool,   ProfileInterpreter,           false);
    53 define_pd_global(bool,   ProfileInterpreter,           false);
    54 define_pd_global(intx, CodeCacheExpansionSize,         32*K );
    54 define_pd_global(uintx,  CodeCacheExpansionSize,       32*K );
    55 define_pd_global(uintx, CodeCacheMinBlockLength,       1    );
    55 define_pd_global(uintx,  CodeCacheMinBlockLength,      1    );
    56 define_pd_global(uintx, CodeCacheMinimumUseSpace,      400*K);
    56 define_pd_global(uintx,  CodeCacheMinimumUseSpace,     400*K);
    57 define_pd_global(size_t, MetaspaceSize,                12*M );
    57 define_pd_global(size_t, MetaspaceSize,                12*M );
    58 define_pd_global(bool,   NeverActAsServerClassMachine, true );
    58 define_pd_global(bool,   NeverActAsServerClassMachine, true );
    59 define_pd_global(uint64_t, MaxRAM,                    1ULL*G);
    59 define_pd_global(uint64_t, MaxRAM,                    1ULL*G);
    60 define_pd_global(bool,   CICompileOSR,                 true );
    60 define_pd_global(bool,   CICompileOSR,                 true );
    61 #endif // !TIERED
    61 #endif // !TIERED