1 /*
  2  * Copyright (c) 1999, 2022, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.  Oracle designates this
  8  * particular file as subject to the "Classpath" exception as provided
  9  * by Oracle in the LICENSE file that accompanied this code.
 10  *
 11  * This code is distributed in the hope that it will be useful, but WITHOUT
 12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14  * version 2 for more details (a copy is included in the LICENSE file that
 15  * accompanied this code).
 16  *
 17  * You should have received a copy of the GNU General Public License version
 18  * 2 along with this work; if not, write to the Free Software Foundation,
 19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20  *
 21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 22  * or visit www.oracle.com if you need additional information or have any
 23  * questions.
 24  */
 25 
 26 package com.sun.tools.javac.comp;
 27 
 28 import com.sun.tools.javac.tree.JCTree;
 29 import com.sun.tools.javac.util.*;
 30 import com.sun.tools.javac.code.*;
 31 import com.sun.tools.javac.code.Scope.WriteableScope;
 32 import com.sun.tools.javac.comp.DeferredAttr.AttributionMode;
 33 
 34 /** Contains information specific to the attribute and enter
 35  *  passes, to be used in place of the generic field in environments.
 36  *
 37  *  <p><b>This is NOT part of any supported API.
 38  *  If you write code that depends on this, you do so at your own risk.
 39  *  This code and its internal interfaces are subject to change or
 40  *  deletion without notice.</b>
 41  */
 42 public class AttrContext {
 43 
 44     /** The scope of local symbols.
 45      */
 46     WriteableScope scope = null;
 47 
 48     /** The number of enclosing `static' modifiers.
 49      */
 50     int staticLevel = 0;
 51 
 52     /** Is this an environment for a this(...) or super(...) call?
 53      */
 54     boolean isSelfCall = false;
 55 
 56     /** are we analyzing the arguments for a constructor invocation?
 57      */
 58     boolean constructorArgs = false;
 59 
 60     /** Are we evaluating the selector of a `super' or type name?
 61      */
 62     boolean selectSuper = false;
 63 
 64     /** Is the current target of lambda expression or method reference serializable or is this a
 65      *  serializable class?
 66      */
 67     boolean isSerializable = false;
 68 
 69     /** Is this a serializable lambda?
 70      */
 71     boolean isSerializableLambda = false;
 72 
 73     /** Is this a lambda environment?
 74      */
 75     boolean isLambda = false;
 76 
 77     /** Is this a speculative attribution environment?
 78      */
 79     AttributionMode attributionMode = AttributionMode.FULL;
 80 
 81     /**
 82      *  Is this an attribution environment for an anonymous class instantiated using <> ?
 83      */
 84     boolean isAnonymousDiamond = false;
 85 
 86     /**
 87      *  Is this an attribution environment for an instance creation expression?
 88      */
 89     boolean isNewClass = false;
 90 
 91     /** Indicate if the type being visited is a service implementation
 92      */
 93     boolean visitingServiceImplementation = false;
 94 
 95     /** Indicate protected access should be unconditionally allowed.
 96      */
 97     boolean allowProtectedAccess = false;
 98 
 99     /** Are arguments to current function applications boxed into an array for varargs?
100      */
101     Resolve.MethodResolutionPhase pendingResolutionPhase = null;
102 
103     /** A record of the lint/SuppressWarnings currently in effect
104      */
105     Lint lint;
106 
107     /** The variable whose initializer is being attributed
108      * useful for detecting self-references in variable initializers
109      */
110     Symbol enclVar = null;
111 
112     /** ResultInfo to be used for attributing 'return' statement expressions
113      * (set by Attr.visitMethod and Attr.visitLambda)
114      */
115     Attr.ResultInfo returnResult = null;
116 
117     /** ResultInfo to be used for attributing 'yield' statement expressions
118      * (set by Attr.visitSwitchExpression)
119      */
120     Attr.ResultInfo yieldResult = null;
121 
122     /** Symbol corresponding to the site of a qualified default super call
123      */
124     Type defaultSuperCallSite = null;
125 
126     /** Tree that when non null, is to be preferentially used in diagnostics.
127      *  Usually Env<AttrContext>.tree is the tree to be referred to in messages,
128      *  but this may not be true during the window a method is looked up in enclosing
129      *  contexts (JDK-8145466)
130      */
131     JCTree preferredTreeForDiagnostics;
132 
133     /** Duplicate this context, replacing scope field and copying all others.
134      */
135     AttrContext dup(WriteableScope scope) {
136         AttrContext info = new AttrContext();
137         info.scope = scope;
138         info.staticLevel = staticLevel;
139         info.isSelfCall = isSelfCall;
140         info.constructorArgs = constructorArgs;
141         info.selectSuper = selectSuper;
142         info.pendingResolutionPhase = pendingResolutionPhase;
143         info.lint = lint;
144         info.enclVar = enclVar;
145         info.returnResult = returnResult;
146         info.yieldResult = yieldResult;
147         info.defaultSuperCallSite = defaultSuperCallSite;
148         info.isSerializable = isSerializable;
149         info.isLambda = isLambda;
150         info.isSerializableLambda = isSerializableLambda;
151         info.attributionMode = attributionMode;
152         info.isAnonymousDiamond = isAnonymousDiamond;
153         info.isNewClass = isNewClass;
154         info.preferredTreeForDiagnostics = preferredTreeForDiagnostics;
155         info.visitingServiceImplementation = visitingServiceImplementation;
156         info.allowProtectedAccess = allowProtectedAccess;
157         return info;
158     }
159 
160     /** Duplicate this context, copying all fields.
161      */
162     AttrContext dup() {
163         return dup(scope);
164     }
165 
166     public Iterable<Symbol> getLocalElements() {
167         if (scope == null)
168             return List.nil();
169         return scope.getSymbols();
170     }
171 
172     boolean lastResolveVarargs() {
173         return pendingResolutionPhase != null &&
174                 pendingResolutionPhase.isVarargsRequired();
175     }
176 
177     @Override
178     public String toString() {
179         return "AttrContext[" + scope.toString() + "]";
180     }
181 }