Home
last modified time | relevance | path

Searched refs:temp_0 (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/arm/
Dcode-generator-arm.cc1963 Register temp_0 = kScratchReg; in AssembleSwap() local
1967 __ ldr(temp_0, src); in AssembleSwap()
1969 __ str(temp_0, dst); in AssembleSwap()
2004 Register temp_0 = kScratchReg; in AssembleSwap() local
2013 __ ldr(temp_0, src0); // Then use temp_0 to copy source to destination. in AssembleSwap()
2014 __ str(temp_0, dst0); in AssembleSwap()
2015 __ ldr(temp_0, src1); in AssembleSwap()
2016 __ str(temp_0, dst1); in AssembleSwap()
2021 __ ldr(temp_0, src0); // Then use temp_0 to copy source to destination. in AssembleSwap()
2022 __ str(temp_0, dst0); in AssembleSwap()
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc2215 Register temp_0 = kScratchReg; in AssembleSwap() local
2219 __ lw(temp_0, src); in AssembleSwap()
2221 __ sw(temp_0, dst); in AssembleSwap()
2251 Register temp_0 = kScratchReg; in AssembleSwap() local
2260 __ lw(temp_0, src0); // Then use temp_0 to copy source to destination. in AssembleSwap()
2261 __ sw(temp_0, dst0); in AssembleSwap()
2262 __ lw(temp_0, src1); in AssembleSwap()
2263 __ sw(temp_0, dst1); in AssembleSwap()
2267 __ lw(temp_0, src0); // Then use temp_0 to copy source to destination. in AssembleSwap()
2268 __ sw(temp_0, dst0); in AssembleSwap()
/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc2515 Register temp_0 = kScratchReg; in AssembleSwap() local
2519 __ ld(temp_0, src); in AssembleSwap()
2521 __ sd(temp_0, dst); in AssembleSwap()
2540 Register temp_0 = kScratchReg; in AssembleSwap() local
2547 __ lw(temp_0, src0); // Then use temp_0 to copy source to destination. in AssembleSwap()
2548 __ sw(temp_0, dst0); in AssembleSwap()
2549 __ lw(temp_0, src1); in AssembleSwap()
2550 __ sw(temp_0, dst1); in AssembleSwap()
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc2515 Register temp_0 = kScratchReg; in AssembleMove() local
2519 __ LoadP(temp_0, src); in AssembleMove()
2521 __ StoreP(temp_0, dst); in AssembleMove()
2541 DoubleRegister temp_0 = kScratchDoubleReg; in AssembleMove() local
2546 __ LoadDouble(temp_0, src); in AssembleMove()
2548 __ StoreDouble(temp_0, dst); in AssembleMove()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc2391 Register temp_0 = kScratchReg; in AssembleMove() local
2395 __ LoadP(temp_0, src); in AssembleMove()
2397 __ StoreP(temp_0, dst); in AssembleMove()
2417 DoubleRegister temp_0 = kScratchDoubleReg; in AssembleMove() local
2421 __ lfd(temp_0, src); in AssembleMove()
2423 __ stfd(temp_0, dst); in AssembleMove()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc2061 DoubleRegister temp_0 = scope.AcquireD(); in AssembleSwap() local
2065 __ Ldr(temp_0, src); in AssembleSwap()
2067 __ Str(temp_0, dst); in AssembleSwap()