D | RegisterSpec.java | 50 * {@code null-ok;} local variable info associated with this register, 53 private final LocalItem local; field in RegisterSpec 61 * @param local {@code null-ok;} the associated local variable, if any 65 LocalItem local) { in intern() argument 67 theInterningItem.set(reg, type, local); in intern() 102 * @param local {@code non-null;} the associated local variable 106 LocalItem local) { in make() argument 107 if (local == null) { in make() 108 throw new NullPointerException("local == null"); in make() 111 return intern(reg, type, local); in make() [all …]
|