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

Added defknown and vop for mach::do-pending-interrupt (which just compiles

into a break instruction).
parent 4fb70b40
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/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. ;;; MIPS VM definitions of various system hacking operations.
;;; ;;;
...@@ -242,6 +242,14 @@ ...@@ -242,6 +242,14 @@
;;;; Other random VOPs. ;;;; 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) (define-vop (halt)
(:generator 1 (:generator 1
(inst break vm:halt-trap))) (inst break vm:halt-trap)))
......
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