Changeset 5768


Ignore:
Timestamp:
Jan 21, 2007, 5:45:59 AM (18 years ago)
Author:
Gary Byers
Message:

WITH-FFCALL-RESULTS for x86-64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/compiler/X86/X8664/x8664-arch.lisp

    r5763 r5768  
    12761276  `(ccl::%function-vector-to-function ,v))
    12771277
     1278(defx8664archmacro ccl::with-ffcall-results ((buf) &body body)
     1279  ;; Reserve space for rax,rdx,xmm0,xmm1 only.
     1280  (let* ((size (+ (* 2 8) (* 2 8))))
     1281    `(ccl::%stack-block ((,buf ,size))
     1282      ,@body)))
     1283 
     1284
    12781285
    12791286(provide "X8664-ARCH")
Note: See TracChangeset for help on using the changeset viewer.