mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.typeparams] internal/abi: define ARM64 register ABI constants
Change-Id: I9cdf0f2b6c1739f13a859a8e37351f8ecd77804a Reviewed-on: https://go-review.googlesource.com/c/go/+/323932 Trust: Cherry Mui <cherryyz@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
6633dc8b09
commit
c3639918d1
1 changed files with 20 additions and 0 deletions
20
src/internal/abi/abi_arm64.go
Normal file
20
src/internal/abi/abi_arm64.go
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
// Copyright 2021 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 goexperiment.regabireflect
|
||||||
|
// +build goexperiment.regabireflect
|
||||||
|
|
||||||
|
package abi
|
||||||
|
|
||||||
|
const (
|
||||||
|
// See abi_generic.go.
|
||||||
|
|
||||||
|
// R0 - R15.
|
||||||
|
IntArgRegs = 16
|
||||||
|
|
||||||
|
// F0 - F15.
|
||||||
|
FloatArgRegs = 16
|
||||||
|
|
||||||
|
EffectiveFloatRegSize = 8
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue