Skip to content
Snippets Groups Projects
Commit 76709385 authored by wlott's avatar wlott
Browse files

Changed make-old-fp-save-location and make-return-pc-save-location to

specify environment-debug live tns with specific save locations instead of
stack wired environment live tns.
parent cd6465ff
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.27 1990/08/23 18:48:04 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.28 1990/09/06 17:41:50 wlott Exp $
;;; ;;;
;;; This file contains the VM definition of function call for the MIPS. ;;; This file contains the VM definition of function call for the MIPS.
;;; ;;;
...@@ -67,16 +67,18 @@ ...@@ -67,16 +67,18 @@
;;; known location. ;;; known location.
;;; ;;;
(defun make-old-fp-save-location (env) (defun make-old-fp-save-location (env)
(environment-live-tn (specify-save-tn
(environment-debug-live-tn (make-normal-tn *fixnum-primitive-type*) env)
(make-wired-tn *fixnum-primitive-type* (make-wired-tn *fixnum-primitive-type*
control-stack-arg-scn control-stack-arg-scn
old-fp-save-offset) old-fp-save-offset)))
env))
;;; ;;;
(defun make-return-pc-save-location (env) (defun make-return-pc-save-location (env)
(environment-live-tn (specify-save-tn
(make-wired-tn *any-primitive-type* control-stack-arg-scn lra-save-offset) (environment-debug-live-tn (make-normal-tn *any-primitive-type*) env)
env)) (make-wired-tn *any-primitive-type*
control-stack-arg-scn
lra-save-offset)))
;;; Make-Argument-Count-Location -- Interface ;;; Make-Argument-Count-Location -- Interface
;;; ;;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment