src/share/vm/utilities/globalDefinitions.cpp

changeset 1934
e9ff18c4ace7
parent 1907
c18cbe5936b8
parent 1926
2d127394260e
child 2314
f95d63e2154a
equal deleted inserted replaced
1917:dfe27f03244a 1934:e9ff18c4ace7
31 int heapOopSize = 0; 31 int heapOopSize = 0;
32 int LogBytesPerHeapOop = 0; 32 int LogBytesPerHeapOop = 0;
33 int LogBitsPerHeapOop = 0; 33 int LogBitsPerHeapOop = 0;
34 int BytesPerHeapOop = 0; 34 int BytesPerHeapOop = 0;
35 int BitsPerHeapOop = 0; 35 int BitsPerHeapOop = 0;
36
37 // Object alignment, in units of HeapWords.
38 // Defaults are -1 so things will break badly if incorrectly initialized.
39 int MinObjAlignment = -1;
40 int MinObjAlignmentInBytes = -1;
41 int MinObjAlignmentInBytesMask = 0;
42
43 int LogMinObjAlignment = -1;
44 int LogMinObjAlignmentInBytes = -1;
45
46 // Oop encoding heap max
47 uint64_t OopEncodingHeapMax = 0;
36 48
37 void basic_fatal(const char* msg) { 49 void basic_fatal(const char* msg) {
38 fatal(msg); 50 fatal(msg);
39 } 51 }
40 52

mercurial