1 /*
  2  * Copyright (c) 2002, 2025, 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.jvm;
 27 
 28 import java.util.*;
 29 
 30 import com.sun.tools.javac.code.Flags;
 31 import com.sun.tools.javac.code.Symbol;
 32 import com.sun.tools.javac.util.*;
 33 
 34 import static com.sun.tools.javac.main.Option.TARGET;
 35 
 36 /** The classfile version target.
 37  *
 38  *  <p><b>This is NOT part of any supported API.
 39  *  If you write code that depends on this, you do so at your own risk.
 40  *  This code and its internal interfaces are subject to change or
 41  *  deletion without notice.</b>
 42  */
 43 public enum Target {
 44     JDK1_1("1.1", 45, 3),
 45     JDK1_2("1.2", 46, 0),
 46     JDK1_3("1.3", 47, 0),
 47 
 48     /** J2SE1.4 = Merlin. */
 49     JDK1_4("1.4", 48, 0),
 50 
 51     /** JDK 5, codename Tiger. */
 52     JDK1_5("5", 49, 0),
 53 
 54     /** JDK 6. */
 55     JDK1_6("6", 50, 0),
 56 
 57     /** JDK 7. */
 58     JDK1_7("7", 51, 0),
 59 
 60     /** JDK 8. */
 61     JDK1_8("8", 52, 0),
 62 
 63     /** JDK 9. */
 64     JDK1_9("9", 53, 0),
 65 
 66     /** JDK 10. */
 67     JDK1_10("10", 54, 0),
 68 
 69     /** JDK 11. */
 70     JDK1_11("11", 55, 0),
 71 
 72     /** JDK 12. */
 73     JDK1_12("12", 56, 0),
 74 
 75     /** JDK 13. */
 76     JDK1_13("13", 57, 0),
 77 
 78     /** JDK 14. */
 79     JDK1_14("14", 58, 0),
 80 
 81     /** JDK 15. */
 82     JDK1_15("15", 59, 0),
 83 
 84     /** JDK 16. */
 85     JDK1_16("16", 60, 0),
 86 
 87     /** JDK 17. */
 88     JDK1_17("17", 61, 0),
 89 
 90     /** JDK 18. */
 91     JDK1_18("18", 62, 0),
 92 
 93     /** JDK 19. */
 94     JDK1_19("19", 63, 0),
 95 
 96     /** JDK 20. */
 97     JDK1_20("20", 64, 0),
 98 
 99     /** JDK 21. */
100     JDK1_21("21", 65, 0),
101 
102     /** JDK 22. */
103     JDK1_22("22", 66, 0),
104 
105     /** JDK 23. */
106     JDK1_23("23", 67, 0),
107 
108     /** JDK 24. */
109     JDK1_24("24", 68, 0),
110 
111     /** JDK 25. */
112     JDK1_25("25", 69, 0),
113 
114     /** JDK 26. */
115     JDK1_26("26", 70, 0),
116 
117     /** JDK 27. */
118     JDK1_27("27", 71, 0),
119     ; // Reduce code churn when appending new constants
120 
121     private static final Context.Key<Target> targetKey = new Context.Key<>();
122 
123     public static Target instance(Context context) {
124         Target instance = context.get(targetKey);
125         if (instance == null) {
126             Options options = Options.instance(context);
127             String targetString = options.get(TARGET);
128             if (targetString != null) instance = lookup(targetString);
129             if (instance == null) instance = DEFAULT;
130             context.put(targetKey, instance);
131         }
132         return instance;
133     }
134 
135     public static final Target MIN = Target.JDK1_8;
136 
137     private static final Target MAX = values()[values().length - 1];
138 
139     public static final Target DEFAULT = MAX;
140 
141     private static final Map<String,Target> tab = new HashMap<>();
142     static {
143         for (Target t : values()) {
144             tab.put(t.name, t);
145         }
146         tab.put("1.5", JDK1_5);
147         tab.put("1.6", JDK1_6);
148         tab.put("1.7", JDK1_7);
149         tab.put("1.8", JDK1_8);
150         tab.put("1.9", JDK1_9);
151         tab.put("1.10", JDK1_10);
152     }
153 
154     public final String name;
155     public final int majorVersion;
156     public final int minorVersion;
157     private Target(String name, int majorVersion, int minorVersion) {
158         this.name = name;
159         this.majorVersion = majorVersion;
160         this.minorVersion = minorVersion;
161     }
162 
163     public static Target lookup(String name) {
164         return tab.get(name);
165     }
166 
167     public boolean isSupported() {
168         return this.compareTo(MIN) >= 0;
169     }
170 
171     /** Return the character to be used in constructing synthetic
172      *  identifiers, where not specified by the JLS.
173      */
174     public char syntheticNameChar() {
175         return '$';
176     }
177 
178     /** Does the target VM expect MethodParameters attributes?
179      */
180     public boolean hasMethodParameters() {
181         return compareTo(JDK1_8) >= 0;
182     }
183 
184     /** Does the target JDK contain StringConcatFactory class?
185      */
186     public boolean hasStringConcatFactory() {
187         return compareTo(JDK1_9) >= 0;
188     }
189 
190     /** Value of platform release used to access multi-release jar files
191      */
192     public String multiReleaseValue() {
193         return Integer.toString(this.ordinal() - Target.JDK1_1.ordinal() + 1);
194     }
195 
196     /** All modules that export an API are roots when compiling code in the unnamed
197      *  module and targeting 11 or newer.
198      */
199     public boolean allApiModulesAreRoots() {
200         return compareTo(JDK1_11) >= 0;
201     }
202 
203     /** Does the target VM support nestmate access?
204      */
205     public boolean hasNestmateAccess() {
206         return compareTo(JDK1_11) >= 0;
207     }
208 
209     /** language runtime uses nest-based access.
210      *  e.g. lambda and string concat spin dynamic proxy class as a nestmate
211      *  of the target class
212      */
213     public boolean runtimeUseNestAccess() {
214         return compareTo(JDK1_15) >= 0;
215     }
216 
217     /** Does the target VM support virtual private invocations?
218      */
219     public boolean hasVirtualPrivateInvoke() {
220         return compareTo(JDK1_11) >= 0;
221     }
222 
223     /** Does the target VM support sealed types
224      */
225     public boolean hasSealedClasses() {
226         return compareTo(JDK1_15) >= 0;
227     }
228 






229     /** Is the ACC_STRICT bit redundant and obsolete
230      */
231     public boolean obsoleteAccStrict() {
232         return compareTo(JDK1_17) >= 0;
233     }
234 
235     /** Omit unused enclosing instance fields from inner classes that don't access enclosing
236      * instance state.
237      */
238     public boolean optimizeOuterThis() {
239         return compareTo(JDK1_18) >= 0;
240     }
241 
242     /** Releases prior to JDK 23 expect a less precise SwitchBootstraps.typeSwitch signature on the selectorType
243      */
244     public boolean usesReferenceOnlySelectorTypes() {
245         return compareTo(Target.JDK1_23) < 0;
246     }
247 
248     /**
249      * Should we emit a null check against incoming outer this argument by default?
250      */
251     public boolean nullCheckOuterThisByDefault() {
252         return compareTo(JDK1_25) >= 0;
253     }
254 
255     /** Releases prior to JDK 23 don't allow primitive types as case labels in
256      *  SwitchBootstrap.typeSwitch
257      */
258     public boolean switchBootstrapOnlyAllowsReferenceTypesAsCaseLabels() {
259         return compareTo(Target.JDK1_23) < 0;
260     }
261 }
--- EOF ---