langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java
author mcimadamore
Thu, 05 Mar 2015 15:03:07 +0000
changeset 29295 5a367770a074
parent 25874 83c19f00452c
child 35424 96661d1df628
permissions -rw-r--r--
8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic Summary: Javac should generate NPE checks using Objects.requireNonNull if -target >= 7 Reviewed-by: jlahoda Contributed-by: aleksey.shipilev@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 22163
diff changeset
     2
 * Copyright (c) 2002, 2014, 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
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    63
    /** JDK 9, initially an alias for 8. */
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    64
    JDK1_9("1.9", 52, 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22151
diff changeset
    66
    private static final Context.Key<Target> targetKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public static Target instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        Target instance = context.get(targetKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        if (instance == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
            Options options = Options.instance(context);
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    72
            String targetString = options.get(TARGET);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
            if (targetString != null) instance = lookup(targetString);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            if (instance == null) instance = DEFAULT;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            context.put(targetKey, instance);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 22163
diff changeset
    80
    public static final Target MIN = Target.JDK1_6;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 14445
diff changeset
    82
    private static final Target MAX = values()[values().length - 1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    84
    private static final Map<String,Target> tab = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    static {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        for (Target t : values()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
            tab.put(t.name, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        tab.put("5", JDK1_5);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        tab.put("6", JDK1_6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        tab.put("7", JDK1_7);
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    92
        tab.put("8", JDK1_8);
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    93
        tab.put("9", JDK1_9);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    public final String name;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    public final int majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    public final int minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    private Target(String name, int majorVersion, int minorVersion) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        this.name = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        this.majorVersion = majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        this.minorVersion = minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
   105
    public static final Target DEFAULT = JDK1_9;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    public static Target lookup(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
        return tab.get(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    /** Return the character to be used in constructing synthetic
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     *  identifiers, where not specified by the JLS.
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    public char syntheticNameChar() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        return '$';
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   118
    /** Does the VM support an invokedynamic instruction?
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   119
     */
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   120
    public boolean hasInvokedynamic() {
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   121
        return compareTo(JDK1_7) >= 0;
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   122
    }
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   123
29295
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   124
    /** 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
   125
     */
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   126
    public boolean hasObjects() {
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   127
        return compareTo(JDK1_7) >= 0;
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   128
    }
5a367770a074 8073432: Object.getClass() throws stackless NPE, due to C2 intrinsic
mcimadamore
parents: 25874
diff changeset
   129
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   130
    /** 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
   131
     *  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
   132
     *  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
   133
     */
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   134
    public boolean hasMethodHandles() {
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   135
        return hasInvokedynamic();
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   136
    }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   137
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
}