mirror of
https://github.com/golang/go
synced 2024-11-18 12:24:48 -07:00
369d7119de
Change-Id: Iae6ac32db5c2aacb323793a7e0dc34e09648d035 Reviewed-on: https://go-review.googlesource.com/c/go/+/482295 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org>
31 lines
663 B
ArmAsm
31 lines
663 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.
|
|
|
|
//go:build (mips || mipsle) && gc
|
|
|
|
#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
|