Lines Matching refs:rmode

347     if (is_int16(rt.immediate()) && !MustUseReg(rt.rmode())) {
364 if (is_int16(-rt.immediate()) && !MustUseReg(rt.rmode())) {
367 !MustUseReg(rt.rmode())) { // Use load
705 if (is_uint16(rt.immediate()) && !MustUseReg(rt.rmode())) {
722 if (is_uint16(rt.immediate()) && !MustUseReg(rt.rmode())) {
739 if (is_uint16(rt.immediate()) && !MustUseReg(rt.rmode())) {
773 if (is_int16(rt.immediate()) && !MustUseReg(rt.rmode())) {
792 if (is_uint15(rt.immediate()) && !MustUseReg(rt.rmode())) {
796 !MustUseReg(rt.rmode())) {
1344 if (!MustUseReg(j.rmode()) && mode == OPTIMIZE_SIZE) {
1365 if (MustUseReg(j.rmode())) {
1366 RecordRelocInfo(j.rmode(), immediate);
3699 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
3712 if (MustUseReg(rmode)) {
3713 RecordRelocInfo(rmode, target);
3718 li(t9, Operand(target, rmode));
3724 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond,
3726 DCHECK(!RelocInfo::IsCodeTarget(rmode));
3727 Jump(static_cast<intptr_t>(target), rmode, cond, rs, rt, bd);
3730 void TurboAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
3733 DCHECK(RelocInfo::IsCodeTarget(rmode));
3768 Jump(static_cast<intptr_t>(code.address()), rmode, cond, rs, rt, bd);
3853 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond,
3861 if (MustUseReg(rmode)) {
3862 RecordRelocInfo(rmode, target_int);
3867 li(t9, Operand(target_int, rmode), CONSTANT_SIZE);
3872 void TurboAssembler::Call(Handle<Code> code, RelocInfo::Mode rmode,
3907 DCHECK(RelocInfo::IsCodeTarget(rmode));
3909 Call(code.address(), rmode, cond, rs, rt, bd);