From 66e6e78807ba1f54b2b18946d4f940b1da94795e Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sun, 9 Sep 1990 20:39:52 +0000 Subject: [PATCH] Added defknown and vop for mach::do-pending-interrupt (which just compiles into a break instruction). --- compiler/mips/system.lisp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp index 6baa57661..ccaf76884 100644 --- a/compiler/mips/system.lisp +++ b/compiler/mips/system.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.30 1990/07/21 16:17:24 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.31 1990/09/09 20:39:52 wlott Exp $ ;;; ;;; MIPS VM definitions of various system hacking operations. ;;; @@ -242,6 +242,14 @@ ;;;; Other random VOPs. +(defknown mach::do-pending-interrupt () (values)) +(define-vop (mach::do-pending-interrupt) + (:policy :fast-safe) + (:translate mach::do-pending-interrupt) + (:generator 1 + (inst break vm:pending-interrupt-trap))) + + (define-vop (halt) (:generator 1 (inst break vm:halt-trap))) -- GitLab