comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/CiCompiler.java @ 4347:c8e5635f2bdd

Deleted CiResult. CiTargetMethod is the result of a compilation.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 11 Jan 2012 15:03:55 +0100
parents ee5fbfca6612
children
comparison
equal deleted inserted replaced
4346:ee5fbfca6612 4347:c8e5635f2bdd
53 * @param method the method to compile 53 * @param method the method to compile
54 * @param osrBCI the bytecode index of the entrypoint for an on-stack-replacement or {@code -1} if this is not an 54 * @param osrBCI the bytecode index of the entrypoint for an on-stack-replacement or {@code -1} if this is not an
55 * on-stack-replacement compilation 55 * on-stack-replacement compilation
56 * @param debugInfoLevel TODO 56 * @param debugInfoLevel TODO
57 */ 57 */
58 CiResult compileMethod(RiResolvedMethod method, int osrBCI, DebugInfoLevel debugInfoLevel); 58 CiTargetMethod compileMethod(RiResolvedMethod method, int osrBCI, DebugInfoLevel debugInfoLevel);
59 } 59 }