src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java
author psandoz
Fri, 03 Nov 2017 10:01:08 -0700
changeset 48081 89829dd3cc54
parent 47216 71c04702a3d5
child 48343 d4329843abf4
permissions -rw-r--r--
8188870: Bump classfile version number to 54 Reviewed-by: alanb, dholmes, coleenp, mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 37940
diff changeset
     2
 * Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2982
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2982
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2982
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2982
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2982
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.jvm;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.tools.javac.code.Flags;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.javac.code.Symbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14801
diff changeset
    34
import static com.sun.tools.javac.main.Option.TARGET;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    35
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
/** The classfile version target.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    38
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    39
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public enum Target {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    JDK1_1("1.1", 45, 3),
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    JDK1_2("1.2", 46, 0),
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    JDK1_3("1.3", 47, 0),
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    /** J2SE1.4 = Merlin. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    JDK1_4("1.4", 48, 0),
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    51
    /** JDK 5, codename Tiger. */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    JDK1_5("1.5", 49, 0),
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    /** JDK 6. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    JDK1_6("1.6", 50, 0),
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    /** JDK 7. */
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    58
    JDK1_7("1.7", 51, 0),
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    59
14445
835eb1433d39 8001112: Make -target 8 in javac generate version 52.0 classfile
ksrini
parents: 11314
diff changeset
    60
    /** JDK 8. */
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    61
    JDK1_8("1.8", 52, 0),
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    62
37940
ead113a2f92e 8150011: Update javac to generate V53.0 class files
jjg
parents: 37394
diff changeset
    63
    /** JDK 9. */
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 37940
diff changeset
    64
    JDK1_9("1.9", 53, 0),
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 37940
diff changeset
    65
48081
89829dd3cc54 8188870: Bump classfile version number to 54
psandoz
parents: 47216
diff changeset
    66
    /** JDK 10. */
89829dd3cc54 8188870: Bump classfile version number to 54
psandoz
parents: 47216
diff changeset
    67
    JDK1_10("1.10", 54, 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22151
diff changeset
    69
    private static final Context.Key<Target> targetKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    public static Target instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        Target instance = context.get(targetKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        if (instance == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            Options options = Options.instance(context);
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    75
            String targetString = options.get(TARGET);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
            if (targetString != null) instance = lookup(targetString);
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            if (instance == null) instance = DEFAULT;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            context.put(targetKey, instance);
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 22163
diff changeset
    83
    public static final Target MIN = Target.JDK1_6;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 14445
diff changeset
    85
    private static final Target MAX = values()[values().length - 1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    87
    private static final Map<String,Target> tab = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    static {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        for (Target t : values()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            tab.put(t.name, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        tab.put("5", JDK1_5);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        tab.put("6", JDK1_6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        tab.put("7", JDK1_7);
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    95
        tab.put("8", JDK1_8);
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    96
        tab.put("9", JDK1_9);
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 37940
diff changeset
    97
        tab.put("10", JDK1_10);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    public final String name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    public final int majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    public final int minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    private Target(String name, int majorVersion, int minorVersion) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        this.name = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        this.majorVersion = majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        this.minorVersion = minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 37940
diff changeset
   109
    public static final Target DEFAULT = values()[values().length - 1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    public static Target lookup(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        return tab.get(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    /** Return the character to be used in constructing synthetic
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     *  identifiers, where not specified by the JLS.
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    public char syntheticNameChar() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        return '$';
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   122
    /** Does the VM support an invokedynamic instruction?
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   123
     */
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   124
    public boolean hasInvokedynamic() {
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   125
        return compareTo(JDK1_7) >= 0;
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   126
    }
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   127
29295
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   128
    /** Does the target JDK contains the java.util.Objects class?
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   129
     */
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   130
    public boolean hasObjects() {
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   131
        return compareTo(JDK1_7) >= 0;
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   132
    }
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   133
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   134
    /** Does the VM support polymorphic method handle invocation?
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   135
     *  Affects the linkage information output to the classfile.
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   136
     *  An alias for {@code hasInvokedynamic}, since all the JSR 292 features appear together.
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   137
     */
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   138
    public boolean hasMethodHandles() {
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   139
        return hasInvokedynamic();
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   140
    }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   141
35424
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   142
    /** Does the target JDK contain StringConcatFactory class?
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   143
     */
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   144
    public boolean hasStringConcatFactory() {
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   145
        return compareTo(JDK1_9) >= 0;
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   146
    }
96661d1df628 8148483: JEP 280: Indify String Concatenation
shade
parents: 29295
diff changeset
   147
37394
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 35424
diff changeset
   148
    /** Value of platform release used to access multi-release jar files
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 35424
diff changeset
   149
     */
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 35424
diff changeset
   150
    public String multiReleaseValue() {
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 35424
diff changeset
   151
        return Integer.toString(this.ordinal() - Target.JDK1_1.ordinal() + 1);
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 35424
diff changeset
   152
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
}