Lines Matching refs:scratch

648   MipsManagedRegister scratch = mscratch.AsMips();  in StoreImmediateToFrame()  local
649 CHECK(scratch.IsCoreRegister()) << scratch; in StoreImmediateToFrame()
650 LoadImmediate(scratch.AsCoreRegister(), imm); in StoreImmediateToFrame()
651 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value()); in StoreImmediateToFrame()
656 MipsManagedRegister scratch = mscratch.AsMips(); in StoreImmediateToThread32() local
657 CHECK(scratch.IsCoreRegister()) << scratch; in StoreImmediateToThread32()
658 LoadImmediate(scratch.AsCoreRegister(), imm); in StoreImmediateToThread32()
659 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), S1, dest.Int32Value()); in StoreImmediateToThread32()
665 MipsManagedRegister scratch = mscratch.AsMips(); in StoreStackOffsetToThread32() local
666 CHECK(scratch.IsCoreRegister()) << scratch; in StoreStackOffsetToThread32()
667 AddConstant(scratch.AsCoreRegister(), SP, fr_offs.Int32Value()); in StoreStackOffsetToThread32()
668 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), in StoreStackOffsetToThread32()
679 MipsManagedRegister scratch = mscratch.AsMips(); in StoreSpanning() local
681 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, in_off.Int32Value()); in StoreSpanning()
682 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value() + 4); in StoreSpanning()
763 MipsManagedRegister scratch = mscratch.AsMips(); in CopyRef() local
764 CHECK(scratch.IsCoreRegister()) << scratch; in CopyRef()
765 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, src.Int32Value()); in CopyRef()
766 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value()); in CopyRef()
772 MipsManagedRegister scratch = mscratch.AsMips(); in CopyRawPtrFromThread32() local
773 CHECK(scratch.IsCoreRegister()) << scratch; in CopyRawPtrFromThread32()
774 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in CopyRawPtrFromThread32()
776 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), in CopyRawPtrFromThread32()
783 MipsManagedRegister scratch = mscratch.AsMips(); in CopyRawPtrToThread32() local
784 CHECK(scratch.IsCoreRegister()) << scratch; in CopyRawPtrToThread32()
785 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in CopyRawPtrToThread32()
787 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), in CopyRawPtrToThread32()
793 MipsManagedRegister scratch = mscratch.AsMips(); in Copy() local
794 CHECK(scratch.IsCoreRegister()) << scratch; in Copy()
797 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, src.Int32Value()); in Copy()
798 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value()); in Copy()
800 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, src.Int32Value()); in Copy()
801 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value()); in Copy()
802 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, src.Int32Value() + 4); in Copy()
803 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value() + 4); in Copy()
809 Register scratch = mscratch.AsMips().AsCoreRegister(); in Copy() local
811 LoadFromOffset(kLoadWord, scratch, src_base.AsMips().AsCoreRegister(), src_offset.Int32Value()); in Copy()
812 StoreToOffset(kStoreWord, scratch, SP, dest.Int32Value()); in Copy()
817 Register scratch = mscratch.AsMips().AsCoreRegister(); in Copy() local
819 LoadFromOffset(kLoadWord, scratch, SP, src.Int32Value()); in Copy()
820 StoreToOffset(kStoreWord, scratch, dest_base.AsMips().AsCoreRegister(), dest_offset.Int32Value()); in Copy()
832 Register scratch = mscratch.AsMips().AsCoreRegister(); in Copy() local
833 LoadFromOffset(kLoadWord, scratch, src.AsMips().AsCoreRegister(), src_offset.Int32Value()); in Copy()
834 StoreToOffset(kStoreWord, scratch, dest.AsMips().AsCoreRegister(), dest_offset.Int32Value()); in Copy()
878 MipsManagedRegister scratch = mscratch.AsMips(); in CreateHandleScopeEntry() local
879 CHECK(scratch.IsCoreRegister()) << scratch; in CreateHandleScopeEntry()
882 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, in CreateHandleScopeEntry()
887 EmitBranch(scratch.AsCoreRegister(), ZERO, &null_arg, true); in CreateHandleScopeEntry()
888 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value()); in CreateHandleScopeEntry()
891 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value()); in CreateHandleScopeEntry()
893 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, out_off.Int32Value()); in CreateHandleScopeEntry()
923 MipsManagedRegister scratch = mscratch.AsMips(); in Call() local
925 CHECK(scratch.IsCoreRegister()) << scratch; in Call()
926 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in Call()
928 Jalr(scratch.AsCoreRegister()); in Call()
933 MipsManagedRegister scratch = mscratch.AsMips(); in Call() local
934 CHECK(scratch.IsCoreRegister()) << scratch; in Call()
936 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in Call()
938 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in Call()
939 scratch.AsCoreRegister(), offset.Int32Value()); in Call()
940 Jalr(scratch.AsCoreRegister()); in Call()
958 MipsManagedRegister scratch = mscratch.AsMips(); in ExceptionPoll() local
959 MipsExceptionSlowPath* slow = new MipsExceptionSlowPath(scratch, stack_adjust); in ExceptionPoll()
961 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), in ExceptionPoll()
963 EmitBranch(scratch.AsCoreRegister(), ZERO, slow->Entry(), false); in ExceptionPoll()