hotspot/src/jdk.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/CompiledCode.java
author rschatz
Wed, 20 Jan 2016 14:22:46 +0100
changeset 35582 c32a0cc19877
child 38695 08b834856583
permissions -rw-r--r--
8147599: [JVMCI] simplify code installation interface Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35582
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     1
/*
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     4
 *
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     8
 *
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    13
 * accompanied this code).
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    14
 *
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    18
 *
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    21
 * questions.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    22
 */
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    23
package jdk.vm.ci.code;
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    24
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    25
/**
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    26
 * The output from compiling a method.
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    27
 */
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    28
public interface CompiledCode {
c32a0cc19877 8147599: [JVMCI] simplify code installation interface
rschatz
parents:
diff changeset
    29
}