mirror of
https://github.com/golang/go
synced 2024-11-20 03:24:41 -07:00
c007ce824d
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.
47 lines
631 B
ArmAsm
47 lines
631 B
ArmAsm
// Copyright 2013 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"
|
|
|
|
TEXT runtime·memmove(SB), NOSPLIT, $0-12
|
|
MOVL to+0(FP), DI
|
|
MOVL from+4(FP), SI
|
|
MOVL n+8(FP), BX
|
|
|
|
CMPL SI, DI
|
|
JLS back
|
|
|
|
forward:
|
|
MOVL BX, CX
|
|
SHRL $3, CX
|
|
ANDL $7, BX
|
|
REP; MOVSQ
|
|
MOVL BX, CX
|
|
REP; MOVSB
|
|
RET
|
|
|
|
back:
|
|
MOVL SI, CX
|
|
ADDL BX, CX
|
|
CMPL CX, DI
|
|
JLS forward
|
|
|
|
ADDL BX, DI
|
|
ADDL BX, SI
|
|
STD
|
|
|
|
MOVL BX, CX
|
|
SHRL $3, CX
|
|
ANDL $7, BX
|
|
SUBL $8, DI
|
|
SUBL $8, SI
|
|
REP; MOVSQ
|
|
ADDL $7, DI
|
|
ADDL $7, SI
|
|
MOVL BX, CX
|
|
REP; MOVSB
|
|
CLD
|
|
|
|
RET
|