Home | History | Annotate | Download | only in optimizing

Lines Matching full:temp1

644                                               GpuRegister temp1)
649 temp1_(temp1) {
2488 GpuRegister temp1 = locations->GetTemp(0).AsRegister<GpuRegister>();
2521 // /* HeapReference<Class> */ temp1 = obj->klass_
2522 __ LoadFromOffset(kLoadUnsignedWord, temp1, obj, class_offset, null_checker);
2523 __ MaybeUnpoisonHeapReference(temp1);
2525 // /* HeapReference<Class> */ temp1 = temp1->component_type_
2526 __ LoadFromOffset(kLoadUnsignedWord, temp1, temp1, component_offset);
2529 // If heap poisoning is enabled, no need to unpoison `temp1`
2534 __ Beqc(temp1, temp2, &do_put);
2535 // If heap poisoning is enabled, the `temp1` reference has
2537 __ MaybeUnpoisonHeapReference(temp1);
2539 // /* HeapReference<Class> */ temp1 = temp1->super_class_
2540 __ LoadFromOffset(kLoadUnsignedWord, temp1, temp1, super_offset);
2542 // `temp1`, as we are comparing against null below.
2543 __ Bnezc(temp1, slow_path->GetEntryLabel());
2546 __ Bnec(temp1, temp2, slow_path->GetEntryLabel());
2555 __ Move(temp1, value);
2556 __ PoisonHeapReference(temp1);
2557 source = temp1;