Lines Matching refs:tmp
55 pub tmp: WritableGpr, field
573 tmp, in pretty_print()
577 let tmp = pretty_print_reg(tmp.to_reg(), 8); in pretty_print() localVariable
607 tmp, in pretty_print()
610 let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8); in pretty_print() localVariable
624 tmp, in pretty_print()
628 let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8); in pretty_print() localVariable
815 Inst::CoffTlsGetAddr { symbol, dst, tmp } => { in pretty_print()
817 let tmp = tmp.to_reg().to_reg(); in pretty_print() localVariable
820 if tmp.is_virtual() { in pretty_print()
821 let tmp = pretty_print_reg(tmp, 8); in pretty_print() localVariable
966 Inst::StackProbeLoop { tmp, .. } => { in x64_get_operands()
967 collector.reg_early_def(tmp); in x64_get_operands()
1056 dest, uses, tmp, .. in x64_get_operands()
1058 collector.reg_fixed_def(tmp, regs::r11()); in x64_get_operands()
1068 dest, uses, tmp, .. in x64_get_operands()
1078 collector.reg_fixed_def(tmp, regs::r11()); in x64_get_operands()
1193 Inst::CoffTlsGetAddr { dst, tmp, .. } => { in x64_get_operands()
1201 collector.reg_fixed_def(tmp, regs::rcx()); in x64_get_operands()
1450 fn gen_imm_f64(value: f64, tmp: Writable<Reg>, dst: Writable<Reg>) -> SmallVec<[Self; 2]> { in gen_imm_f64()
1451 let imm_to_gpr = Inst::imm(OperandSize::Size64, value.to_bits(), tmp);
1453 inst: asm::inst::movq_a::new(dst.map(|r| Xmm::new(r).unwrap()), tmp.to_reg()).into(),