comparison jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/CompiledCode.java @ 23393:1d4ce2d19e52

clean up and minimize JVMCI (JDK-8156835)
author Doug Simon <doug.simon@oracle.com>
date Thu, 12 May 2016 20:57:31 +0200
parents b4ff1a18d19c
children 1140503536ae
comparison
equal deleted inserted replaced
23392:b3a816d3b844 23393:1d4ce2d19e52
21 * questions. 21 * questions.
22 */ 22 */
23 package jdk.vm.ci.code; 23 package jdk.vm.ci.code;
24 24
25 /** 25 /**
26 * The output from compiling a method. 26 * Marker type for an object containing the output of a compiler in a form suitable for installing
27 * into a managed code heap. Since the details of such are code are specific to each runtime, this
28 * interface does not specify any methods.
27 */ 29 */
28 public interface CompiledCode { 30 public interface CompiledCode {
29 } 31 }