< prev index next >

src/hotspot/cpu/aarch64/globals_aarch64.hpp

Print this page




 147           "Use CRC32 instructions for CRC32 computation")               \
 148   product(bool, UseSIMDForMemoryOps, false,                             \
 149           "Use SIMD instructions in generated memory move code")        \
 150   product(bool, UseSIMDForArrayEquals, true,                            \
 151           "Use SIMD instructions in generated array equals code")       \
 152   product(bool, UseSimpleArrayEquals, false,                            \
 153           "Use simpliest and shortest implementation for array equals") \
 154   product(bool, AvoidUnalignedAccesses, false,                          \
 155           "Avoid generating unaligned memory accesses")                 \
 156   product(bool, UseLSE, false,                                          \
 157           "Use LSE instructions")                                       \
 158   product(bool, UseBlockZeroing, true,                                  \
 159           "Use DC ZVA for block zeroing")                               \
 160   product(intx, BlockZeroingLowLimit, 256,                              \
 161           "Minimum size in bytes when block zeroing will be used")      \
 162           range(1, max_jint)                                            \
 163   product(bool, TraceTraps, false, "Trace all traps the signal handler")\
 164   product(int, SoftwarePrefetchHintDistance, -1,                        \
 165           "Use prfm hint with specified distance in compiled code."     \
 166           "Value -1 means off.")                                        \
 167           range(-1, 32760)
 168 #endif
 169 
 170 
 171 #endif // CPU_AARCH64_VM_GLOBALS_AARCH64_HPP


 147           "Use CRC32 instructions for CRC32 computation")               \
 148   product(bool, UseSIMDForMemoryOps, false,                             \
 149           "Use SIMD instructions in generated memory move code")        \
 150   product(bool, UseSIMDForArrayEquals, true,                            \
 151           "Use SIMD instructions in generated array equals code")       \
 152   product(bool, UseSimpleArrayEquals, false,                            \
 153           "Use simpliest and shortest implementation for array equals") \
 154   product(bool, AvoidUnalignedAccesses, false,                          \
 155           "Avoid generating unaligned memory accesses")                 \
 156   product(bool, UseLSE, false,                                          \
 157           "Use LSE instructions")                                       \
 158   product(bool, UseBlockZeroing, true,                                  \
 159           "Use DC ZVA for block zeroing")                               \
 160   product(intx, BlockZeroingLowLimit, 256,                              \
 161           "Minimum size in bytes when block zeroing will be used")      \
 162           range(1, max_jint)                                            \
 163   product(bool, TraceTraps, false, "Trace all traps the signal handler")\
 164   product(int, SoftwarePrefetchHintDistance, -1,                        \
 165           "Use prfm hint with specified distance in compiled code."     \
 166           "Value -1 means off.")                                        \
 167           range(-1, 4096)
 168 #endif
 169 
 170 
 171 #endif // CPU_AARCH64_VM_GLOBALS_AARCH64_HPP
< prev index next >