comparison src/share/vm/graal/graalCompiler.cpp @ 4296:d089b71a5237

Add possibility to disable inlining for specific methods. Clear the HotSpotMethodResolvedImpl constructor, for it's never called.
author Andreas Woess <andreas.woess@jku.at>
date Wed, 18 Jan 2012 16:21:54 +0100
parents bcbb918f5ac6
children dc6f6e2f1a00
comparison
equal deleted inserted replaced
4295:1e3ecb08767d 4296:d089b71a5237
268 268
269 HotSpotMethodResolved::set_codeSize(obj, method->code_size()); 269 HotSpotMethodResolved::set_codeSize(obj, method->code_size());
270 HotSpotMethodResolved::set_accessFlags(obj, method->access_flags().as_int()); 270 HotSpotMethodResolved::set_accessFlags(obj, method->access_flags().as_int());
271 HotSpotMethodResolved::set_maxLocals(obj, method->max_locals()); 271 HotSpotMethodResolved::set_maxLocals(obj, method->max_locals());
272 HotSpotMethodResolved::set_maxStackSize(obj, method->max_stack()); 272 HotSpotMethodResolved::set_maxStackSize(obj, method->max_stack());
273 HotSpotMethodResolved::set_canBeInlined(obj, true);
273 274
274 method->set_graal_mirror(obj()); 275 method->set_graal_mirror(obj());
275 return obj(); 276 return obj();
276 } 277 }
277 278