comparison graal/com.oracle.max.cri/src/com/sun/cri/ri/RiRuntime.java @ 4139:feb590a8497f

remove pollJavaQueue and related functionality, minimize diff against HotSpot in the compileBroker.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 00:41:15 +0100
parents e233f5660da4
children 319860ae697a
comparison
equal deleted inserted replaced
4138:82af018d61db 4139:feb590a8497f
230 * @param method a method to which the executable code is begin added 230 * @param method a method to which the executable code is begin added
231 * @param code the code to be added 231 * @param code the code to be added
232 * @return a reference to the compiled and ready-to-run code 232 * @return a reference to the compiled and ready-to-run code
233 */ 233 */
234 RiCompiledMethod addMethod(RiResolvedMethod method, CiTargetMethod code); 234 RiCompiledMethod addMethod(RiResolvedMethod method, CiTargetMethod code);
235
236 /**
237 * Executes the given runnable on a compiler thread, which means that it can access constant pools, etc.
238 */
239 void executeOnCompilerThread(Runnable r);
240 } 235 }