mirror of
https://github.com/golang/go
synced 2024-11-19 14:24:47 -07:00
5fea2ccc77
The tree's pretty inconsistent about single space vs double space after a period in documentation. Make it consistently a single space, per earlier decisions. This means contributors won't be confused by misleading precedence. This CL doesn't use go/doc to parse. It only addresses // comments. It was generated with: $ perl -i -npe 's,^(\s*// .+[a-z]\.) +([A-Z]),$1 $2,' $(git grep -l -E '^\s*//(.+\.) +([A-Z])') $ go test go/doc -update Change-Id: Iccdb99c37c797ef1f804a94b22ba5ee4b500c4f7 Reviewed-on: https://go-review.googlesource.com/20022 Reviewed-by: Rob Pike <r@golang.org> Reviewed-by: Dave Day <djd@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
53 lines
932 B
ArmAsm
53 lines
932 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"
|
|
|
|
// This could use MOVSQ, but we use MOVSL so that if an object ends in
|
|
// a 4 byte pointer, we copy it as a unit instead of byte by byte.
|
|
|
|
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 $2, CX
|
|
ANDL $3, BX
|
|
REP; MOVSL
|
|
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 $2, CX
|
|
ANDL $3, BX
|
|
SUBL $4, DI
|
|
SUBL $4, SI
|
|
REP; MOVSL
|
|
ADDL $3, DI
|
|
ADDL $3, SI
|
|
MOVL BX, CX
|
|
REP; MOVSB
|
|
CLD
|
|
|
|
// Note: we copy only 4 bytes at a time so that the tail is at most
|
|
// 3 bytes. That guarantees that we aren't copying pointers with MOVSB.
|
|
// See issue 13160.
|
|
RET
|