comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java @ 7019:6838696d54ac

cleanly handle a failure to install Graal compiled code due to failed dependency (re)checking
author Doug Simon <doug.simon@oracle.com>
date Mon, 26 Nov 2012 11:21:18 +0100
parents 62818f156081
children 58dbea9fb973
comparison
equal deleted inserted replaced
7018:17eeac928874 7019:6838696d54ac
121 * 121 *
122 * @param compResult the result of a compilation 122 * @param compResult the result of a compilation
123 * @param code if not null, then the code is installed as the non-default compiled code for the associated method 123 * @param code if not null, then the code is installed as the non-default compiled code for the associated method
124 * and the details of the installation are written to this object 124 * and the details of the installation are written to this object
125 * @param info additional information about the installation are written to this object if it is not null 125 * @param info additional information about the installation are written to this object if it is not null
126 * @return the value of {@code code} 126 * @return the value of {@code code} if installation was successful, null otherwise
127 */ 127 */
128 HotSpotInstalledCode installCode(HotSpotCompilationResult compResult, HotSpotInstalledCode code, HotSpotCodeInfo info); 128 HotSpotInstalledCode installCode(HotSpotCompilationResult compResult, HotSpotInstalledCode code, HotSpotCodeInfo info);
129 129
130 void initializeConfiguration(HotSpotVMConfig config); 130 void initializeConfiguration(HotSpotVMConfig config);
131 131