Commit c1e22275 authored by Clément Chigot's avatar Clément Chigot Committed by Ian Lance Taylor

runtime: use AIX C ABI in asmcgocall

The commit fixes asmcgocall in order to use the AIX C ABI.

Change-Id: I2a44914a65557a841ea1e12991938af26ad7fd1d
Reviewed-on: https://go-review.googlesource.com/c/go/+/164000
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 294edb27
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
#include "textflag.h" #include "textflag.h"
#include "asm_ppc64x.h" #include "asm_ppc64x.h"
#ifdef GOOS_aix
#define cgoCalleeStackSize 48
#else
#define cgoCalleeStackSize 32
#endif
TEXT runtime·rt0_go(SB),NOSPLIT,$0 TEXT runtime·rt0_go(SB),NOSPLIT,$0
// R1 = stack; R3 = argc; R4 = argv; R13 = C TLS base pointer // R1 = stack; R3 = argc; R4 = argv; R13 = C TLS base pointer
...@@ -46,14 +52,16 @@ TEXT runtime·rt0_go(SB),NOSPLIT,$0 ...@@ -46,14 +52,16 @@ TEXT runtime·rt0_go(SB),NOSPLIT,$0
MOVD R13, R5 // arg 2: TLS base pointer MOVD R13, R5 // arg 2: TLS base pointer
MOVD $setg_gcc<>(SB), R4 // arg 1: setg MOVD $setg_gcc<>(SB), R4 // arg 1: setg
MOVD g, R3 // arg 0: G MOVD g, R3 // arg 0: G
// C functions expect 32 bytes of space on caller stack frame // C functions expect 32 (48 for AIX) bytes of space on caller
// and a 16-byte aligned R1 // stack frame and a 16-byte aligned R1
MOVD R1, R14 // save current stack MOVD R1, R14 // save current stack
SUB $32, R1 // reserve 32 bytes SUB $cgoCalleeStackSize, R1 // reserve the callee area
RLDCR $0, R1, $~15, R1 // 16-byte align RLDCR $0, R1, $~15, R1 // 16-byte align
BL (CTR) // may clobber R0, R3-R12 BL (CTR) // may clobber R0, R3-R12
MOVD R14, R1 // restore stack MOVD R14, R1 // restore stack
#ifndef GOOS_aix
MOVD 24(R1), R2 MOVD 24(R1), R2
#endif
XOR R0, R0 // fix R0 XOR R0, R0 // fix R0
nocgo: nocgo:
...@@ -553,6 +561,12 @@ TEXT gosave<>(SB),NOSPLIT|NOFRAME,$0 ...@@ -553,6 +561,12 @@ TEXT gosave<>(SB),NOSPLIT|NOFRAME,$0
BL runtime·badctxt(SB) BL runtime·badctxt(SB)
RET RET
#ifdef GOOS_aix
#define asmcgocallSaveOffset cgoCalleeStackSize + 8
#else
#define asmcgocallSaveOffset cgoCalleeStackSize
#endif
// func asmcgocall(fn, arg unsafe.Pointer) int32 // func asmcgocall(fn, arg unsafe.Pointer) int32
// Call fn(arg) on the scheduler stack, // Call fn(arg) on the scheduler stack,
// aligned appropriately for the gcc ABI. // aligned appropriately for the gcc ABI.
...@@ -583,19 +597,21 @@ TEXT ·asmcgocall(SB),NOSPLIT,$0-20 ...@@ -583,19 +597,21 @@ TEXT ·asmcgocall(SB),NOSPLIT,$0-20
// Now on a scheduling stack (a pthread-created stack). // Now on a scheduling stack (a pthread-created stack).
g0: g0:
// Save room for two of our pointers, plus 32 bytes of callee
// save area that lives on the caller stack.
#ifdef GOOS_aix #ifdef GOOS_aix
// Create a fake LR to improve backtrace. // Create a fake LR to improve backtrace.
MOVD $runtime·asmcgocall(SB), R6 MOVD $runtime·asmcgocall(SB), R6
MOVD R6, 16(R1) MOVD R6, 16(R1)
// AIX also save one argument on the stack.
SUB $8, R1
#endif #endif
SUB $48, R1 // Save room for two of our pointers, plus the callee
// save area that lives on the caller stack.
SUB $(asmcgocallSaveOffset+16), R1
RLDCR $0, R1, $~15, R1 // 16-byte alignment for gcc ABI RLDCR $0, R1, $~15, R1 // 16-byte alignment for gcc ABI
MOVD R5, 40(R1) // save old g on stack MOVD R5, (asmcgocallSaveOffset+8)(R1)// save old g on stack
MOVD (g_stack+stack_hi)(R5), R5 MOVD (g_stack+stack_hi)(R5), R5
SUB R7, R5 SUB R7, R5
MOVD R5, 32(R1) // save depth in old g stack (can't just save SP, as stack might be copied during a callback) MOVD R5, asmcgocallSaveOffset(R1) // save depth in old g stack (can't just save SP, as stack might be copied during a callback)
#ifdef GOOS_aix #ifdef GOOS_aix
MOVD R7, 0(R1) // Save frame pointer to allow manual backtrace with gdb MOVD R7, 0(R1) // Save frame pointer to allow manual backtrace with gdb
#else #else
...@@ -607,24 +623,21 @@ g0: ...@@ -607,24 +623,21 @@ g0:
#ifdef GOARCH_ppc64 #ifdef GOARCH_ppc64
// ppc64 use elf ABI v1. we must get the real entry address from // ppc64 use elf ABI v1. we must get the real entry address from
// first slot of the function descriptor before call. // first slot of the function descriptor before call.
#ifndef GOOS_aix // Same for AIX.
// aix just passes the function pointer for the moment, see golang.org/cl/146898 for details.
MOVD 8(R12), R2 MOVD 8(R12), R2
MOVD (R12), R12 MOVD (R12), R12
#endif
#endif #endif
MOVD R12, CTR MOVD R12, CTR
MOVD R4, R3 // arg in r3 MOVD R4, R3 // arg in r3
BL (CTR) BL (CTR)
// C code can clobber R0, so set it back to 0. F27-F31 are // C code can clobber R0, so set it back to 0. F27-F31 are
// callee save, so we don't need to recover those. // callee save, so we don't need to recover those.
XOR R0, R0 XOR R0, R0
// Restore g, stack pointer, toc pointer. // Restore g, stack pointer, toc pointer.
// R3 is errno, so don't touch it // R3 is errno, so don't touch it
MOVD 40(R1), g MOVD (asmcgocallSaveOffset+8)(R1), g
MOVD (g_stack+stack_hi)(g), R5 MOVD (g_stack+stack_hi)(g), R5
MOVD 32(R1), R6 MOVD asmcgocallSaveOffset(R1), R6
SUB R6, R5 SUB R6, R5
#ifndef GOOS_aix #ifndef GOOS_aix
MOVD 24(R5), R2 MOVD 24(R5), R2
......
...@@ -30,7 +30,13 @@ TEXT runtime·callCfunction(SB), NOSPLIT|NOFRAME,$0 ...@@ -30,7 +30,13 @@ TEXT runtime·callCfunction(SB), NOSPLIT|NOFRAME,$0
// Called by runtime.asmcgocall // Called by runtime.asmcgocall
// It reserves a stack of 288 bytes for the C function. // It reserves a stack of 288 bytes for the C function.
// NOT USING GO CALLING CONVENTION // NOT USING GO CALLING CONVENTION
TEXT runtime·asmsyscall6(SB),NOSPLIT,$256 // runtime.asmsyscall6 is a function descriptor to the real asmsyscall6.
DATA runtime·asmsyscall6+0(SB)/8, $runtime·_asmsyscall6(SB)
DATA runtime·asmsyscall6+8(SB)/8, $TOC(SB)
DATA runtime·asmsyscall6+16(SB)/8, $0
GLOBL runtime·asmsyscall6(SB), NOPTR, $24
TEXT runtime·_asmsyscall6(SB),NOSPLIT,$256
MOVD R3, 48(R1) // Save libcall for later MOVD R3, 48(R1) // Save libcall for later
MOVD libcall_fn(R3), R12 MOVD libcall_fn(R3), R12
MOVD libcall_args(R3), R9 MOVD libcall_args(R3), R9
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment