mirror of
https://github.com/golang/go
synced 2024-11-05 15:16:11 -07:00
6c4f8cd0d1
The test for #9400 relies on an assembler function that manipulates the stack pointer. Meanwile, it uses a global variable for synchronization. However, position independent code on 386 use a function call to fetch the base address for global variables. That function call in turn overwrites the Go stack. Fix that by fetching the global variable address once before the stack register manipulation. Fixes the android/386 builder. Change-Id: Ib77bd80affaa12f09d582d09d8b84a73bd021b60 Reviewed-on: https://go-review.googlesource.com/23683 Run-TryBot: Elias Naur <elias.naur@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: David Crawshaw <crawshaw@golang.org>
28 lines
578 B
ArmAsm
28 lines
578 B
ArmAsm
// Copyright 2014 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 !gccgo
|
|
|
|
#include "textflag.h"
|
|
|
|
TEXT ·RewindAndSetgid(SB),NOSPLIT,$0-0
|
|
MOVL $·Baton(SB), BX
|
|
// Rewind stack pointer so anything that happens on the stack
|
|
// will clobber the test pattern created by the caller
|
|
ADDL $(1024 * 8), SP
|
|
|
|
// Ask signaller to setgid
|
|
MOVL $1, (BX)
|
|
|
|
// Wait for setgid completion
|
|
loop:
|
|
PAUSE
|
|
MOVL (BX), AX
|
|
CMPL AX, $0
|
|
JNE loop
|
|
|
|
// Restore stack
|
|
SUBL $(1024 * 8), SP
|
|
RET
|