mirror of
https://github.com/golang/go
synced 2024-11-06 04:36:15 -07:00
dfbf568c9f
This replaces frame size -4/-8 with the NOFRAME flag in mips and mips64 assembly. This was automated with: sed -i -e 's/\(^TEXT.*[A-Z]\),\( *\)\$-[84]/\1|NOFRAME,\2$0/' $(find -name '*_mips*.s') Plus a manual fix to mkduff.go. The go binary is identical on both architectures before and after this change. Change-Id: I0310384d1a584118c41d1cd3a042bb8ea7227efb Reviewed-on: https://go-review.googlesource.com/92044 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
32 lines
668 B
ArmAsm
32 lines
668 B
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.
|
|
|
|
// +build mips mipsle
|
|
// +build !gccgo
|
|
|
|
#include "textflag.h"
|
|
|
|
TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
|
|
// Rewind stack pointer so anything that happens on the stack
|
|
// will clobber the test pattern created by the caller
|
|
ADDU $(1024*8), R29
|
|
|
|
// Ask signaller to setgid
|
|
MOVW $1, R1
|
|
SYNC
|
|
MOVW R1, ·Baton(SB)
|
|
SYNC
|
|
|
|
// Wait for setgid completion
|
|
loop:
|
|
SYNC
|
|
MOVW ·Baton(SB), R1
|
|
OR R2, R2, R2 // hint that we're in a spin loop
|
|
BNE R1, loop
|
|
SYNC
|
|
|
|
// Restore stack
|
|
ADDU $(-1024*8), R29
|
|
RET
|