comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java @ 10056:a323a9e20f9d

Fixed a few race conditions in the compilation queue.
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 14 Jun 2013 19:12:56 +0200
parents 2beeb916aa31
children abb9d3a26025
comparison
equal deleted inserted replaced
10055:9469034773b2 10056:a323a9e20f9d
209 209
210 /** 210 /**
211 * Offset of _access_flags in a metaspace Method object. 211 * Offset of _access_flags in a metaspace Method object.
212 */ 212 */
213 public int methodAccessFlagsOffset; 213 public int methodAccessFlagsOffset;
214
215 /**
216 * JVM_ACC_QUEUED defined in accessFlags.hpp and used for marking a Method object as queued for
217 * compilation.
218 */
219 public int methodQueuedForCompilationBit;
214 220
215 /** 221 /**
216 * Offset of _intrinsic_id in a metaspace Method object. 222 * Offset of _intrinsic_id in a metaspace Method object.
217 */ 223 */
218 public int methodIntrinsicIdOffset; 224 public int methodIntrinsicIdOffset;