comparison src/cpu/x86/vm/interp_masm_x86_64.hpp @ 1783:d5d065957597

6953144: Tiered compilation Summary: Infrastructure for tiered compilation support (interpreter + c1 + c2) for 32 and 64 bit. Simple tiered policy implementation. Reviewed-by: kvn, never, phh, twisti
author iveresov
date Fri, 03 Sep 2010 17:51:07 -0700
parents e9ff18c4ace7
children f95d63e2154a
comparison
equal deleted inserted replaced
1782:f353275af40e 1783:d5d065957597
192 void increment_mdp_data_at(Address data, bool decrement = false); 192 void increment_mdp_data_at(Address data, bool decrement = false);
193 void increment_mdp_data_at(Register mdp_in, int constant, 193 void increment_mdp_data_at(Register mdp_in, int constant,
194 bool decrement = false); 194 bool decrement = false);
195 void increment_mdp_data_at(Register mdp_in, Register reg, int constant, 195 void increment_mdp_data_at(Register mdp_in, Register reg, int constant,
196 bool decrement = false); 196 bool decrement = false);
197 void increment_mask_and_jump(Address counter_addr,
198 int increment, int mask,
199 Register scratch, bool preloaded,
200 Condition cond, Label* where);
197 void set_mdp_flag_at(Register mdp_in, int flag_constant); 201 void set_mdp_flag_at(Register mdp_in, int flag_constant);
198 void test_mdp_data_at(Register mdp_in, int offset, Register value, 202 void test_mdp_data_at(Register mdp_in, int offset, Register value,
199 Register test_value_out, 203 Register test_value_out,
200 Label& not_equal_continue); 204 Label& not_equal_continue);
201 205