Searched defs:bumped_count (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp984 void InterpreterMacroAssembler::profile_taken_branch(Register mdp, Register bumped_count) { argument
993 // We inline increment_mdp_data_at to return bumped_count in a register
998 movl(bumped_count,data);
1000 addl(bumped_count, DataLayout::counter_increment);
1001 sbbl(bumped_count, 0);
1002 movl(data,bumped_count); // Store back out
H A Dinterp_masm_x86_64.cpp1005 Register bumped_count) {
1014 // We inline increment_mdp_data_at to return bumped_count in a register
1017 movptr(bumped_count, data);
1020 addptr(bumped_count, DataLayout::counter_increment);
1021 sbbptr(bumped_count, 0);
1022 movptr(data, bumped_count); // Store back out
1004 profile_taken_branch(Register mdp, Register bumped_count) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp1404 Register bumped_count,
1409 ld_ptr(counter, bumped_count);
1413 subcc(bumped_count, DataLayout::counter_increment, bumped_count);
1420 delayed()->st_ptr(bumped_count, counter);
1424 addcc(bumped_count, DataLayout::counter_increment, bumped_count);
1428 subc(bumped_count, G0, bumped_count);
1431 st_ptr(bumped_count, counte
1403 increment_mdp_data_at(Address counter, Register bumped_count, bool decrement) argument
1437 increment_mdp_data_at(int constant, Register bumped_count, bool decrement) argument
1448 increment_mdp_data_at(Register reg, int constant, Register bumped_count, Register scratch2, bool decrement) argument
1534 profile_taken_branch(Register scratch, Register bumped_count) argument
[all...]

Completed in 174 milliseconds