mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
This time with the cherry-pick from the proper patch of the old CL. Stack size increased. Corrected NaN-comparison glitches. Marked g register as clobbered by calls. Fixed shared libraries. live_ssa.go still disabled because of differences. Presumably turning on more optimization will fix both the stack size and the live_ssa.go glitches. Enhanced debugging output for shared libs test. Rebased onto master. Updates #16010. Change-Id: I40864faf1ef32c118fb141b7ef8e854498e6b2c4 Reviewed-on: https://go-review.googlesource.com/27159 Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
21 lines
528 B
Go
21 lines
528 B
Go
// Copyright 2011 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.
|
|
|
|
package obj
|
|
|
|
// For the linkers. Must match Go definitions.
|
|
// TODO(rsc): Share Go definitions with linkers directly.
|
|
|
|
const (
|
|
STACKSYSTEM = 0
|
|
StackSystem = STACKSYSTEM
|
|
StackBig = 4096
|
|
StackGuard = 880*stackGuardMultiplier + StackSystem
|
|
StackSmall = 128
|
|
StackLimit = StackGuard - StackSystem - StackSmall
|
|
)
|
|
|
|
const (
|
|
StackPreempt = -1314 // 0xfff...fade
|
|
)
|