mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
Merge
This commit is contained in:
commit
d6a9b93b5a
133 changed files with 1889 additions and 1307 deletions
|
@ -34,6 +34,18 @@ int LogBitsPerHeapOop = 0;
|
|||
int BytesPerHeapOop = 0;
|
||||
int BitsPerHeapOop = 0;
|
||||
|
||||
// Object alignment, in units of HeapWords.
|
||||
// Defaults are -1 so things will break badly if incorrectly initialized.
|
||||
int MinObjAlignment = -1;
|
||||
int MinObjAlignmentInBytes = -1;
|
||||
int MinObjAlignmentInBytesMask = 0;
|
||||
|
||||
int LogMinObjAlignment = -1;
|
||||
int LogMinObjAlignmentInBytes = -1;
|
||||
|
||||
// Oop encoding heap max
|
||||
uint64_t OopEncodingHeapMax = 0;
|
||||
|
||||
void basic_fatal(const char* msg) {
|
||||
fatal(msg);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue