comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/GraalCodeCacheProvider.java @ 10019:6e4b72bcc97f

Remove graph from HotSpotNMethod
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Thu, 13 Jun 2013 11:25:07 +0200
parents 640996823a81
children 5b21ddb3deaa
comparison
equal deleted inserted replaced
10004:c4a0e878868f 10019:6e4b72bcc97f
35 * Adds the given compilation result as an implementation of the given method without making it 35 * Adds the given compilation result as an implementation of the given method without making it
36 * the default implementation. The graph might be inlined later on. 36 * the default implementation. The graph might be inlined later on.
37 * 37 *
38 * @param method a method to which the executable code is begin added 38 * @param method a method to which the executable code is begin added
39 * @param compResult the compilation result to be added 39 * @param compResult the compilation result to be added
40 * @param graph the graph that represents the method
41 * @return a reference to the compiled and ready-to-run code or null if the code installation 40 * @return a reference to the compiled and ready-to-run code or null if the code installation
42 * failed 41 * failed
43 */ 42 */
44 InstalledCode addMethod(ResolvedJavaMethod method, CompilationResult compResult, Graph graph); 43 InstalledCode addMethod(ResolvedJavaMethod method, CompilationResult compResult);
45 44
46 void lower(Node n, LoweringTool tool); 45 void lower(Node n, LoweringTool tool);
47 } 46 }