comparison src/cpu/x86/vm/c1_MacroAssembler_x86.cpp @ 5056:2f2c6347fce4

comments cleanup/retagging
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 08 Mar 2012 15:01:19 +0100
parents ab906cea36f7
children e522a00b91aa
comparison
equal deleted inserted replaced
5053:c53115427ff9 5056:2f2c6347fce4
289 jcc(Assembler::notZero, loop); 289 jcc(Assembler::notZero, loop);
290 } 290 }
291 } 291 }
292 292
293 #ifndef GRAAL 293 #ifndef GRAAL
294 // TODO(tw): Check how we can access the flag without a ciEnv object. 294 // TODO(thomaswue): Check how we can access the flag without a ciEnv object.
295 if (CURRENT_ENV->dtrace_alloc_probes()) { 295 if (CURRENT_ENV->dtrace_alloc_probes()) {
296 assert(obj == rax, "must be"); 296 assert(obj == rax, "must be");
297 call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id))); 297 call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
298 } 298 }
299 #endif 299 #endif
326 const Register len_zero = len; 326 const Register len_zero = len;
327 initialize_body(obj, arr_size, header_size * BytesPerWord, len_zero); 327 initialize_body(obj, arr_size, header_size * BytesPerWord, len_zero);
328 328
329 329
330 #ifndef GRAAL 330 #ifndef GRAAL
331 // TODO(tw): Check how we can access the flag without a ciEnv object. 331 // TODO(thomaswue): Check how we can access the flag without a ciEnv object.
332 if (CURRENT_ENV->dtrace_alloc_probes()) { 332 if (CURRENT_ENV->dtrace_alloc_probes()) {
333 assert(obj == rax, "must be"); 333 assert(obj == rax, "must be");
334 call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id))); 334 call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
335 } 335 }
336 #endif 336 #endif