author | gziemski |
Tue, 10 May 2016 12:10:21 -0500 | |
changeset 38273 | 2634194d7555 |
parent 38144 | 0976c0c5c5d3 |
child 40023 | 49d647eeb7f0 |
permissions | -rw-r--r-- |
29183 | 1 |
/* |
36099
bb0cc62ab037
8147379: Investigate if ConvertSleepToYield still should be false by default on Sparc
dholmes
parents:
35148
diff
changeset
|
2 |
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. |
31381 | 3 |
* Copyright (c) 2015, Red Hat Inc. All rights reserved. |
29183 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#ifndef CPU_AARCH64_VM_GLOBALS_AARCH64_HPP |
|
27 |
#define CPU_AARCH64_VM_GLOBALS_AARCH64_HPP |
|
28 |
||
29 |
#include "utilities/globalDefinitions.hpp" |
|
30 |
#include "utilities/macros.hpp" |
|
31 |
||
32 |
// Sets the default values for platform dependent flags used by the runtime system. |
|
33 |
// (see globals.hpp) |
|
34 |
||
35 |
define_pd_global(bool, ShareVtableStubs, true); |
|
36 |
define_pd_global(bool, NeedsDeoptSuspend, false); // only register window machines need this |
|
37 |
||
38 |
define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks |
|
39 |
define_pd_global(bool, TrapBasedNullChecks, false); |
|
40 |
define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs past to check cast |
|
41 |
||
42 |
define_pd_global(intx, CodeEntryAlignment, 64); |
|
43 |
define_pd_global(intx, OptoLoopAlignment, 16); |
|
44 |
define_pd_global(intx, InlineFrequencyCount, 100); |
|
45 |
||
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
46 |
#define DEFAULT_STACK_YELLOW_PAGES (2) |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
47 |
#define DEFAULT_STACK_RED_PAGES (1) |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
48 |
#define DEFAULT_STACK_SHADOW_PAGES (4 DEBUG_ONLY(+5)) |
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33628
diff
changeset
|
49 |
#define DEFAULT_STACK_RESERVED_PAGES (0) |
29183 | 50 |
|
38079
fd24ad51113a
8154379: MIN_STACK_SHADOW_PAGES should equal DEFAULT_STACK_SHADOW_PAGES on aarch64
cjplummer
parents:
38037
diff
changeset
|
51 |
#define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES |
fd24ad51113a
8154379: MIN_STACK_SHADOW_PAGES should equal DEFAULT_STACK_SHADOW_PAGES on aarch64
cjplummer
parents:
38037
diff
changeset
|
52 |
#define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES |
fd24ad51113a
8154379: MIN_STACK_SHADOW_PAGES should equal DEFAULT_STACK_SHADOW_PAGES on aarch64
cjplummer
parents:
38037
diff
changeset
|
53 |
#define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES |
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33628
diff
changeset
|
54 |
#define MIN_STACK_RESERVED_PAGES (0) |
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
55 |
|
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
56 |
define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES); |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
57 |
define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES); |
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
58 |
define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES); |
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33628
diff
changeset
|
59 |
define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES); |
29183 | 60 |
|
61 |
define_pd_global(bool, RewriteBytecodes, true); |
|
30889
325a4db0d161
8081289: aarch64: add support for RewriteFrequentPairs in interpreter
enevill
parents:
30429
diff
changeset
|
62 |
define_pd_global(bool, RewriteFrequentPairs, true); |
29183 | 63 |
|
64 |
define_pd_global(bool, UseMembar, true); |
|
65 |
||
30305
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
29183
diff
changeset
|
66 |
define_pd_global(bool, PreserveFramePointer, false); |
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
29183
diff
changeset
|
67 |
|
29183 | 68 |
// GC Ergo Flags |
69 |
define_pd_global(uintx, CMSYoungGenPerWorker, 64*M); // default max size of CMS young gen, per GC worker thread |
|
70 |
||
71 |
define_pd_global(uintx, TypeProfileLevel, 111); |
|
72 |
||
33628 | 73 |
// No performance work done here yet. |
74 |
define_pd_global(bool, CompactStrings, false); |
|
75 |
||
29183 | 76 |
// avoid biased locking while we are bootstrapping the aarch64 build |
77 |
define_pd_global(bool, UseBiasedLocking, false); |
|
78 |
||
38037
31c22b526d30
8153713: aarch64: improve short array clearing using store pair
fyang
parents:
36564
diff
changeset
|
79 |
// Clear short arrays bigger than one word in an arch-specific way |
31c22b526d30
8153713: aarch64: improve short array clearing using store pair
fyang
parents:
36564
diff
changeset
|
80 |
define_pd_global(intx, InitArrayShortSize, BytesPerLong); |
36554
a7eb9ee4680c
8146801: Allocating short arrays of non-constant size is slow
shade
parents:
36103
diff
changeset
|
81 |
|
29183 | 82 |
#if defined(COMPILER1) || defined(COMPILER2) |
83 |
define_pd_global(intx, InlineSmallCode, 1000); |
|
84 |
#endif |
|
85 |
||
86 |
#ifdef BUILTIN_SIM |
|
87 |
#define UseBuiltinSim true |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
88 |
#define ARCH_FLAGS(develop, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
89 |
product, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
90 |
diagnostic, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
91 |
experimental, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
92 |
notproduct, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
93 |
range, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
94 |
constraint, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
95 |
writeable) \ |
29183 | 96 |
\ |
97 |
product(bool, NotifySimulator, UseBuiltinSim, \ |
|
98 |
"tell the AArch64 sim where we are in method code") \ |
|
99 |
\ |
|
100 |
product(bool, UseSimulatorCache, false, \ |
|
101 |
"tell sim to cache memory updates until exclusive op occurs") \ |
|
102 |
\ |
|
103 |
product(bool, DisableBCCheck, true, \ |
|
104 |
"tell sim not to invoke bccheck callback") \ |
|
105 |
\ |
|
106 |
product(bool, NearCpool, true, \ |
|
107 |
"constant pool is close to instructions") \ |
|
108 |
\ |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
109 |
product(bool, UseBarriersForVolatile, false, \ |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
110 |
"Use memory barriers to implement volatile accesses") \ |
29183 | 111 |
\ |
112 |
product(bool, UseCRC32, false, \ |
|
113 |
"Use CRC32 instructions for CRC32 computation") \ |
|
36562
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
114 |
\ |
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
115 |
product(bool, UseLSE, false, \ |
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
116 |
"Use LSE instructions") \ |
29183 | 117 |
|
118 |
// Don't attempt to use Neon on builtin sim until builtin sim supports it |
|
119 |
#define UseCRC32 false |
|
36564
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
120 |
#define UseSIMDForMemoryOps false |
29183 | 121 |
|
122 |
#else |
|
123 |
#define UseBuiltinSim false |
|
124 |
#define NotifySimulator false |
|
125 |
#define UseSimulatorCache false |
|
126 |
#define DisableBCCheck true |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
127 |
#define ARCH_FLAGS(develop, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
128 |
product, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
129 |
diagnostic, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
130 |
experimental, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
131 |
notproduct, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
132 |
range, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
133 |
constraint, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
134 |
writeable) \ |
29183 | 135 |
\ |
136 |
product(bool, NearCpool, true, \ |
|
137 |
"constant pool is close to instructions") \ |
|
138 |
\ |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
139 |
product(bool, UseBarriersForVolatile, false, \ |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
140 |
"Use memory barriers to implement volatile accesses") \ |
29183 | 141 |
product(bool, UseNeon, false, \ |
142 |
"Use Neon for CRC32 computation") \ |
|
143 |
product(bool, UseCRC32, false, \ |
|
144 |
"Use CRC32 instructions for CRC32 computation") \ |
|
36564
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
145 |
product(bool, UseSIMDForMemoryOps, false, \ |
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
146 |
"Use SIMD instructions in generated memory move code") \ |
36562
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
147 |
product(bool, UseLSE, false, \ |
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
148 |
"Use LSE instructions") \ |
38143 | 149 |
product(bool, UseBlockZeroing, true, \ |
150 |
"Use DC ZVA for block zeroing") \ |
|
151 |
product(intx, BlockZeroingLowLimit, 256, \ |
|
152 |
"Minimum size in bytes when block zeroing will be used") \ |
|
153 |
range(1, max_jint) \ |
|
29183 | 154 |
product(bool, TraceTraps, false, "Trace all traps the signal handler") |
155 |
||
156 |
#endif |
|
157 |
||
158 |
||
159 |
#endif // CPU_AARCH64_VM_GLOBALS_AARCH64_HPP |