comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java @ 7232:310a68c63b69

Merge.
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 14 Dec 2012 15:19:38 +0100
parents 8fbb97b0016a 291ffc492eb6
children f4f3d63d35e6
comparison
equal deleted inserted replaced
7231:c0806f4ff3ea 7232:310a68c63b69
171 * Mark word right shift to get identity hash code. 171 * Mark word right shift to get identity hash code.
172 */ 172 */
173 public int identityHashCodeShift; 173 public int identityHashCodeShift;
174 174
175 /** 175 /**
176 * Offset of _access_flags in metaspace Method object. 176 * Offset of _access_flags in a metaspace Method object.
177 */ 177 */
178 public int methodAccessFlagsOffset; 178 public int methodAccessFlagsOffset;
179 179
180 /** 180 /**
181 * Offset of _max_locals in metaspace Method object. 181 * Offset of _max_locals in a metaspace Method object.
182 */ 182 */
183 public int methodMaxLocalsOffset; 183 public int methodMaxLocalsOffset;
184 184
185 /** 185 /**
186 * Offset of _max_stack in metaspace Method object. 186 * Offset of _constMethod in a metaspace Method object.
187 */ 187 */
188 public int methodMaxStackOffset; 188 public int methodConstMethodOffset;
189
190 /**
191 * Offset of _max_stack in a metaspace ConstMethod object.
192 */
193 public int constMethodMaxStackOffset;
189 194
190 /** 195 /**
191 * Value of extra_stack_entries() in method.hpp. 196 * Value of extra_stack_entries() in method.hpp.
192 */ 197 */
193 public int extraStackEntries; 198 public int extraStackEntries;