comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/HexCodeFile.java @ 21556:48c1ebd24120

renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 00:36:16 +0200
parents 9579a3c62a9e
children
comparison
equal deleted inserted replaced
21555:d12eaef9af72 21556:48c1ebd24120
24 24
25 import java.io.*; 25 import java.io.*;
26 import java.util.*; 26 import java.util.*;
27 import java.util.regex.*; 27 import java.util.regex.*;
28 28
29 import com.oracle.graal.api.code.*; 29 import com.oracle.jvmci.code.*;
30 import com.oracle.graal.api.code.CompilationResult.CodeAnnotation; 30 import com.oracle.jvmci.code.CompilationResult.CodeAnnotation;
31 import com.oracle.graal.api.code.CompilationResult.CodeComment; 31 import com.oracle.jvmci.code.CompilationResult.CodeComment;
32 import com.oracle.graal.api.code.CompilationResult.JumpTable; 32 import com.oracle.jvmci.code.CompilationResult.JumpTable;
33 33
34 /** 34 /**
35 * A HexCodeFile is a textual format for representing a chunk of machine code along with extra 35 * A HexCodeFile is a textual format for representing a chunk of machine code along with extra
36 * information that can be used to enhance a disassembly of the code. 36 * information that can be used to enhance a disassembly of the code.
37 * 37 *