• Home
  • Raw
  • Download

Lines Matching refs:TMP

542     __ Move(TMP, r2);  in EmitSwap()
544 __ Move(r1, TMP); in EmitSwap()
566 __ Move(TMP, r2); in EmitSwap()
568 __ Mtc1(TMP, f1); in EmitSwap()
573 __ Move(TMP, r2); in EmitSwap()
575 __ Move(r1, TMP); in EmitSwap()
578 __ Move(TMP, r2); in EmitSwap()
580 __ Move(r1, TMP); in EmitSwap()
594 __ Mfc1(TMP, f1); in EmitSwap()
598 __ Move(r2_l, TMP); in EmitSwap()
610 __ Move(TMP, reg); in EmitSwap()
612 __ StoreToOffset(kStoreWord, TMP, SP, offset); in EmitSwap()
623 __ Move(TMP, reg_l); in EmitSwap()
625 __ StoreToOffset(kStoreWord, TMP, SP, offset_l); in EmitSwap()
626 __ Move(TMP, reg_h); in EmitSwap()
628 __ StoreToOffset(kStoreWord, TMP, SP, offset_h); in EmitSwap()
646 ScratchRegisterScope ensure_scratch(this, TMP, V0, codegen_->GetNumberOfCoreRegisters()); in Exchange()
655 TMP, in Exchange()
662 __ StoreToOffset(kStoreWord, TMP, SP, index1 + stack_offset); in Exchange()
724 __ Mfhc1(TMP, reg); in GenerateFrameEntry()
726 __ Sw(TMP, SP, ofs + 4); in GenerateFrameEntry()
772 __ Lw(TMP, SP, ofs + 4); in GenerateFrameExit()
773 __ Mthc1(TMP, reg); in GenerateFrameExit()
854 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex()); in Move32()
855 __ StoreToOffset(kStoreWord, TMP, SP, destination.GetStackIndex()); in Move32()
903 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex()); in Move64()
904 __ StoreToOffset(kStoreWord, TMP, SP, off); in Move64()
905 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex() + 4); in Move64()
906 __ StoreToOffset(kStoreWord, TMP, SP, off + 4); in Move64()
921 __ StoreConst32ToOffset(value, SP, destination.GetStackIndex(), TMP); in MoveConstant()
933 __ StoreConst64ToOffset(value, SP, destination.GetStackIndex(), TMP); in MoveConstant()
939 __ LoadSConst32(destination.AsFpuRegister<FRegister>(), value, TMP); in MoveConstant()
943 __ StoreConst32ToOffset(value, SP, destination.GetStackIndex(), TMP); in MoveConstant()
951 __ LoadDConst64(fd, value, TMP); in MoveConstant()
955 __ StoreConst64ToOffset(value, SP, destination.GetStackIndex(), TMP); in MoveConstant()
980 Register temp = TMP; in MarkGCCard()
1007 blocked_core_registers_[TMP] = true; in SetupBlockedRegisters()
1098 __ LoadFromOffset(kLoadWord, TMP, class_reg, mirror::Class::StatusOffset().Int32Value()); in GenerateClassInitializationCheck()
1100 __ Blt(TMP, AT, slow_path->GetEntryLabel()); in GenerateClassInitializationCheck()
1117 TMP, in GenerateSuspendCheck()
1121 __ Bnez(TMP, slow_path->GetEntryLabel()); in GenerateSuspendCheck()
1124 __ Beqz(TMP, codegen_->GetLabelOf(successor)); in GenerateSuspendCheck()
1255 __ Slt(TMP, lhs_low, ZERO); in HandleBinaryOp()
1260 __ Sltu(TMP, dst_low, (dst_low == rhs_low) ? lhs_low : rhs_low); in HandleBinaryOp()
1263 __ Addu(dst_high, dst_high, TMP); in HandleBinaryOp()
1266 __ Sltu(TMP, lhs_low, rhs_low); in HandleBinaryOp()
1269 __ Subu(dst_high, dst_high, TMP); in HandleBinaryOp()
1281 __ LoadConst32(TMP, low); in HandleBinaryOp()
1282 __ Or(dst_low, lhs_low, TMP); in HandleBinaryOp()
1290 __ LoadConst32(TMP, high); in HandleBinaryOp()
1292 __ Or(dst_high, lhs_high, TMP); in HandleBinaryOp()
1302 __ LoadConst32(TMP, low); in HandleBinaryOp()
1303 __ Xor(dst_low, lhs_low, TMP); in HandleBinaryOp()
1311 __ LoadConst32(TMP, high); in HandleBinaryOp()
1313 __ Xor(dst_high, lhs_high, TMP); in HandleBinaryOp()
1321 __ LoadConst32(TMP, low); in HandleBinaryOp()
1322 __ And(dst_low, lhs_low, TMP); in HandleBinaryOp()
1330 __ LoadConst32(TMP, high); in HandleBinaryOp()
1332 __ And(dst_high, lhs_high, TMP); in HandleBinaryOp()
1352 __ LoadConst32(TMP, low); in HandleBinaryOp()
1353 __ Addu(dst_low, lhs_low, TMP); in HandleBinaryOp()
1354 __ Sltu(AT, dst_low, TMP); in HandleBinaryOp()
1362 __ LoadConst32(TMP, high); in HandleBinaryOp()
1364 __ Addu(dst_high, lhs_high, TMP); in HandleBinaryOp()
1458 __ Sll(TMP, lhs, (kMipsBitsPerWord - shift_value) & shift_mask); in HandleShift()
1460 __ Or(dst, dst, TMP); in HandleShift()
1474 __ Subu(TMP, ZERO, rhs_reg); in HandleShift()
1480 __ Sllv(TMP, lhs, TMP); in HandleShift()
1482 __ Or(dst, dst, TMP); in HandleShift()
1520 __ Srl(TMP, lhs_low, kMipsBitsPerWord - shift_value); in HandleShift()
1522 __ Or(dst_high, dst_high, TMP); in HandleShift()
1525 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value); in HandleShift()
1527 __ Or(dst_low, dst_low, TMP); in HandleShift()
1530 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value); in HandleShift()
1532 __ Or(dst_low, dst_low, TMP); in HandleShift()
1534 __ Srl(TMP, lhs_low, shift_value); in HandleShift()
1536 __ Or(dst_low, dst_low, TMP); in HandleShift()
1537 __ Srl(TMP, lhs_high, shift_value); in HandleShift()
1539 __ Or(dst_high, dst_high, TMP); in HandleShift()
1565 __ Sll(TMP, lhs_low, kMipsBitsPerWord - shift_value_high); in HandleShift()
1567 __ Or(dst_low, dst_low, TMP); in HandleShift()
1568 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value_high); in HandleShift()
1570 __ Or(dst_high, dst_high, TMP); in HandleShift()
1580 __ Srl(TMP, lhs_low, 1); in HandleShift()
1581 __ Srlv(TMP, TMP, AT); in HandleShift()
1583 __ Or(dst_high, dst_high, TMP); in HandleShift()
1584 __ Andi(TMP, rhs_reg, kMipsBitsPerWord); in HandleShift()
1585 __ Beqz(TMP, &done); in HandleShift()
1591 __ Sll(TMP, lhs_high, 1); in HandleShift()
1592 __ Sllv(TMP, TMP, AT); in HandleShift()
1594 __ Or(dst_low, dst_low, TMP); in HandleShift()
1595 __ Andi(TMP, rhs_reg, kMipsBitsPerWord); in HandleShift()
1596 __ Beqz(TMP, &done); in HandleShift()
1602 __ Sll(TMP, lhs_high, 1); in HandleShift()
1603 __ Sllv(TMP, TMP, AT); in HandleShift()
1605 __ Or(dst_low, dst_low, TMP); in HandleShift()
1606 __ Andi(TMP, rhs_reg, kMipsBitsPerWord); in HandleShift()
1607 __ Beqz(TMP, &done); in HandleShift()
1612 __ Srlv(TMP, lhs_low, rhs_reg); in HandleShift()
1615 __ Or(dst_low, dst_low, TMP); in HandleShift()
1616 __ Srlv(TMP, lhs_high, rhs_reg); in HandleShift()
1619 __ Or(dst_high, dst_high, TMP); in HandleShift()
1620 __ Andi(TMP, rhs_reg, kMipsBitsPerWord); in HandleShift()
1621 __ Beqz(TMP, &done); in HandleShift()
1622 __ Move(TMP, dst_high); in HandleShift()
1624 __ Move(dst_low, TMP); in HandleShift()
1679 __ Addu(TMP, obj, index.AsRegister<Register>()); in VisitArrayGet()
1680 __ LoadFromOffset(kLoadUnsignedByte, out, TMP, data_offset); in VisitArrayGet()
1693 __ Addu(TMP, obj, index.AsRegister<Register>()); in VisitArrayGet()
1694 __ LoadFromOffset(kLoadSignedByte, out, TMP, data_offset); in VisitArrayGet()
1707 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2); in VisitArrayGet()
1708 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1709 __ LoadFromOffset(kLoadSignedHalfword, out, TMP, data_offset); in VisitArrayGet()
1722 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2); in VisitArrayGet()
1723 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1724 __ LoadFromOffset(kLoadUnsignedHalfword, out, TMP, data_offset); in VisitArrayGet()
1739 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4); in VisitArrayGet()
1740 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1741 __ LoadFromOffset(kLoadWord, out, TMP, data_offset); in VisitArrayGet()
1754 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8); in VisitArrayGet()
1755 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1756 __ LoadFromOffset(kLoadDoubleword, out, TMP, data_offset); in VisitArrayGet()
1769 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4); in VisitArrayGet()
1770 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1771 __ LoadSFromOffset(out, TMP, data_offset); in VisitArrayGet()
1784 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8); in VisitArrayGet()
1785 __ Addu(TMP, obj, TMP); in VisitArrayGet()
1786 __ LoadDFromOffset(out, TMP, data_offset); in VisitArrayGet()
1853 __ Addu(TMP, obj, index.AsRegister<Register>()); in VisitArraySet()
1854 __ StoreToOffset(kStoreByte, value, TMP, data_offset); in VisitArraySet()
1868 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2); in VisitArraySet()
1869 __ Addu(TMP, obj, TMP); in VisitArraySet()
1870 __ StoreToOffset(kStoreHalfword, value, TMP, data_offset); in VisitArraySet()
1886 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4); in VisitArraySet()
1887 __ Addu(TMP, obj, TMP); in VisitArraySet()
1888 __ StoreToOffset(kStoreWord, value, TMP, data_offset); in VisitArraySet()
1915 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8); in VisitArraySet()
1916 __ Addu(TMP, obj, TMP); in VisitArraySet()
1917 __ StoreToOffset(kStoreDoubleword, value, TMP, data_offset); in VisitArraySet()
1931 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4); in VisitArraySet()
1932 __ Addu(TMP, obj, TMP); in VisitArraySet()
1933 __ StoreSToOffset(value, TMP, data_offset); in VisitArraySet()
1947 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8); in VisitArraySet()
1948 __ Addu(TMP, obj, TMP); in VisitArraySet()
1949 __ StoreDToOffset(value, TMP, data_offset); in VisitArraySet()
2088 __ Slt(TMP, lhs, rhs); in VisitCompare()
2090 __ Subu(res, res, TMP); in VisitCompare()
2100 __ Slt(TMP, lhs_high, rhs_high); in VisitCompare()
2102 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ]. in VisitCompare()
2104 __ Sltu(TMP, lhs_low, rhs_low); in VisitCompare()
2106 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ]. in VisitCompare()
2303 __ Srl(TMP, dividend, 31); in DivRemByPowerOfTwo()
2305 __ Sra(TMP, dividend, 31); in DivRemByPowerOfTwo()
2306 __ Srl(TMP, TMP, 32 - ctz_imm); in DivRemByPowerOfTwo()
2308 __ Addu(out, dividend, TMP); in DivRemByPowerOfTwo()
2316 __ Sra(TMP, dividend, 31); in DivRemByPowerOfTwo()
2317 __ Subu(out, dividend, TMP); in DivRemByPowerOfTwo()
2319 __ Addu(out, out, TMP); in DivRemByPowerOfTwo()
2321 __ Sra(TMP, dividend, 31); in DivRemByPowerOfTwo()
2322 __ Srl(TMP, TMP, 32 - ctz_imm); in DivRemByPowerOfTwo()
2323 __ Addu(out, dividend, TMP); in DivRemByPowerOfTwo()
2330 __ Subu(out, out, TMP); in DivRemByPowerOfTwo()
2353 __ LoadConst32(TMP, magic); in GenerateDivRemWithAnyConstant()
2355 __ MuhR6(TMP, dividend, TMP); in GenerateDivRemWithAnyConstant()
2357 __ MultR2(dividend, TMP); in GenerateDivRemWithAnyConstant()
2358 __ Mfhi(TMP); in GenerateDivRemWithAnyConstant()
2361 __ Addu(TMP, TMP, dividend); in GenerateDivRemWithAnyConstant()
2363 __ Subu(TMP, TMP, dividend); in GenerateDivRemWithAnyConstant()
2367 __ Sra(TMP, TMP, shift); in GenerateDivRemWithAnyConstant()
2371 __ Sra(out, TMP, 31); in GenerateDivRemWithAnyConstant()
2372 __ Subu(out, TMP, out); in GenerateDivRemWithAnyConstant()
2374 __ Sra(AT, TMP, 31); in GenerateDivRemWithAnyConstant()
2375 __ Subu(AT, TMP, AT); in GenerateDivRemWithAnyConstant()
2376 __ LoadConst32(TMP, imm); in GenerateDivRemWithAnyConstant()
2378 __ MulR6(TMP, AT, TMP); in GenerateDivRemWithAnyConstant()
2380 __ MulR2(TMP, AT, TMP); in GenerateDivRemWithAnyConstant()
2382 __ Subu(out, dividend, TMP); in GenerateDivRemWithAnyConstant()
2543 __ Or(TMP, value.AsRegisterPairHigh<Register>(), value.AsRegisterPairLow<Register>()); in VisitDivZeroCheck()
2544 __ Beqz(TMP, slow_path->GetEntryLabel()); in VisitDivZeroCheck()
2639 rhs_reg = TMP; in GenerateIntCompare()
2657 rhs_reg = TMP; in GenerateIntCompare()
2681 rhs_reg = TMP; in GenerateIntCompare()
2703 rhs_reg = TMP; in GenerateIntCompare()
2733 rhs_reg = TMP; in GenerateIntCompare()
2792 rhs_reg = TMP; in GenerateIntCompareAndBranch()
2855 __ Or(TMP, lhs_high, lhs_low); in GenerateLongCompareAndBranch()
2856 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2860 __ Or(TMP, lhs_high, lhs_low); in GenerateLongCompareAndBranch()
2861 __ Bnez(TMP, label); in GenerateLongCompareAndBranch()
2870 __ Or(TMP, lhs_high, lhs_low); in GenerateLongCompareAndBranch()
2872 __ Bgeu(AT, TMP, label); in GenerateLongCompareAndBranch()
2875 __ Or(TMP, lhs_high, lhs_low); in GenerateLongCompareAndBranch()
2877 __ Bltu(AT, TMP, label); in GenerateLongCompareAndBranch()
2889 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2890 __ Xor(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2893 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2894 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2897 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2898 __ Xor(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2901 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2902 __ Bnez(TMP, label); in GenerateLongCompareAndBranch()
2905 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2906 __ Blt(lhs_high, TMP, label); in GenerateLongCompareAndBranch()
2907 __ Slt(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2910 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
2913 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2914 __ Blt(TMP, lhs_high, label); in GenerateLongCompareAndBranch()
2915 __ Slt(TMP, lhs_high, TMP); in GenerateLongCompareAndBranch()
2918 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2919 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2922 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2923 __ Blt(lhs_high, TMP, label); in GenerateLongCompareAndBranch()
2924 __ Slt(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2927 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2928 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2931 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2932 __ Blt(TMP, lhs_high, label); in GenerateLongCompareAndBranch()
2933 __ Slt(TMP, lhs_high, TMP); in GenerateLongCompareAndBranch()
2936 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
2939 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2940 __ Bltu(lhs_high, TMP, label); in GenerateLongCompareAndBranch()
2941 __ Sltu(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2944 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
2947 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2948 __ Bltu(TMP, lhs_high, label); in GenerateLongCompareAndBranch()
2949 __ Sltu(TMP, lhs_high, TMP); in GenerateLongCompareAndBranch()
2952 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2953 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2956 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2957 __ Bltu(lhs_high, TMP, label); in GenerateLongCompareAndBranch()
2958 __ Sltu(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch()
2961 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2962 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2965 __ LoadConst32(TMP, imm_high); in GenerateLongCompareAndBranch()
2966 __ Bltu(TMP, lhs_high, label); in GenerateLongCompareAndBranch()
2967 __ Sltu(TMP, lhs_high, TMP); in GenerateLongCompareAndBranch()
2970 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
2976 __ Xor(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
2978 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2979 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
2982 __ Xor(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
2984 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2985 __ Bnez(TMP, label); in GenerateLongCompareAndBranch()
2989 __ Slt(TMP, rhs_high, lhs_high); in GenerateLongCompareAndBranch()
2991 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
2995 __ Slt(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
2997 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
2998 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
3002 __ Slt(TMP, rhs_high, lhs_high); in GenerateLongCompareAndBranch()
3004 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
3005 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
3009 __ Slt(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
3011 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
3015 __ Sltu(TMP, rhs_high, lhs_high); in GenerateLongCompareAndBranch()
3017 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
3021 __ Sltu(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
3023 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
3024 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
3028 __ Sltu(TMP, rhs_high, lhs_high); in GenerateLongCompareAndBranch()
3030 __ Or(TMP, TMP, AT); in GenerateLongCompareAndBranch()
3031 __ Beqz(TMP, label); in GenerateLongCompareAndBranch()
3035 __ Sltu(TMP, lhs_high, rhs_high); in GenerateLongCompareAndBranch()
3037 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch()
4162 __ MulR6(TMP, lhs_high, rhs_low); in VisitMul()
4164 __ Addu(dst_high, dst_high, TMP); in VisitMul()
4165 __ MuhuR6(TMP, lhs_low, rhs_low); in VisitMul()
4166 __ Addu(dst_high, dst_high, TMP); in VisitMul()
4169 __ MulR2(TMP, lhs_high, rhs_low); in VisitMul()
4171 __ Addu(dst_high, dst_high, TMP); in VisitMul()
4173 __ Mfhi(TMP); in VisitMul()
4174 __ Addu(dst_high, dst_high, TMP); in VisitMul()
4234 __ Sltu(TMP, ZERO, dst_low); in VisitNeg()
4236 __ Subu(dst_high, dst_high, TMP); in VisitNeg()
4882 __ LoadConst32(TMP, min_val); in VisitTypeConversion()
4883 __ Mtc1(TMP, FTMP); in VisitTypeConversion()
4887 __ LoadConst32(TMP, High32Bits(min_val)); in VisitTypeConversion()
4889 __ Mthc1(TMP, FTMP); in VisitTypeConversion()
4902 __ Mfc1(TMP, FTMP); in VisitTypeConversion()
4903 __ And(dst_high, dst_high, TMP); in VisitTypeConversion()
4946 __ LoadConst32(TMP, min_val); in VisitTypeConversion()
4947 __ Mtc1(TMP, FTMP); in VisitTypeConversion()
4950 __ LoadConst32(TMP, High32Bits(min_val)); in VisitTypeConversion()
4953 __ Mtc1(TMP, static_cast<FRegister>(FTMP + 1)); in VisitTypeConversion()
4955 __ Mthc1(TMP, FTMP); in VisitTypeConversion()
4973 __ Mfc1(TMP, FTMP); in VisitTypeConversion()
4974 __ And(dst, dst, TMP); in VisitTypeConversion()
5140 Register temp_reg = TMP; in VisitPackedSwitch()