Lines Matching defs:temp1

1023       vixl32::Register temp1,
1032 temp1_(temp1),
4395 vixl32::Register temp1 = RegisterFrom(locations->GetTemp(0));
4404 __ Mov(temp1, static_cast<int32_t>(magic));
4405 __ Smull(temp2, temp1, dividend, temp1);
4408 __ Add(temp1, temp1, dividend);
4410 __ Sub(temp1, temp1, dividend);
4414 __ Asr(temp1, temp1, shift);
4418 __ Sub(out, temp1, Operand(temp1, vixl32::Shift(ASR), 31));
4420 __ Sub(temp1, temp1, Operand(temp1, vixl32::Shift(ASR), 31));
4423 __ Mls(out, temp1, temp2, dividend);
5374 vixl32::Register temp1,
5392 __ ldrexd(temp1, temp2, MemOperand(addr));
5395 __ Strexd(temp1, value_lo, value_hi, MemOperand(addr));
5396 __ CompareAndBranchIfNonZero(temp1, &fail);
6395 vixl32::Register temp1 = RegisterFrom(temp1_loc);
6442 // /* HeapReference<Class> */ temp1 = array->klass_
6443 __ ldr(temp1, MemOperand(array, class_offset));
6446 GetAssembler()->MaybeUnpoisonHeapReference(temp1);
6448 // /* HeapReference<Class> */ temp1 = temp1->component_type_
6449 GetAssembler()->LoadFromOffset(kLoadWord, temp1, temp1, component_offset);
6452 // If heap poisoning is enabled, no need to unpoison `temp1`
6454 __ Cmp(temp1, temp2);
6459 // If heap poisoning is enabled, the `temp1` reference has
6461 GetAssembler()->MaybeUnpoisonHeapReference(temp1);
6463 // /* HeapReference<Class> */ temp1 = temp1->super_class_
6464 GetAssembler()->LoadFromOffset(kLoadWord, temp1, temp1, super_offset);
6466 // `temp1`, as we are comparing against null below.
6467 __ CompareAndBranchIfNonZero(temp1, slow_path->GetEntryLabel());
6480 __ Mov(temp1, value);
6481 GetAssembler()->PoisonHeapReference(temp1);
6482 source = temp1;
6507 codegen_->MarkGCCard(temp1, temp2, array, value, instruction->GetValueCanBeNull());
6928 vixl32::Register temp1 = temps.Acquire();
6930 this, temp1.GetCode(), r0.GetCode(), codegen_->GetNumberOfCoreRegisters());
6934 GetAssembler()->LoadFromOffset(kLoadWord, temp1, sp, mem1 + stack_offset);
6936 GetAssembler()->StoreToOffset(kStoreWord, temp1, sp, mem2 + stack_offset);
7008 vixl32::DRegister temp1 = temps.AcquireD();
7010 __ Vldr(temp1, MemOperand(sp, source.GetStackIndex()));
7012 __ Vstr(temp1, MemOperand(sp, destination.GetStackIndex()));