comparison agent/src/share/classes/sun/jvm/hotspot/oops/Field.java @ 6972:bd7a7ce2e264

6830717: replay of compilations would help with debugging Summary: When java process crashed in compiler thread, repeat the compilation process will help finding root cause. This is done with using SA dump application class data and replay data from core dump, then use debug version of jvm to recompile the problematic java method. Reviewed-by: kvn, twisti, sspitsyn Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 12 Nov 2012 14:03:53 -0800
parents da91efe96a93
children
comparison
equal deleted inserted replaced
6965:3be318ecfae5 6972:bd7a7ce2e264
108 /** (Named, non-VM fields only) Returns the signature of this 108 /** (Named, non-VM fields only) Returns the signature of this
109 field. */ 109 field. */
110 public Symbol getSignature() { return signature; } 110 public Symbol getSignature() { return signature; }
111 public Symbol getGenericSignature() { return genericSignature; } 111 public Symbol getGenericSignature() { return genericSignature; }
112 112
113 public boolean hasInitialValue() { return holder.getFieldInitialValueIndex(fieldIndex) != 0; }
114
113 // 115 //
114 // Following acccessors are for named, non-VM fields only 116 // Following acccessors are for named, non-VM fields only
115 // 117 //
116 public boolean isPublic() { return accessFlags.isPublic(); } 118 public boolean isPublic() { return accessFlags.isPublic(); }
117 public boolean isPrivate() { return accessFlags.isPrivate(); } 119 public boolean isPrivate() { return accessFlags.isPrivate(); }