From c9ad0856d5de6321c672936e6fc507a155ee8d98 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 23 May 2010 03:00:53 -0400 Subject: [PATCH] cpu.x86.64: callback prologue was clobbering 5th parameter register on x86-64 --- basis/compiler/tests/alien.factor | 8 ++++++++ basis/cpu/x86/64/64.factor | 8 ++------ basis/cpu/x86/64/unix/unix.factor | 2 -- basis/cpu/x86/64/winnt/winnt.factor | 2 -- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/basis/compiler/tests/alien.factor b/basis/compiler/tests/alien.factor index 7045e64928..476e6da39e 100755 --- a/basis/compiler/tests/alien.factor +++ b/basis/compiler/tests/alien.factor @@ -763,6 +763,14 @@ mingw? [ [ S{ test-struct-11 f 7 -3 } ] [ 3 4 7 fastcall-struct-return-iii-callback fastcall-struct-return-iii-indirect ] unit-test +: x64-regression-1 ( -- c ) + int { int int int int int } cdecl [ + + + + ] alien-callback ; + +: x64-regression-2 ( x x x x x c -- y ) + int { int int int int int } cdecl alien-indirect ; inline + +[ 661 ] [ 100 500 50 10 1 x64-regression-1 x64-regression-2 ] unit-test + ! Stack allocation : blah ( -- x ) { RECT } [ 1.5 >>x 2.0 >>y [ x>> ] [ y>> ] bi * >fixnum ] with-scoped-allocation ; diff --git a/basis/cpu/x86/64/64.factor b/basis/cpu/x86/64/64.factor index ad4fc626f1..bde0507af9 100644 --- a/basis/cpu/x86/64/64.factor +++ b/basis/cpu/x86/64/64.factor @@ -58,14 +58,10 @@ M: x86.64 %set-vm-field ( src offset -- ) M: x86.64 %vm-field-ptr ( dst offset -- ) [ vm-reg ] dip [+] LEA ; -! Must be a volatile register not used for parameter passing or -! integer return -HOOK: temp-reg cpu ( -- reg ) - M: x86.64 %prologue ( n -- ) - temp-reg -7 [RIP+] LEA + R11 -7 [RIP+] LEA dup PUSH - temp-reg PUSH + R11 PUSH stack-reg swap 3 cells - SUB ; M: x86.64 %prepare-jump diff --git a/basis/cpu/x86/64/unix/unix.factor b/basis/cpu/x86/64/unix/unix.factor index c25cfa19ec..2ce959d29a 100644 --- a/basis/cpu/x86/64/unix/unix.factor +++ b/basis/cpu/x86/64/unix/unix.factor @@ -45,6 +45,4 @@ M: x86.64 dummy-int-params? f ; M: x86.64 dummy-fp-params? f ; -M: x86.64 temp-reg R8 ; - M: x86.64 %prepare-var-args RAX RAX XOR ; diff --git a/basis/cpu/x86/64/winnt/winnt.factor b/basis/cpu/x86/64/winnt/winnt.factor index 011de59ccb..7f1f29a603 100644 --- a/basis/cpu/x86/64/winnt/winnt.factor +++ b/basis/cpu/x86/64/winnt/winnt.factor @@ -23,5 +23,3 @@ M: x86.64 dummy-stack-params? f ; M: x86.64 dummy-int-params? t ; M: x86.64 dummy-fp-params? t ; - -M: x86.64 temp-reg R11 ;