langtools/src/share/classes/com/sun/tools/javac/jvm/Target.java
author briangoetz
Wed, 18 Dec 2013 16:05:18 -0500
changeset 22163 3651128c74eb
parent 22151 cb8daa93eeb1
child 25445 603f0c93d5c9
permissions -rw-r--r--
8030244: Update langtools to use Diamond Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
     2
 * Copyright (c) 2002, 2013, 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
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 14445
diff changeset
    80
    private static final Target MIN = values()[0];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    public static Target MIN() { return MIN; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 14445
diff changeset
    83
    private static final Target MAX = values()[values().length - 1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    public static Target MAX() { return MAX; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    86
    private static final Map<String,Target> tab = new HashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    static {
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        for (Target t : values()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            tab.put(t.name, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        tab.put("5", JDK1_5);
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        tab.put("6", JDK1_6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        tab.put("7", JDK1_7);
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    94
        tab.put("8", JDK1_8);
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
    95
        tab.put("9", JDK1_9);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    public final String name;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    public final int majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    public final int minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    private Target(String name, int majorVersion, int minorVersion) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        this.name = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        this.majorVersion = majorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        this.minorVersion = minorVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 16558
diff changeset
   107
    public static final Target DEFAULT = JDK1_9;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    public static Target lookup(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        return tab.get(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    /** In -target 1.1 and earlier, the compiler is required to emit
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     *  synthetic method definitions in abstract classes for interface
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     *  methods that are not overridden.  We call them "Miranda" methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    public boolean requiresIproxy() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        return compareTo(JDK1_1) <= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    /** Beginning in 1.4, we take advantage of the possibility of emitting
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     *  code to initialize fields before calling the superclass constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     *  This is allowed by the VM spec, but the verifier refused to allow
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     *  it until 1.4.  This is necesary to translate some code involving
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     *  inner classes.  See, for example, 4030374.
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    public boolean initializeFieldsBeforeSuper() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        return compareTo(JDK1_4) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    /** Beginning with -target 1.2 we obey the JLS rules for binary
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     *  compatibility, emitting as the qualifying type of a reference
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     *  to a method or field the type of the qualifier.  In earlier
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     *  targets we use as the qualifying type the class in which the
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     *  member was found.  The following methods named
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     *  *binaryCompatibility() indicate places where we vary from this
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     *  general rule. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    public boolean obeyBinaryCompatibility() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        return compareTo(JDK1_2) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    /** Starting in 1.5, the compiler uses an array type as
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
     *  the qualifier for method calls (such as clone) where required by
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
     *  the language and VM spec.  Earlier versions of the compiler
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
     *  qualified them by Object.
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    public boolean arrayBinaryCompatibility() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    /** Beginning after 1.2, we follow the binary compatibility rules for
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     *  interface fields.  The 1.2 VMs had bugs handling interface fields
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     *  when compiled using binary compatibility (see 4400598), so this is
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     *  an accommodation to them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    public boolean interfaceFieldsBinaryCompatibility() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
        return compareTo(JDK1_2) > 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    /** Beginning in -target 1.5, we follow the binary compatibility
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     *  rules for interface methods that redefine Object methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     *  Earlier VMs had bugs handling such methods compiled using binary
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     *  compatibility (see 4392595, 4398791, 4392595, 4400415).
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     *  The VMs were fixed during or soon after 1.4.  See 4392595.
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public boolean interfaceObjectOverridesBinaryCompatibility() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   170
    /** Beginning in -target 1.5, we make synthetic variables
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     *  package-private instead of private.  This is to prevent the
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     *  necessity of access methods, which effectively relax the
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     *  protection of the field but bloat the class files and affect
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     *  execution.
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public boolean usePrivateSyntheticFields() {
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   177
        return compareTo(JDK1_5) < 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    /** Sometimes we need to create a field to cache a value like a
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   181
     *  class literal of the assertions flag.  In -target 1.5 and
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     *  later we create a new synthetic class for this instead of
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     *  using the outermost class.  See 4401576.
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    public boolean useInnerCacheClass() {
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   186
        return compareTo(JDK1_5) >= 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /** Return true if cldc-style stack maps need to be generated. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    public boolean generateCLDCStackmap() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    /** Beginning in -target 6, we generate stackmap attribute in
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     *  compact format. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    public boolean generateStackMapTable() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        return compareTo(JDK1_6) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    /** Beginning in -target 6, package-info classes are marked synthetic.
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    public boolean isPackageInfoSynthetic() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        return compareTo(JDK1_6) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    /** Do we generate "empty" stackmap slots after double and long?
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    public boolean generateEmptyAfterBig() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    /** Beginning in 1.5, we have an unsynchronized version of
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     *  StringBuffer called StringBuilder that can be used by the
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     *  compiler for string concatenation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    public boolean useStringBuilder() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    /** Beginning in 1.5, we have flag bits we can use instead of
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     *  marker attributes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
    public boolean useSyntheticFlag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    public boolean useEnumFlag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    public boolean useAnnotationFlag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
    public boolean useVarargsFlag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    public boolean useBridgeFlag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
    /** Return the character to be used in constructing synthetic
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
     *  identifiers, where not specified by the JLS.
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    public char syntheticNameChar() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
        return '$';
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    /** Does the VM have direct support for class literals?
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    public boolean hasClassLiterals() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   252
    /** Does the VM support an invokedynamic instruction?
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   253
     */
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   254
    public boolean hasInvokedynamic() {
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   255
        return compareTo(JDK1_7) >= 0;
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   256
    }
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 10
diff changeset
   257
6592
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   258
    /** 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
   259
     *  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
   260
     *  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
   261
     */
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   262
    public boolean hasMethodHandles() {
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   263
        return hasInvokedynamic();
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   264
    }
dc56420a69bc 6979327: method handle invocation should use casts instead of type parameters to specify return type
mcimadamore
parents: 5847
diff changeset
   265
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    /** Although we may not have support for class literals, should we
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     *  avoid initializing the class that the literal refers to?
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     *  See 4468823
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    public boolean classLiteralsNoInit() {
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   271
        return compareTo(JDK1_5) >= 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    /** Although we may not have support for class literals, when we
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     *  throw a NoClassDefFoundError, should we initialize its cause?
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    public boolean hasInitCause() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        return compareTo(JDK1_4) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
    /** For bootstrapping, we use J2SE1.4's wrapper class constructors
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     *  to implement boxing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
    public boolean boxWithConstructors() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
        return compareTo(JDK1_5) < 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    /** For bootstrapping, we use J2SE1.4's java.util.Collection
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
     *  instead of java.lang.Iterable.
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    public boolean hasIterable() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        return compareTo(JDK1_5) >= 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
    /** In J2SE1.5.0, we introduced the "EnclosingMethod" attribute
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
     *  for improved reflection support.
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    public boolean hasEnclosingMethodAttribute() {
16558
07c08ad4a700 8010179: Remove transitional target values from javac
darcy
parents: 15724
diff changeset
   299
        return compareTo(JDK1_5) >= 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
}