mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
Reviewed-by: dholmes, kvn
This commit is contained in:
parent
06b9210700
commit
0306737032
8 changed files with 57 additions and 7 deletions
|
@ -398,6 +398,17 @@ const uint64_t KlassEncodingMetaspaceMax = (uint64_t(max_juint) + 1) << LogKlass
|
|||
#define PLATFORM_NATIVE_STACK_WALKING_SUPPORTED 1
|
||||
#endif
|
||||
|
||||
// To assure the IRIW property on processors that are not multiple copy
|
||||
// atomic, sync instructions must be issued between volatile reads to
|
||||
// assure their ordering, instead of after volatile stores.
|
||||
// (See "A Tutorial Introduction to the ARM and POWER Relaxed Memory Models"
|
||||
// by Luc Maranget, Susmit Sarkar and Peter Sewell, INRIA/Cambridge)
|
||||
#ifdef CPU_NOT_MULTIPLE_COPY_ATOMIC
|
||||
const bool support_IRIW_for_not_multiple_copy_atomic_cpu = true;
|
||||
#else
|
||||
const bool support_IRIW_for_not_multiple_copy_atomic_cpu = false;
|
||||
#endif
|
||||
|
||||
// The byte alignment to be used by Arena::Amalloc. See bugid 4169348.
|
||||
// Note: this value must be a power of 2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue