author | mdoerr |
Thu, 15 Dec 2016 14:24:04 +0100 | |
changeset 42884 | 05815125c157 |
parent 42062 | 473286891dd8 |
child 43439 | 5e03c9ba74f3 |
child 43290 | eec57137c0a6 |
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 |
||
42062 | 42 |
define_pd_global(uintx, CodeCacheSegmentSize, 64 TIERED_ONLY(+64)); // Tiered compilation has large code-entry alignment. |
29183 | 43 |
define_pd_global(intx, CodeEntryAlignment, 64); |
44 |
define_pd_global(intx, OptoLoopAlignment, 16); |
|
45 |
define_pd_global(intx, InlineFrequencyCount, 100); |
|
46 |
||
33222
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
47 |
#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
|
48 |
#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
|
49 |
#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
|
50 |
#define DEFAULT_STACK_RESERVED_PAGES (0) |
29183 | 51 |
|
38079
fd24ad51113a
8154379: MIN_STACK_SHADOW_PAGES should equal DEFAULT_STACK_SHADOW_PAGES on aarch64
cjplummer
parents:
38037
diff
changeset
|
52 |
#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
|
53 |
#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
|
54 |
#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
|
55 |
#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
|
56 |
|
e0a340f4ab6e
8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents:
31783
diff
changeset
|
57 |
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
|
58 |
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
|
59 |
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
|
60 |
define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES); |
29183 | 61 |
|
62 |
define_pd_global(bool, RewriteBytecodes, true); |
|
30889
325a4db0d161
8081289: aarch64: add support for RewriteFrequentPairs in interpreter
enevill
parents:
30429
diff
changeset
|
63 |
define_pd_global(bool, RewriteFrequentPairs, true); |
29183 | 64 |
|
65 |
define_pd_global(bool, UseMembar, true); |
|
66 |
||
30305
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
29183
diff
changeset
|
67 |
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
|
68 |
|
29183 | 69 |
// GC Ergo Flags |
70 |
define_pd_global(uintx, CMSYoungGenPerWorker, 64*M); // default max size of CMS young gen, per GC worker thread |
|
71 |
||
72 |
define_pd_global(uintx, TypeProfileLevel, 111); |
|
73 |
||
40065 | 74 |
define_pd_global(bool, CompactStrings, true); |
29183 | 75 |
|
38037
31c22b526d30
8153713: aarch64: improve short array clearing using store pair
fyang
parents:
36564
diff
changeset
|
76 |
// 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
|
77 |
define_pd_global(intx, InitArrayShortSize, BytesPerLong); |
36554
a7eb9ee4680c
8146801: Allocating short arrays of non-constant size is slow
shade
parents:
36103
diff
changeset
|
78 |
|
29183 | 79 |
#if defined(COMPILER1) || defined(COMPILER2) |
80 |
define_pd_global(intx, InlineSmallCode, 1000); |
|
81 |
#endif |
|
82 |
||
83 |
#ifdef BUILTIN_SIM |
|
84 |
#define UseBuiltinSim true |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
85 |
#define ARCH_FLAGS(develop, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
86 |
product, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
87 |
diagnostic, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
88 |
experimental, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
89 |
notproduct, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
90 |
range, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
91 |
constraint, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
92 |
writeable) \ |
29183 | 93 |
\ |
94 |
product(bool, NotifySimulator, UseBuiltinSim, \ |
|
95 |
"tell the AArch64 sim where we are in method code") \ |
|
96 |
\ |
|
97 |
product(bool, UseSimulatorCache, false, \ |
|
98 |
"tell sim to cache memory updates until exclusive op occurs") \ |
|
99 |
\ |
|
100 |
product(bool, DisableBCCheck, true, \ |
|
101 |
"tell sim not to invoke bccheck callback") \ |
|
102 |
\ |
|
103 |
product(bool, NearCpool, true, \ |
|
104 |
"constant pool is close to instructions") \ |
|
105 |
\ |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
106 |
product(bool, UseBarriersForVolatile, false, \ |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
107 |
"Use memory barriers to implement volatile accesses") \ |
29183 | 108 |
\ |
109 |
product(bool, UseCRC32, false, \ |
|
110 |
"Use CRC32 instructions for CRC32 computation") \ |
|
36562
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
111 |
\ |
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
112 |
product(bool, UseLSE, false, \ |
4d1e93624d6a
8150394: aarch64: add support for 8.1 LSE CAS instructions
enevill
parents:
36554
diff
changeset
|
113 |
"Use LSE instructions") \ |
29183 | 114 |
|
115 |
// Don't attempt to use Neon on builtin sim until builtin sim supports it |
|
116 |
#define UseCRC32 false |
|
36564
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
117 |
#define UseSIMDForMemoryOps false |
40023
49d647eeb7f0
8159063: aarch64: optimise unaligned array copy long
enevill
parents:
38273
diff
changeset
|
118 |
#define AvoidUnalignedAcesses false |
29183 | 119 |
|
120 |
#else |
|
121 |
#define UseBuiltinSim false |
|
122 |
#define NotifySimulator false |
|
123 |
#define UseSimulatorCache false |
|
124 |
#define DisableBCCheck true |
|
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
125 |
#define ARCH_FLAGS(develop, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
126 |
product, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
127 |
diagnostic, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
128 |
experimental, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
129 |
notproduct, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
130 |
range, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
131 |
constraint, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38144
diff
changeset
|
132 |
writeable) \ |
29183 | 133 |
\ |
134 |
product(bool, NearCpool, true, \ |
|
135 |
"constant pool is close to instructions") \ |
|
136 |
\ |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
137 |
product(bool, UseBarriersForVolatile, false, \ |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
30305
diff
changeset
|
138 |
"Use memory barriers to implement volatile accesses") \ |
29183 | 139 |
product(bool, UseNeon, false, \ |
140 |
"Use Neon for CRC32 computation") \ |
|
141 |
product(bool, UseCRC32, false, \ |
|
142 |
"Use CRC32 instructions for CRC32 computation") \ |
|
36564
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
143 |
product(bool, UseSIMDForMemoryOps, false, \ |
9442bb67de26
8150313: aarch64: optimise array copy using SIMD instructions
enevill
parents:
36562
diff
changeset
|
144 |
"Use SIMD instructions in generated memory move code") \ |
40023
49d647eeb7f0
8159063: aarch64: optimise unaligned array copy long
enevill
parents:
38273
diff
changeset
|
145 |
product(bool, AvoidUnalignedAccesses, false, \ |
49d647eeb7f0
8159063: aarch64: optimise unaligned array copy long
enevill
parents:
38273
diff
changeset
|
146 |
"Avoid generating unaligned memory accesses") \ |
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 |