From d6aecd9114a09738a4cc7c1d788b18600e11f796 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 23 Aug 1990 18:51:37 +0000 Subject: [PATCH] Wrote maybe-load-stack-tn, which will either load the value off the stack or move it from a register depending on where it is. --- compiler/mips/macros.lisp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/compiler/mips/macros.lisp b/compiler/mips/macros.lisp index d2b727a6a..74e1b77cb 100644 --- a/compiler/mips/macros.lisp +++ b/compiler/mips/macros.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.38 1990/08/12 00:45:51 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.39 1990/08/23 18:51:37 wlott Exp $ ;;; ;;; This file contains various useful macros for generating MIPS code. ;;; @@ -147,6 +147,21 @@ ((control-stack) (storew reg fp-tn offset)))))) + +;;; MAYBE-LOAD-STACK-TN -- Interface +;;; +(defmacro maybe-load-stack-tn (reg reg-or-stack) + "Move the TN Reg-Or-Stack into Reg if it isn't already there." + (once-only ((n-reg reg) + (n-stack reg-or-stack)) + `(sc-case ,n-reg + ((any-reg descriptor-reg) + (sc-case ,n-stack + ((any-reg descriptor-reg) + (move ,n-reg ,n-stack)) + ((control-stack) + (loadw ,n-reg fp-tn (tn-offset ,n-stack)))))))) + ;;;; Storage allocation: -- GitLab