mirror of
https://github.com/golang/go
synced 2024-11-20 03:04:40 -07:00
a4855812e2
Shared libraries on ppc64le will require a larger minimum stack frame (because the ABI mandates that the TOC pointer is available at 24(R1)). So to prepare for this, make a constant for the fixed part of a stack and use that where necessary. Change-Id: I447949f4d725003bb82e7d2cf7991c1bca5aa887 Reviewed-on: https://go-review.googlesource.com/15523 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
20 lines
451 B
Go
20 lines
451 B
Go
// 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.
|
|
|
|
package runtime
|
|
|
|
const (
|
|
thechar = '6'
|
|
_BigEndian = 0
|
|
_CacheLineSize = 64
|
|
_PhysPageSize = 65536*goos_nacl + 4096*(1-goos_nacl)
|
|
_PCQuantum = 1
|
|
_Int64Align = 8
|
|
hugePageSize = 1 << 21
|
|
minFrameSize = 0
|
|
)
|
|
|
|
type uintreg uint64
|
|
type intptr int32 // TODO(rsc): remove
|