Copyright (c) 2000, 2014 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation Stephan Herrmann - Contributions for Bug 365662 - [compiler][null] warn on contradictory and redundant null annotations Bug 429958 - [1.8][null] evaluate new DefaultLocation attribute of @NonNullByDefault Bug 435805 - [1.8][compiler][null] Java 8 compiler does not recognize declaration style null annotations Keigo Imai - Contribution for bug 388903 - Cannot extend inner class as an anonymous class when it extends the outer class
/******************************************************************************* * Copyright (c) 2000, 2014 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation * Stephan Herrmann - Contributions for * Bug 365662 - [compiler][null] warn on contradictory and redundant null annotations * Bug 429958 - [1.8][null] evaluate new DefaultLocation attribute of @NonNullByDefault * Bug 435805 - [1.8][compiler][null] Java 8 compiler does not recognize declaration style null annotations * Keigo Imai - Contribution for bug 388903 - Cannot extend inner class as an anonymous class when it extends the outer class *******************************************************************************/
package org.eclipse.jdt.internal.compiler.lookup; public abstract class NestedTypeBinding extends SourceTypeBinding { public SourceTypeBinding enclosingType; public SyntheticArgumentBinding[] enclosingInstances; private ReferenceBinding[] enclosingTypes = Binding.UNINITIALIZED_REFERENCE_TYPES; public SyntheticArgumentBinding[] outerLocalVariables; private int outerLocalVariablesSlotSize = -1; // amount of slots used by synthetic outer local variables public NestedTypeBinding(char[][] typeName, ClassScope scope, SourceTypeBinding enclosingType) { super(typeName, enclosingType.fPackage, scope); this.tagBits |= (TagBits.IsNestedType | TagBits.ContainsNestedTypeReferences); this.enclosingType = enclosingType; } public NestedTypeBinding(NestedTypeBinding prototype) { super(prototype); this.enclosingType = prototype.enclosingType; this.enclosingInstances = prototype.enclosingInstances; this.enclosingTypes = prototype.enclosingTypes; this.outerLocalVariables = prototype.outerLocalVariables; this.outerLocalVariablesSlotSize = prototype.outerLocalVariablesSlotSize; } /* Add a new synthetic argument for <actualOuterLocalVariable>. * Answer the new argument or the existing argument if one already existed. */ public SyntheticArgumentBinding addSyntheticArgument(LocalVariableBinding actualOuterLocalVariable) { if (!isPrototype()) throw new IllegalStateException(); SyntheticArgumentBinding synthLocal = null; if (this.outerLocalVariables == null) { synthLocal = new SyntheticArgumentBinding(actualOuterLocalVariable); this.outerLocalVariables = new SyntheticArgumentBinding[] {synthLocal}; } else { int size = this.outerLocalVariables.length; int newArgIndex = size; for (int i = size; --i >= 0;) { // must search backwards if (this.outerLocalVariables[i].actualOuterLocalVariable == actualOuterLocalVariable) return this.outerLocalVariables[i]; // already exists if (this.outerLocalVariables[i].id > actualOuterLocalVariable.id) newArgIndex = i; } SyntheticArgumentBinding[] synthLocals = new SyntheticArgumentBinding[size + 1]; System.arraycopy(this.outerLocalVariables, 0, synthLocals, 0, newArgIndex); synthLocals[newArgIndex] = synthLocal = new SyntheticArgumentBinding(actualOuterLocalVariable); System.arraycopy(this.outerLocalVariables, newArgIndex, synthLocals, newArgIndex + 1, size - newArgIndex); this.outerLocalVariables = synthLocals; } //System.out.println("Adding synth arg for local var: " + new String(actualOuterLocalVariable.name) + " to: " + new String(this.readableName())); if (this.scope.referenceCompilationUnit().isPropagatingInnerClassEmulation) updateInnerEmulationDependents(); return synthLocal; } /* Add a new synthetic argument for <enclosingType>. * Answer the new argument or the existing argument if one already existed. */ public SyntheticArgumentBinding addSyntheticArgument(ReferenceBinding targetEnclosingType) { if (!isPrototype()) throw new IllegalStateException(); SyntheticArgumentBinding synthLocal = null; if (this.enclosingInstances == null) { synthLocal = new SyntheticArgumentBinding(targetEnclosingType); this.enclosingInstances = new SyntheticArgumentBinding[] {synthLocal}; } else { int size = this.enclosingInstances.length; int newArgIndex = size; if (TypeBinding.equalsEquals(enclosingType(), targetEnclosingType)) newArgIndex = 0; SyntheticArgumentBinding[] newInstances = new SyntheticArgumentBinding[size + 1]; System.arraycopy(this.enclosingInstances, 0, newInstances, newArgIndex == 0 ? 1 : 0, size); newInstances[newArgIndex] = synthLocal = new SyntheticArgumentBinding(targetEnclosingType); this.enclosingInstances = newInstances; } //System.out.println("Adding synth arg for enclosing type: " + new String(enclosingType.readableName()) + " to: " + new String(this.readableName())); if (this.scope.referenceCompilationUnit().isPropagatingInnerClassEmulation) updateInnerEmulationDependents(); return synthLocal; } /* Add a new synthetic argument and field for <actualOuterLocalVariable>. * Answer the new argument or the existing argument if one already existed. */ public SyntheticArgumentBinding addSyntheticArgumentAndField(LocalVariableBinding actualOuterLocalVariable) { if (!isPrototype()) throw new IllegalStateException(); SyntheticArgumentBinding synthLocal = addSyntheticArgument(actualOuterLocalVariable); if (synthLocal == null) return null; if (synthLocal.matchingField == null) synthLocal.matchingField = addSyntheticFieldForInnerclass(actualOuterLocalVariable); return synthLocal; } /* Add a new synthetic argument and field for <enclosingType>. * Answer the new argument or the existing argument if one already existed. */ public SyntheticArgumentBinding addSyntheticArgumentAndField(ReferenceBinding targetEnclosingType) { if (!isPrototype()) throw new IllegalStateException(); SyntheticArgumentBinding synthLocal = addSyntheticArgument(targetEnclosingType); if (synthLocal == null) return null; if (synthLocal.matchingField == null) synthLocal.matchingField = addSyntheticFieldForInnerclass(targetEnclosingType); return synthLocal; } /* Answer the receiver's enclosing type... null if the receiver is a top level type. */ @Override public ReferenceBinding enclosingType() { return this.enclosingType; }
Returns:the enclosingInstancesSlotSize
/** * @return the enclosingInstancesSlotSize */
@Override public int getEnclosingInstancesSlotSize() { if (!isPrototype()) throw new IllegalStateException(); return this.enclosingInstances == null ? 0 : this.enclosingInstances.length; }
Returns:the outerLocalVariablesSlotSize
/** * @return the outerLocalVariablesSlotSize */
@Override public int getOuterLocalVariablesSlotSize() { if (!isPrototype()) throw new IllegalStateException(); if (this.outerLocalVariablesSlotSize < 0) { this.outerLocalVariablesSlotSize = 0; int outerLocalsCount = this.outerLocalVariables == null ? 0 : this.outerLocalVariables.length; for (int i = 0; i < outerLocalsCount; i++){ SyntheticArgumentBinding argument = this.outerLocalVariables[i]; switch (argument.type.id) { case TypeIds.T_long : case TypeIds.T_double : this.outerLocalVariablesSlotSize += 2; break; default : this.outerLocalVariablesSlotSize ++; break; } } } return this.outerLocalVariablesSlotSize; } /* Answer the synthetic argument for <actualOuterLocalVariable> or null if one does not exist. */ public SyntheticArgumentBinding getSyntheticArgument(LocalVariableBinding actualOuterLocalVariable) { if (!isPrototype()) throw new IllegalStateException(); if (this.outerLocalVariables == null) return null; // is null if no outer local variables are known for (int i = this.outerLocalVariables.length; --i >= 0;) if (this.outerLocalVariables[i].actualOuterLocalVariable == actualOuterLocalVariable) return this.outerLocalVariables[i]; return null; } /* Answer the synthetic argument for <targetEnclosingType> or null if one does not exist. */ public SyntheticArgumentBinding getSyntheticArgument(ReferenceBinding targetEnclosingType, boolean onlyExactMatch, boolean scopeIsConstructorCall) { if (!isPrototype()) throw new IllegalStateException(); if (this.enclosingInstances == null) return null; // is null if no enclosing instances are known // exact match // firstly, during allocation, check and use the leftmost one (if possible) // to handle cases involving two instances of same type, such as // class X { // class Inner extends X {} // void f(){ // new X().new Inner(){} // // here the result of (new X()) is passed as the first (synthetic) arg for ctor of new Inner(){} // // (and (this) as the second, of course) // } // } if (scopeIsConstructorCall && this.enclosingInstances.length > 0) if (TypeBinding.equalsEquals(this.enclosingInstances[0].type, targetEnclosingType)) if (this.enclosingInstances[0].actualOuterLocalVariable == null) return this.enclosingInstances[0]; // then check other possibility for (int i = this.enclosingInstances.length; --i >= 0;) if (TypeBinding.equalsEquals(this.enclosingInstances[i].type, targetEnclosingType)) if (this.enclosingInstances[i].actualOuterLocalVariable == null) return this.enclosingInstances[i]; // type compatibility : to handle cases such as // class T { class M{}} // class S extends T { class N extends M {}} --> need to use S as a default enclosing instance for the super constructor call in N(). if (!onlyExactMatch){ for (int i = this.enclosingInstances.length; --i >= 0;) if (this.enclosingInstances[i].actualOuterLocalVariable == null) if (this.enclosingInstances[i].type.findSuperTypeOriginatingFrom(targetEnclosingType) != null) return this.enclosingInstances[i]; } return null; } public SyntheticArgumentBinding[] syntheticEnclosingInstances() { if (!isPrototype()) throw new IllegalStateException(); return this.enclosingInstances; // is null if no enclosing instances are required } @Override public ReferenceBinding[] syntheticEnclosingInstanceTypes() { if (!isPrototype()) throw new IllegalStateException(); if (this.enclosingTypes == UNINITIALIZED_REFERENCE_TYPES) { if (this.enclosingInstances == null) { this.enclosingTypes = null; } else { int length = this.enclosingInstances.length; this.enclosingTypes = new ReferenceBinding[length]; for (int i = 0; i < length; i++) { this.enclosingTypes[i] = (ReferenceBinding) this.enclosingInstances[i].type; } } } return this.enclosingTypes; } @Override public SyntheticArgumentBinding[] syntheticOuterLocalVariables() { if (!isPrototype()) throw new IllegalStateException(); return this.outerLocalVariables; // is null if no outer locals are required } /* * Trigger the dependency mechanism forcing the innerclass emulation * to be propagated to all dependent source types. */ public void updateInnerEmulationDependents() { // nothing to do in general, only local types are doing anything } }