Lines Matching refs:temp1
44 Register temp1 = r4; in CreateExpFunction() local
53 __ Push(temp3, temp2, temp1); in CreateExpFunction()
56 temp1, temp2, temp3); in CreateExpFunction()
57 __ Pop(temp3, temp2, temp1); in CreateExpFunction()
97 Register temp1 = r3; in CreateMemCopyUint8Function()
198 __ bic(temp1, chars, Operand(0x3), SetCC); in CreateMemCopyUint8Function()
200 __ ldr(temp1, MemOperand(src, 4, PostIndex)); in CreateMemCopyUint8Function()
201 __ str(temp1, MemOperand(dest, 4, PostIndex)); in CreateMemCopyUint8Function()
211 __ ldr(temp1, MemOperand(src, 4, PostIndex)); in CreateMemCopyUint8Function()
212 __ str(temp1, MemOperand(dest, 4, PostIndex)); in CreateMemCopyUint8Function()
220 __ ldrh(temp1, MemOperand(src, 2, PostIndex), cs); in CreateMemCopyUint8Function()
221 __ strh(temp1, MemOperand(dest, 2, PostIndex), cs); in CreateMemCopyUint8Function()
222 __ ldrb(temp1, MemOperand(src), ne); in CreateMemCopyUint8Function()
223 __ strb(temp1, MemOperand(dest), ne); in CreateMemCopyUint8Function()
278 Register temp1 = r3; in CreateMemCopyUint16Uint8Function()
290 __ ldr(temp1, MemOperand(src, 4, PostIndex)); in CreateMemCopyUint16Uint8Function()
291 __ uxtb16(temp3, Operand(temp1, ROR, 0)); in CreateMemCopyUint16Uint8Function()
292 __ uxtb16(temp4, Operand(temp1, ROR, 8)); in CreateMemCopyUint16Uint8Function()
293 __ pkhbt(temp1, temp3, Operand(temp4, LSL, 16)); in CreateMemCopyUint16Uint8Function()
294 __ str(temp1, MemOperand(dest)); in CreateMemCopyUint16Uint8Function()
295 __ pkhtb(temp1, temp4, Operand(temp3, ASR, 16)); in CreateMemCopyUint16Uint8Function()
296 __ str(temp1, MemOperand(dest, 4)); in CreateMemCopyUint16Uint8Function()
303 __ ldrh(temp1, MemOperand(src, 2, PostIndex)); in CreateMemCopyUint16Uint8Function()
304 __ uxtb(temp3, Operand(temp1, ROR, 8)); in CreateMemCopyUint16Uint8Function()
306 __ uxtab(temp3, temp3, Operand(temp1, ROR, 0)); in CreateMemCopyUint16Uint8Function()
309 __ ldrb(temp1, MemOperand(src), ne); in CreateMemCopyUint16Uint8Function()
310 __ strh(temp1, MemOperand(dest), ne); in CreateMemCopyUint16Uint8Function()
787 Register temp1, in EmitMathExp() argument
796 DCHECK(!temp1.is(temp2)); in EmitMathExp()
797 DCHECK(!temp1.is(temp3)); in EmitMathExp()
835 __ mov(temp1, Operand(temp2, LSR, 11)); in EmitMathExp()
837 __ add(temp1, temp1, Operand(0x3ff)); in EmitMathExp()
845 __ orr(temp1, temp3, Operand(temp1, LSL, 20)); in EmitMathExp()
846 __ vmov(double_scratch1, temp2, temp1); in EmitMathExp()
848 __ orr(temp1, temp2, Operand(temp1, LSL, 20)); in EmitMathExp()
849 __ vmov(double_scratch1, temp3, temp1); in EmitMathExp()