comparison src/share/vm/graal/graalCompiler.cpp @ 16105:e54507c88a93

placed HandleMark around Graal compilation performed on a native compiler thread
author Doug Simon <doug.simon@oracle.com>
date Fri, 13 Jun 2014 17:41:42 +0200
parents c1a47bf45b66
children d32be0297274
comparison
equal deleted inserted replaced
16096:5059c188c1e5 16105:e54507c88a93
136 // no OSR compilations during bootstrap - the compiler is just too slow at this point, 136 // no OSR compilations during bootstrap - the compiler is just too slow at this point,
137 // and we know that there are no endless loops 137 // and we know that there are no endless loops
138 return; 138 return;
139 } 139 }
140 140
141 HandleMark hm;
141 ResourceMark rm; 142 ResourceMark rm;
142 JavaValue result(T_VOID); 143 JavaValue result(T_VOID);
143 JavaCallArguments args; 144 JavaCallArguments args;
144 args.push_long((jlong) (address) method()); 145 args.push_long((jlong) (address) method());
145 args.push_int(entry_bci); 146 args.push_int(entry_bci);