Skip to content
Snippets Groups Projects
Commit aca4a938 authored by ram's avatar ram
Browse files

Added MAKE-xxx-STACK-POINTER-TN functions and moved

MAKE-UNKNOWN-VALUES-LOCATIONS here from ltn.
parent 01546089
No related branches found
No related tags found
No related merge requests found
......@@ -92,6 +92,28 @@
(make-restricted-tn *any-primitive-type* register-arg-scn)))
;;; MAKE-STACK-POINTER-TN ()
;;;
(defun make-stack-pointer-tn ()
(make-normal-tn *any-primitive-type*))
;;; MAKE-NUMBER-STACK-POINTER-TN ()
;;;
(defun make-number-stack-pointer-tn ()
(make-normal-tn *any-primitive-type*))
;;; Make-Unknown-Values-Locations -- Interface
;;;
;;; Return a list of TNs that can be used to represent an unknown-values
;;; continuation within a function.
;;;
(defun make-unknown-values-locations ()
(list (make-stack-pointer-tn)
(make-normal-tn *any-primitive-type*)))
;;; Select-Component-Format -- Interface
;;;
;;; This function is called by the Entry-Analyze phase, allowing
......
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