Lines Matching refs:temp

1859 #define JUMP(a, temp, off)     jump(a, temp, off, __FILE__, __LINE__)
1860 #define JUMPL(a, temp, d, off) jumpl(a, temp, d, off, __FILE__, __LINE__)
2139 inline void store_contents(Register s, const AddressLiteral& addrlit, Register temp, int offset = 0);
2140 inline void store_ptr_contents(Register s, const AddressLiteral& addrlit, Register temp, int offset = 0);
2141 inline void jumpl_to(const AddressLiteral& addrlit, Register temp, Register d, int offset = 0);
2142 inline void jump_to(const AddressLiteral& addrlit, Register temp, int offset = 0);
2143 inline void jump_indirect_to(Address& a, Register temp, int ld_offset = 0, int jmp_offset = 0);
2150 void jumpl(const AddressLiteral& addrlit, Register temp, Register d, int offset, const char* file, int line);
2151 void jump (const AddressLiteral& addrlit, Register temp, int offset, const char* file, int line);
2204 // - If dest is a constant and either s1 or s2 is a register, the temp argument is required and becomes the result.
2205 // - If dest is a register and either s1 or s2 is a non-simm13 constant, the temp argument is required and used to materialize the constant.
2206 RegisterOrConstant regcon_andn_ptr(RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp = noreg);
2207 RegisterOrConstant regcon_inc_ptr( RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp = noreg);
2208 RegisterOrConstant regcon_sll_ptr( RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp = noreg);
2210 RegisterOrConstant ensure_simm13_or_reg(RegisterOrConstant src, Register temp) {
2213 guarantee(temp != noreg, "constant offset overflow");
2214 set(src.as_constant(), temp);
2215 return temp;
2515 Register t1, // temp register
2516 Register t2, // temp register
2523 Register t1, // temp register
2624 void bis_zeroing(Register to, Register count, Register temp, Label& Ldone);
2644 // 'temp' is a temp register that this object can use (and trash)
2645 SkipIfEqual(MacroAssembler*, Register temp,