mirror of
https://github.com/golang/go
synced 2024-11-27 01:31:21 -07:00
b55a2fb3b0
This allows memmove and memclr to be invoked using the new register ABI on riscv64. Change-Id: I3308d52e06547836cffcc533740fe535624e78d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/361975 Run-TryBot: mzh <mzh@golangcn.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
101 lines
1.9 KiB
ArmAsm
101 lines
1.9 KiB
ArmAsm
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#include "textflag.h"
|
|
|
|
// See memmove Go doc for important implementation constraints.
|
|
|
|
// void runtime·memmove(void*, void*, uintptr)
|
|
TEXT runtime·memmove<ABIInternal>(SB),NOSPLIT,$-0-24
|
|
#ifndef GOEXPERIMENT_regabiargs
|
|
MOV to+0(FP), A0
|
|
MOV from+8(FP), A1
|
|
MOV n+16(FP), A2
|
|
#endif
|
|
ADD A1, A2, T5
|
|
|
|
// If the destination is ahead of the source, start at the end of the
|
|
// buffer and go backward.
|
|
BLTU A1, A0, b
|
|
|
|
// If less than eight bytes, do one byte at a time.
|
|
SLTU $8, A2, T3
|
|
BNE T3, ZERO, f_outcheck
|
|
|
|
// Do one byte at a time until from is eight-aligned.
|
|
JMP f_aligncheck
|
|
f_align:
|
|
MOVB (A1), T3
|
|
MOVB T3, (A0)
|
|
ADD $1, A0
|
|
ADD $1, A1
|
|
f_aligncheck:
|
|
AND $7, A1, T3
|
|
BNE T3, ZERO, f_align
|
|
|
|
// Do eight bytes at a time as long as there is room.
|
|
ADD $-7, T5, T6
|
|
JMP f_wordscheck
|
|
f_words:
|
|
MOV (A1), T3
|
|
MOV T3, (A0)
|
|
ADD $8, A0
|
|
ADD $8, A1
|
|
f_wordscheck:
|
|
SLTU T6, A1, T3
|
|
BNE T3, ZERO, f_words
|
|
|
|
// Finish off the remaining partial word.
|
|
JMP f_outcheck
|
|
f_out:
|
|
MOVB (A1), T3
|
|
MOVB T3, (A0)
|
|
ADD $1, A0
|
|
ADD $1, A1
|
|
f_outcheck:
|
|
BNE A1, T5, f_out
|
|
|
|
RET
|
|
|
|
b:
|
|
ADD A0, A2, T4
|
|
// If less than eight bytes, do one byte at a time.
|
|
SLTU $8, A2, T3
|
|
BNE T3, ZERO, b_outcheck
|
|
|
|
// Do one byte at a time until from+n is eight-aligned.
|
|
JMP b_aligncheck
|
|
b_align:
|
|
ADD $-1, T4
|
|
ADD $-1, T5
|
|
MOVB (T5), T3
|
|
MOVB T3, (T4)
|
|
b_aligncheck:
|
|
AND $7, T5, T3
|
|
BNE T3, ZERO, b_align
|
|
|
|
// Do eight bytes at a time as long as there is room.
|
|
ADD $7, A1, T6
|
|
JMP b_wordscheck
|
|
b_words:
|
|
ADD $-8, T4
|
|
ADD $-8, T5
|
|
MOV (T5), T3
|
|
MOV T3, (T4)
|
|
b_wordscheck:
|
|
SLTU T5, T6, T3
|
|
BNE T3, ZERO, b_words
|
|
|
|
// Finish off the remaining partial word.
|
|
JMP b_outcheck
|
|
b_out:
|
|
ADD $-1, T4
|
|
ADD $-1, T5
|
|
MOVB (T5), T3
|
|
MOVB T3, (T4)
|
|
b_outcheck:
|
|
BNE T5, A1, b_out
|
|
|
|
RET
|