comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaField.java @ 23391:dd9f3badc978

Remove implicit stable field handling (JDK-8156552).
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 12 May 2016 14:24:15 +0200
parents 4cf1946f59fc
children 1d4ce2d19e52
comparison
equal deleted inserted replaced
23390:19855d029fc0 23391:dd9f3badc978
41 41
42 /** 42 /**
43 * Determines if this field should be treated as a constant. 43 * Determines if this field should be treated as a constant.
44 */ 44 */
45 boolean isStable(); 45 boolean isStable();
46
47 /**
48 * Determines if this field should be considered constant if it has the default value for its
49 * type (e.g, 0, null, etc.). This result of this method is undefined if this field is not
50 * {@linkplain #isStable() stable}.
51 */
52 boolean isDefaultStable();
53 } 46 }