comparison src/share/vm/utilities/globalDefinitions.cpp @ 1579:e9ff18c4ace7

Merge
author jrose
date Wed, 02 Jun 2010 22:45:42 -0700
parents c18cbe5936b8 2d127394260e
children f95d63e2154a
comparison
equal deleted inserted replaced
1562:dfe27f03244a 1579: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