comparison src/cpu/sparc/vm/assembler_sparc.hpp @ 2127:5577848f5923

7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument Summary: Replaced incr_allocated_bytes() formals var_size_in_bytes and con_size_in_bytes with a single RegisterOrConstant formal. Reviewed-by: twisti, jcoomes
author phh
date Tue, 11 Jan 2011 17:33:21 -0500
parents 84f36150fcc3
children 856ecff79cf7
comparison
equal deleted inserted replaced
2125:7246a374a9f2 2127:5577848f5923
2387 int con_size_in_bytes, // object size in bytes if known at compile time 2387 int con_size_in_bytes, // object size in bytes if known at compile time
2388 Register t1, // temp register 2388 Register t1, // temp register
2389 Label& slow_case // continuation point if fast allocation fails 2389 Label& slow_case // continuation point if fast allocation fails
2390 ); 2390 );
2391 void tlab_refill(Label& retry_tlab, Label& try_eden, Label& slow_case); 2391 void tlab_refill(Label& retry_tlab, Label& try_eden, Label& slow_case);
2392 void incr_allocated_bytes(Register var_size_in_bytes, int con_size_in_bytes, Register t1); 2392 void incr_allocated_bytes(RegisterOrConstant size_in_bytes,
2393 Register t1, Register t2);
2393 2394
2394 // interface method calling 2395 // interface method calling
2395 void lookup_interface_method(Register recv_klass, 2396 void lookup_interface_method(Register recv_klass,
2396 Register intf_klass, 2397 Register intf_klass,
2397 RegisterOrConstant itable_index, 2398 RegisterOrConstant itable_index,