From 17119d9298e132aa309f1cc95e439f29f61214b0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 19 Mar 2025 04:40:49 -0500 Subject: day1 --- abi/abi_ppc64x.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 abi/abi_ppc64x.go (limited to 'abi/abi_ppc64x.go') diff --git a/abi/abi_ppc64x.go b/abi/abi_ppc64x.go new file mode 100644 index 0000000..73416d7 --- /dev/null +++ b/abi/abi_ppc64x.go @@ -0,0 +1,19 @@ +// 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 ppc64 || ppc64le + +package abi + +const ( + // See abi_generic.go. + + // R3 - R10, R14 - R17. + IntArgRegs = 12 + + // F1 - F12. + FloatArgRegs = 12 + + EffectiveFloatRegSize = 8 +) -- cgit v1.2.3