0.8.15.13:
[sbcl.git] / src / compiler / vop.lisp
1 ;;;; structures for the second (virtual machine) intermediate
2 ;;;; representation in the compiler, IR2
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!C")
14
15 ;;; the largest number of TNs whose liveness changes that we can have
16 ;;; in any block
17 (def!constant local-tn-limit 64)
18
19 (deftype local-tn-number () `(integer 0 (,local-tn-limit)))
20 (deftype local-tn-count () `(integer 0 ,local-tn-limit))
21 (deftype local-tn-vector () `(simple-vector ,local-tn-limit))
22 (deftype local-tn-bit-vector () `(simple-bit-vector ,local-tn-limit))
23
24 ;;; type of an SC number
25 (deftype sc-number () `(integer 0 (,sc-number-limit)))
26
27 ;;; types for vectors indexed by SC numbers
28 (deftype sc-vector () `(simple-vector ,sc-number-limit))
29 (deftype sc-bit-vector () `(simple-bit-vector ,sc-number-limit))
30
31 ;;; the different policies we can use to determine the coding strategy
32 (deftype ltn-policy ()
33   '(member :safe :small :fast :fast-safe))
34 \f
35 ;;;; PRIMITIVE-TYPEs
36
37 ;;; A PRIMITIVE-TYPE is used to represent the aspects of type
38 ;;; interesting to the VM. Selection of IR2 translation templates is
39 ;;; done on the basis of the primitive types of the operands, and the
40 ;;; primitive type of a value is used to constrain the possible
41 ;;; representations of that value.
42 (defstruct (primitive-type (:copier nil))
43   ;; the name of this PRIMITIVE-TYPE
44   (name nil :type symbol)
45   ;; a list of the SC numbers for all the SCs that a TN of this type
46   ;; can be allocated in
47   (scs nil :type list)
48   ;; the Lisp type equivalent to this type. If this type could never be
49   ;; returned by PRIMITIVE-TYPE, then this is the NIL (or empty) type
50   (specifier (missing-arg) :type type-specifier)
51   ;; the template used to check that an object is of this type. This is a
52   ;; template of one argument and one result, both of primitive-type T. If
53   ;; the argument is of the correct type, then it is delivered into the
54   ;; result. If the type is incorrect, then an error is signalled.
55   (check nil :type (or template null)))
56
57 (defprinter (primitive-type)
58   name)
59 \f
60 ;;;; IR1 annotations used for IR2 conversion
61
62 ;;; BLOCK-INFO
63 ;;;    Holds the IR2-BLOCK structure. If there are overflow blocks,
64 ;;;    then this points to the first IR2-BLOCK. The BLOCK-INFO of the
65 ;;;    dummy component head and tail are dummy IR2 blocks that begin
66 ;;;    and end the emission order thread.
67 ;;;
68 ;;; COMPONENT-INFO
69 ;;;    Holds the IR2-COMPONENT structure.
70 ;;;
71 ;;; LVAR-INFO
72 ;;;    Holds the IR2-LVAR structure. LVARs whose values aren't used
73 ;;;    won't have any. XXX
74 ;;;
75 ;;; CLEANUP-INFO
76 ;;;    If non-null, then a TN in which the affected dynamic
77 ;;;    environment pointer should be saved after the binding is
78 ;;;    instantiated.
79 ;;;
80 ;;; PHYSENV-INFO
81 ;;;    Holds the IR2-PHYSENV structure.
82 ;;;
83 ;;; TAIL-SET-INFO
84 ;;;    Holds the RETURN-INFO structure.
85 ;;;
86 ;;; NLX-INFO-INFO
87 ;;;    Holds the IR2-NLX-INFO structure.
88 ;;;
89 ;;; LEAF-INFO
90 ;;;    If a non-set lexical variable, the TN that holds the value in
91 ;;;    the home environment. If a constant, then the corresponding
92 ;;;    constant TN. If an XEP lambda, then the corresponding
93 ;;;    Entry-Info structure.
94 ;;;
95 ;;; BASIC-COMBINATION-INFO
96 ;;;    The template chosen by LTN, or
97 ;;;     :FULL if this is definitely a full call.
98 ;;;     :FUNNY if this is an oddball thing with IR2-convert.
99 ;;;     :LOCAL if this is a local call.
100 ;;;
101 ;;; NODE-TAIL-P
102 ;;;    After LTN analysis, this is true only in combination nodes that are
103 ;;;    truly tail recursive.
104
105 ;;; An IR2-BLOCK holds information about a block that is used during
106 ;;; and after IR2 conversion. It is stored in the BLOCK-INFO slot for
107 ;;; the associated block.
108 (defstruct (ir2-block (:include block-annotation)
109                       (:constructor make-ir2-block (block))
110                       (:copier nil))
111   ;; the IR2-BLOCK's number, which differs from BLOCK's BLOCK-NUMBER
112   ;; if any blocks are split. This is assigned by lifetime analysis.
113   (number nil :type (or index null))
114   ;; information about unknown-values LVARs that is used by stack
115   ;; analysis to do stack simulation. An UNKNOWN-VALUES LVAR is PUSHED
116   ;; if its DEST is in another block. Similarly, a LVAR is POPPED if
117   ;; its DEST is in this block but has its uses elsewhere. The LVARs
118   ;; are in the order that are pushed/popped in the block. Note that
119   ;; the args to a single MV-COMBINATION appear reversed in POPPED,
120   ;; since we must effectively pop the last argument first. All pops
121   ;; must come before all pushes (although internal MV uses may be
122   ;; interleaved.) POPPED is computed by LTN, and PUSHED is computed
123   ;; by stack analysis.
124   (pushed () :type list)
125   (popped () :type list)
126   ;; the result of stack analysis: lists of all the unknown-values
127   ;; LVARs on the stack at the block start and end, topmost LVAR
128   ;; first.
129   (start-stack () :type list)
130   (end-stack () :type list)
131   ;; the first and last VOP in this block. If there are none, both
132   ;; slots are null.
133   (start-vop nil :type (or vop null))
134   (last-vop nil :type (or vop null))
135   ;; the number of local TNs actually allocated
136   (local-tn-count 0 :type local-tn-count)
137   ;; a vector that maps local TN numbers to TNs. Some entries may be
138   ;; NIL, indicating that that number is unused. (This allows us to
139   ;; delete local conflict information without compressing the LTN
140   ;; numbers.)
141   ;;
142   ;; If an entry is :MORE, then this block contains only a single VOP.
143   ;; This VOP has so many more arguments and/or results that they
144   ;; cannot all be assigned distinct LTN numbers. In this case, we
145   ;; assign all the more args one LTN number, and all the more results
146   ;; another LTN number. We can do this, since more operands are
147   ;; referenced simultaneously as far as conflict analysis is
148   ;; concerned. Note that all these :MORE TNs will be global TNs.
149   (local-tns (make-array local-tn-limit) :type local-tn-vector)
150   ;; Bit-vectors used during lifetime analysis to keep track of
151   ;; references to local TNs. When indexed by the LTN number, the
152   ;; index for a TN is non-zero in WRITTEN if it is ever written in
153   ;; the block, and in LIVE-OUT if the first reference is a read.
154   (written (make-array local-tn-limit :element-type 'bit
155                        :initial-element 0)
156            :type local-tn-bit-vector)
157   (live-out (make-array local-tn-limit :element-type 'bit)
158             :type local-tn-bit-vector)
159   ;; This is similar to the above, but is updated by lifetime flow
160   ;; analysis to have a 1 for LTN numbers of TNs live at the end of
161   ;; the block. This takes into account all TNs that aren't :LIVE.
162   (live-in (make-array local-tn-limit :element-type 'bit :initial-element 0)
163            :type local-tn-bit-vector)
164   ;; a thread running through the global-conflicts structures for this
165   ;; block, sorted by TN number
166   (global-tns nil :type (or global-conflicts null))
167   ;; the assembler label that points to the beginning of the code for
168   ;; this block, or NIL when we haven't assigned a label yet
169   (%label nil)
170   ;; list of LOCATION-INFO structures describing all the interesting
171   ;; (to the debugger) locations in this block
172   (locations nil :type list))
173
174 (defprinter (ir2-block)
175   (pushed :test pushed)
176   (popped :test popped)
177   (start-vop :test start-vop)
178   (last-vop :test last-vop)
179   (local-tn-count :test (not (zerop local-tn-count)))
180   (%label :test %label))
181
182 ;;; An IR2-LVAR structure is used to annotate LVARs that are used as a
183 ;;; function result LVARs or that receive MVs.
184 (defstruct (ir2-lvar
185             (:constructor make-ir2-lvar (primitive-type))
186             (:copier nil))
187   ;; If this is :DELAYED, then this is a single value LVAR for which
188   ;; the evaluation of the use is to be postponed until the evaluation
189   ;; of destination. This can be done for ref nodes or predicates
190   ;; whose destination is an IF.
191   ;;
192   ;; If this is :FIXED, then this LVAR has a fixed number of values,
193   ;; with the TNs in LOCS.
194   ;;
195   ;; If this is :UNKNOWN, then this is an unknown-values LVAR, using
196   ;; the passing locations in LOCS.
197   ;;
198   ;; If this is :UNUSED, then this LVAR should never actually be used
199   ;; as the destination of a value: it is only used tail-recursively.
200   (kind :fixed :type (member :delayed :fixed :unknown :unused))
201   ;; The primitive-type of the first value of this LVAR. This is
202   ;; primarily for internal use during LTN, but it also records the
203   ;; type restriction on delayed references. In multiple-value
204   ;; contexts, this is null to indicate that it is meaningless. This
205   ;; is always (primitive-type (lvar-type cont)), which may be more
206   ;; restrictive than the tn-primitive-type of the value TN. This is
207   ;; becase the value TN must hold any possible type that could be
208   ;; computed (before type checking.) XXX
209   (primitive-type nil :type (or primitive-type null))
210   ;; Locations used to hold the values of the LVAR. If the number of
211   ;; values if fixed, then there is one TN per value. If the number of
212   ;; values is unknown, then this is a two-list of TNs holding the
213   ;; start of the values glob and the number of values. Note that
214   ;; since type checking is the responsibility of the values receiver,
215   ;; these TNs primitive type is only based on the proven type
216   ;; information.
217   (locs nil :type list)
218   #!+stack-grows-downward-not-upward
219   (stack-pointer nil :type (or tn null)))
220 ;; For upward growing stack start of stack block and start of object
221 ;; differ only by lowtag.
222 #!-stack-grows-downward-not-upward
223 (defmacro ir2-lvar-stack-pointer (2lvar)
224   `(first (ir2-lvar-locs ,2lvar)))
225
226 (defprinter (ir2-lvar)
227   kind
228   primitive-type
229   locs)
230
231 ;;; An IR2-COMPONENT serves mostly to accumulate non-code information
232 ;;; about the component being compiled.
233 (defstruct (ir2-component (:copier nil))
234   ;; the counter used to allocate global TN numbers
235   (global-tn-counter 0 :type index)
236   ;; NORMAL-TNS is the head of the list of all the normal TNs that
237   ;; need to be packed, linked through the Next slot. We place TNs on
238   ;; this list when we allocate them so that Pack can find them.
239   ;;
240   ;; RESTRICTED-TNS are TNs that must be packed within a finite SC. We
241   ;; pack these TNs first to ensure that the restrictions will be
242   ;; satisfied (if possible).
243   ;;
244   ;; WIRED-TNs are TNs that must be packed at a specific location. The
245   ;; SC and OFFSET are already filled in.
246   ;;
247   ;; CONSTANT-TNs are non-packed TNs that represent constants.
248   ;; :CONSTANT TNs may eventually be converted to :CACHED-CONSTANT
249   ;; normal TNs.
250   ;;
251   ;; FIXME: What is :CACHED-CONSTANT?
252   (normal-tns nil :type (or tn null))
253   (restricted-tns nil :type (or tn null))
254   (wired-tns nil :type (or tn null))
255   (constant-tns nil :type (or tn null))
256   ;; a list of all the :COMPONENT TNs (live throughout the component).
257   ;; These TNs will also appear in the {NORMAL,RESTRICTED,WIRED} TNs
258   ;; as appropriate to their location.
259   (component-tns () :type list)
260   ;; If this component has a NFP, then this is it.
261   (nfp nil :type (or tn null))
262   ;; a list of the explicitly specified save TNs (kind
263   ;; :SPECIFIED-SAVE). These TNs will also appear in the
264   ;; {NORMAL,RESTRICTED,WIRED} TNs as appropriate to their location.
265   (specified-save-tns () :type list)
266   ;; a list of all the blocks whose IR2-BLOCK has a non-null value for
267   ;; POPPED. This slot is initialized by LTN-ANALYZE as an input to
268   ;; STACK-ANALYZE.
269   (values-receivers nil :type list)
270   ;; an adjustable vector that records all the constants in the
271   ;; constant pool. A non-immediate :CONSTANT TN with offset 0 refers
272   ;; to the constant in element 0, etc. Normal constants are
273   ;; represented by the placing the CONSTANT leaf in this vector. A
274   ;; load-time constant is distinguished by being a cons (KIND .
275   ;; WHAT). KIND is a keyword indicating how the constant is computed,
276   ;; and WHAT is some context.
277   ;;
278   ;; These load-time constants are recognized:
279   ;;
280   ;; (:entry . <function>)
281   ;;    Is replaced by the code pointer for the specified function.
282   ;;    This is how compiled code (including DEFUN) gets its hands on
283   ;;    a function. <function> is the XEP lambda for the called
284   ;;    function; its LEAF-INFO should be an ENTRY-INFO structure.
285   ;;
286   ;; (:label . <label>)
287   ;;    Is replaced with the byte offset of that label from the start
288   ;;    of the code vector (including the header length.)
289   ;;
290   ;; A null entry in this vector is a placeholder for implementation
291   ;; overhead that is eventually stuffed in somehow.
292   (constants (make-array 10 :fill-pointer 0 :adjustable t) :type vector)
293   ;; some kind of info about the component's run-time representation.
294   ;; This is filled in by the VM supplied SELECT-COMPONENT-FORMAT function.
295   format
296   ;; a list of the ENTRY-INFO structures describing all of the entries
297   ;; into this component. Filled in by entry analysis.
298   (entries nil :type list)
299   ;; head of the list of :ALIAS TNs in this component, threaded by TN-NEXT
300   (alias-tns nil :type (or tn null))
301   ;; SPILLED-VOPS is a hashtable translating from "interesting" VOPs
302   ;; to a list of the TNs spilled at that VOP. This is used when
303   ;; computing debug info so that we don't consider the TN's value to
304   ;; be valid when it is in fact somewhere else. SPILLED-TNS has T for
305   ;; every "interesting" TN that is ever spilled, providing a
306   ;; representation that is more convenient some places.
307   (spilled-vops (make-hash-table :test 'eq) :type hash-table)
308   (spilled-tns (make-hash-table :test 'eq) :type hash-table)
309   ;; dynamic vop count info. This is needed by both ir2-convert and
310   ;; setup-dynamic-count-info. (But only if we are generating code to
311   ;; collect dynamic statistics.)
312   #!+sb-dyncount
313   (dyncount-info nil :type (or null dyncount-info)))
314
315 ;;; An ENTRY-INFO condenses all the information that the dumper needs
316 ;;; to create each XEP's function entry data structure. ENTRY-INFO
317 ;;; structures are sometimes created before they are initialized,
318 ;;; since IR2 conversion may need to compile a forward reference. In
319 ;;; this case the slots aren't actually initialized until entry
320 ;;; analysis runs.
321 (defstruct (entry-info (:copier nil))
322   ;; Does this function have a non-null closure environment?
323   (closure-p nil :type boolean)
324   ;; a label pointing to the entry vector for this function, or NIL
325   ;; before ENTRY-ANALYZE runs
326   (offset nil :type (or label null))
327   ;; If this function was defined using DEFUN, then this is the name
328   ;; of the function, a symbol or (SETF <symbol>). Otherwise, this is
329   ;; some string that is intended to be informative.
330   (name "<not computed>" :type (or simple-string list symbol))
331   ;; the argument list that the function was defined with.
332   (arguments nil :type list)
333   ;; a function type specifier representing the arguments and results
334   ;; of this function
335   (type 'function :type (or list (member function))))
336
337 ;;; An IR2-PHYSENV is used to annotate non-LET LAMBDAs with their
338 ;;; passing locations. It is stored in the PHYSENV-INFO.
339 (defstruct (ir2-physenv (:copier nil))
340   ;; TN info for closed-over things within the function: an alist
341   ;; mapping from NLX-INFOs and LAMBDA-VARs to TNs holding the
342   ;; corresponding thing within this function
343   ;;
344   ;; Elements of this list have a one-to-one correspondence with
345   ;; elements of the PHYSENV-CLOSURE list of the PHYSENV object that
346   ;; links to us.
347   (closure (missing-arg) :type list :read-only t)
348   ;; the TNs that hold the OLD-FP and RETURN-PC within the function.
349   ;; We always save these so that the debugger can do a backtrace,
350   ;; even if the function has no return (and thus never uses them).
351   ;; Null only temporarily.
352   (old-fp nil :type (or tn null))
353   (return-pc nil :type (or tn null))
354   ;; The passing location for the RETURN-PC. The return PC is treated
355   ;; differently from the other arguments, since in some
356   ;; implementations we may use a call instruction that requires the
357   ;; return PC to be passed in a particular place.
358   (return-pc-pass (missing-arg) :type tn :read-only t)
359   ;; True if this function has a frame on the number stack. This is
360   ;; set by representation selection whenever it is possible that some
361   ;; function in our tail set will make use of the number stack.
362   (number-stack-p nil :type boolean)
363   ;; a list of all the :ENVIRONMENT TNs live in this environment
364   (live-tns nil :type list)
365   ;; a list of all the :DEBUG-ENVIRONMENT TNs live in this environment
366   (debug-live-tns nil :type list)
367   ;; a label that marks the start of elsewhere code for this function,
368   ;; or null until this label is assigned by codegen. Used for
369   ;; maintaining the debug source map.
370   (elsewhere-start nil :type (or label null))
371   ;; a label that marks the first location in this function at which
372   ;; the environment is properly initialized, i.e. arguments moved
373   ;; from their passing locations, etc. This is the start of the
374   ;; function as far as the debugger is concerned.
375   (environment-start nil :type (or label null)))
376 (defprinter (ir2-physenv)
377   closure
378   old-fp
379   return-pc
380   return-pc-pass)
381
382 ;;; A RETURN-INFO is used by GTN to represent the return strategy and
383 ;;; locations for all the functions in a given TAIL-SET. It is stored
384 ;;; in the TAIL-SET-INFO.
385 (defstruct (return-info (:copier nil))
386   ;; The return convention used:
387   ;; -- If :UNKNOWN, we use the standard return convention.
388   ;; -- If :FIXED, we use the known-values convention.
389   (kind (missing-arg) :type (member :fixed :unknown))
390   ;; the number of values returned, or :UNKNOWN if we don't know.
391   ;; COUNT may be known when KIND is :UNKNOWN, since we may choose the
392   ;; standard return convention for other reasons.
393   (count (missing-arg) :type (or index (member :unknown)))
394   ;; If count isn't :UNKNOWN, then this is a list of the
395   ;; primitive-types of each value.
396   (types () :type list)
397   ;; If kind is :FIXED, then this is the list of the TNs that we
398   ;; return the values in.
399   (locations () :type list))
400 (defprinter (return-info)
401   kind
402   count
403   types
404   locations)
405
406 (defstruct (ir2-nlx-info (:copier nil))
407   ;; If the kind is :ENTRY (a lexical exit), then in the home
408   ;; environment, this holds a VALUE-CELL object containing the unwind
409   ;; block pointer. In the other cases nobody directly references the
410   ;; unwind-block, so we leave this slot null.
411   (home nil :type (or tn null))
412   ;; the saved control stack pointer
413   (save-sp (missing-arg) :type tn)
414   ;; the list of dynamic state save TNs
415   (dynamic-state (list* (make-stack-pointer-tn)
416                         (make-dynamic-state-tns))
417                  :type list)
418   ;; the target label for NLX entry
419   (target (gen-label) :type label))
420 (defprinter (ir2-nlx-info)
421   home
422   save-sp
423   dynamic-state)
424
425 (defstruct (cloop (:print-function print-cloop)
426                   (:conc-name loop-)
427                   (:predicate loop-p)
428                   (:constructor make-loop)
429                   (:copier copy-loop))
430   ;; The kind of loop that this is.  These values are legal:
431   ;;
432   ;;    :OUTER
433   ;;        This is the outermost loop structure, and represents all the
434   ;;        code in a component.
435   ;;
436   ;;    :NATURAL
437   ;;        A normal loop with only one entry.
438   ;;
439   ;;    :STRANGE
440   ;;        A segment of a "strange loop" in a non-reducible flow graph.
441   (kind (required-argument) :type (member :outer :natural :strange))
442   ;; The first and last blocks in the loop.  There may be more than one tail,
443   ;; since there may be multiple back branches to the same head.
444   (head nil :type (or cblock null))
445   (tail nil :type list)
446   ;; A list of all the blocks in this loop or its inferiors that have a
447   ;; successor outside of the loop.
448   (exits nil :type list)
449   ;; The loop that this loop is nested within.  This is null in the outermost
450   ;; loop structure.
451   (superior nil :type (or cloop null))
452   ;; A list of the loops nested directly within this one.
453   (inferiors nil :type list)
454   (depth 0 :type fixnum)
455   ;; The head of the list of blocks directly within this loop.  We must recurse
456   ;; on INFERIORS to find all the blocks.
457   (blocks nil :type (or null cblock)))
458
459 (defprinter (cloop :conc-name LOOP-)
460   kind
461   head
462   tail
463   exits
464   depth)
465 \f
466 ;;;; VOPs and templates
467
468 ;;; A VOP is a Virtual Operation. It represents an operation and the
469 ;;; operands to the operation.
470 (def!struct (vop (:constructor make-vop (block node info args results))
471                  (:copier nil))
472   ;; VOP-INFO structure containing static info about the operation
473   (info nil :type (or vop-info null))
474   ;; the IR2-BLOCK this VOP is in
475   (block (missing-arg) :type ir2-block)
476   ;; VOPs evaluated after and before this one. Null at the
477   ;; beginning/end of the block, and temporarily during IR2
478   ;; translation.
479   (next nil :type (or vop null))
480   (prev nil :type (or vop null))
481   ;; heads of the TN-REF lists for operand TNs, linked using the
482   ;; ACROSS slot
483   (args nil :type (or tn-ref null))
484   (results nil :type (or tn-ref null))
485   ;; head of the list of write refs for each explicitly allocated
486   ;; temporary, linked together using the ACROSS slot
487   (temps nil :type (or tn-ref null))
488   ;; head of the list of all TN-REFs for references in this VOP,
489   ;; linked by the NEXT-REF slot. There will be one entry for each
490   ;; operand and two (a read and a write) for each temporary.
491   (refs nil :type (or tn-ref null))
492   ;; stuff that is passed uninterpreted from IR2 conversion to
493   ;; codegen. The meaning of this slot is totally dependent on the VOP.
494   codegen-info
495   ;; the node that generated this VOP, for keeping track of debug info
496   (node nil :type (or node null))
497   ;; LOCAL-TN-BIT-VECTOR representing the set of TNs live after args
498   ;; are read and before results are written. This is only filled in
499   ;; when VOP-INFO-SAVE-P is non-null.
500   (save-set nil :type (or local-tn-bit-vector null)))
501 (defprinter (vop)
502   (info :prin1 (vop-info-name info))
503   args
504   results
505   (codegen-info :test codegen-info))
506
507 ;;; A TN-REF object contains information about a particular reference
508 ;;; to a TN. The information in TN-REFs largely determines how TNs are
509 ;;; packed.
510 (def!struct (tn-ref (:constructor make-tn-ref (tn write-p))
511                     (:copier nil))
512   ;; the TN referenced
513   (tn (missing-arg) :type tn)
514   ;; Is this is a write reference? (as opposed to a read reference)
515   (write-p nil :type boolean)
516   ;; the link for a list running through all TN-REFs for this TN of
517   ;; the same kind (read or write)
518   (next nil :type (or tn-ref null))
519   ;; the VOP where the reference happens, or NIL temporarily
520   (vop nil :type (or vop null))
521   ;; the link for a list of all TN-REFs in VOP, in reverse order of
522   ;; reference
523   (next-ref nil :type (or tn-ref null))
524   ;; the link for a list of the TN-REFs in VOP of the same kind
525   ;; (argument, result, temp)
526   (across nil :type (or tn-ref null))
527   ;; If true, this is a TN-REF also in VOP whose TN we would like
528   ;; packed in the same location as our TN. Read and write refs are
529   ;; always paired: TARGET in the read points to the write, and
530   ;; vice-versa.
531   (target nil :type (or null tn-ref))
532   ;; the load TN allocated for this operand, if any
533   (load-tn nil :type (or tn null)))
534 (defprinter (tn-ref)
535   tn
536   write-p
537   (vop :test vop :prin1 (vop-info-name (vop-info vop))))
538
539 ;;; A TEMPLATE object represents a particular IR2 coding strategy for
540 ;;; a known function.
541 (def!struct (template (:constructor nil)
542                       #-sb-xc-host (:pure t))
543   ;; the symbol name of this VOP. This is used when printing the VOP
544   ;; and is also used to provide a handle for definition and
545   ;; translation.
546   (name nil :type symbol)
547   ;; the arg/result type restrictions. We compute this from the
548   ;; PRIMITIVE-TYPE restrictions to make life easier for IR1 phases
549   ;; that need to anticipate LTN's template selection.
550   (type (missing-arg) :type ctype)
551   ;; lists of restrictions on the argument and result types. A
552   ;; restriction may take several forms:
553   ;; -- The restriction * is no restriction at all.
554   ;; -- A restriction (:OR <primitive-type>*) means that the operand 
555   ;;    must have one of the specified primitive types.
556   ;; -- A restriction (:CONSTANT <predicate> <type-spec>) means that the
557   ;;    argument (not a result) must be a compile-time constant that
558   ;;    satisfies the specified predicate function. In this case, the
559   ;;    constant value will be passed as an info argument rather than
560   ;;    as a normal argument. <type-spec> is a Lisp type specifier for
561   ;;    the type tested by the predicate, used when we want to represent
562   ;;    the type constraint as a Lisp function type.
563   ;;
564   ;; If RESULT-TYPES is :CONDITIONAL, then this is an IF-FOO style
565   ;; conditional that yields its result as a control transfer. The
566   ;; emit function takes two info arguments: the target label and a
567   ;; boolean flag indicating whether to negate the sense of the test.
568   (arg-types nil :type list)
569   (result-types nil :type (or list (member :conditional)))
570   ;; the primitive type restriction applied to each extra argument or
571   ;; result following the fixed operands. If NIL, no extra
572   ;; args/results are allowed. Otherwise, either * or a (:OR ...) list
573   ;; as described for the {ARG,RESULT}-TYPES.
574   (more-args-type nil :type (or (member nil *) cons))
575   (more-results-type nil :type (or (member nil *) cons))
576   ;; If true, this is a function that is called with no arguments to
577   ;; see whether this template can be emitted. This is used to
578   ;; conditionally compile for different target hardware
579   ;; configuarations (e.g. FP hardware.)
580   (guard nil :type (or function null))
581   ;; the policy under which this template is the best translation.
582   ;; Note that LTN might use this template under other policies if it
583   ;; can't figure out anything better to do.
584   (ltn-policy (missing-arg) :type ltn-policy)
585   ;; the base cost for this template, given optimistic assumptions
586   ;; such as no operand loading, etc.
587   (cost (missing-arg) :type index)
588   ;; If true, then this is a short noun-like phrase describing what
589   ;; this VOP "does", i.e. the implementation strategy. This is for
590   ;; use in efficiency notes.
591   (note nil :type (or string null))
592   ;; the number of trailing arguments to VOP or %PRIMITIVE that we
593   ;; bundle into a list and pass into the emit function. This provides
594   ;; a way to pass uninterpreted stuff directly to the code generator.
595   (info-arg-count 0 :type index)
596   ;; a function that emits the VOPs for this template. Arguments:
597   ;;  1] Node for source context.
598   ;;  2] IR2-BLOCK that we place the VOP in.
599   ;;  3] This structure.
600   ;;  4] Head of argument TN-REF list.
601   ;;  5] Head of result TN-REF list.
602   ;;  6] If INFO-ARG-COUNT is non-zero, then a list of the magic
603   ;;     arguments.
604   ;;
605   ;; Two values are returned: the first and last VOP emitted. This vop
606   ;; sequence must be linked into the VOP Next/Prev chain for the
607   ;; block. At least one VOP is always emitted.
608   (emit-function (missing-arg) :type function))
609 (defprinter (template)
610   name
611   arg-types
612   result-types
613   (more-args-type :test more-args-type :prin1 more-args-type)
614   (more-results-type :test more-results-type :prin1 more-results-type)
615   ltn-policy
616   cost
617   (note :test note)
618   (info-arg-count :test (not (zerop info-arg-count))))
619
620 ;;; A VOP-INFO object holds the constant information for a given
621 ;;; virtual operation. We include TEMPLATE so that functions with a
622 ;;; direct VOP equivalent can be translated easily.
623 (def!struct (vop-info
624              (:include template)
625              (:make-load-form-fun ignore-it))
626   ;; side effects of this VOP and side effects that affect the value
627   ;; of this VOP
628   (effects (missing-arg) :type attributes)
629   (affected (missing-arg) :type attributes)
630   ;; If true, causes special casing of TNs live after this VOP that
631   ;; aren't results:
632   ;; -- If T, all such TNs that are allocated in a SC with a defined
633   ;;    save-sc will be saved in a TN in the save SC before the VOP
634   ;;    and restored after the VOP. This is used by call VOPs. A bit
635   ;;    vector representing the live TNs is stored in the VOP-SAVE-SET.
636   ;; -- If :FORCE-TO-STACK, all such TNs will made into :ENVIRONMENT TNs
637   ;;    and forced to be allocated in SCs without any save-sc. This is
638   ;;    used by NLX entry vops.
639   ;; -- If :COMPUTE-ONLY, just compute the save set, don't do any saving.
640   ;;    This is used to get the live variables for debug info.
641   (save-p nil :type (member t nil :force-to-stack :compute-only))
642   ;; info for automatic emission of move-arg VOPs by representation
643   ;; selection. If NIL, then do nothing special. If non-null, then
644   ;; there must be a more arg. Each more arg is moved to its passing
645   ;; location using the appropriate representation-specific MOVE-ARG
646   ;; VOP. The first (fixed) argument must be the control-stack frame
647   ;; pointer for the frame to move into. The first info arg is the
648   ;; list of passing locations.
649   ;;
650   ;; Additional constraints depend on the value:
651   ;;
652   ;; :FULL-CALL
653   ;;     None.
654   ;;
655   ;; :LOCAL-CALL
656   ;;     The second (fixed) arg is the NFP for the called function (from
657   ;;     ALLOCATE-FRAME.)
658   ;;
659   ;; :KNOWN-RETURN
660   ;;     If needed, the old NFP is computed using COMPUTE-OLD-NFP.
661   (move-args nil :type (member nil :full-call :local-call :known-return))
662   ;; a list of sc-vectors representing the loading costs of each fixed
663   ;; argument and result
664   (arg-costs nil :type list)
665   (result-costs nil :type list)
666   ;; if true, SC-VECTORs representing the loading costs for any more
667   ;; args and results
668   (more-arg-costs nil :type (or sc-vector null))
669   (more-result-costs nil :type (or sc-vector null))
670   ;; lists of SC-VECTORs mapping each SC to the SCs that we can load
671   ;; into. If a SC is directly acceptable to the VOP, then the entry
672   ;; is T. Otherwise, it is a list of the SC numbers of all the SCs
673   ;; that we can load into. This list will be empty if there is no
674   ;; load function which loads from that SC to an SC allowed by the
675   ;; operand SC restriction.
676   (arg-load-scs nil :type list)
677   (result-load-scs nil :type list)
678   ;; if true, a function that is called with the VOP to do operand
679   ;; targeting. This is done by modifying the TN-REF-TARGET slots in
680   ;; the TN-REFS so that they point to other TN-REFS in the same VOP.
681   (target-fun nil :type (or null function))
682   ;; a function that emits assembly code for a use of this VOP when it
683   ;; is called with the VOP structure. This is null if this VOP has no
684   ;; specified generator (i.e. if it exists only to be inherited by
685   ;; other VOPs).
686   (generator-function nil :type (or function null))
687   ;; a list of things that are used to parameterize an inherited
688   ;; generator. This allows the same generator function to be used for
689   ;; a group of VOPs with similar implementations.
690   (variant nil :type list)
691   ;; the number of arguments and results. Each regular arg/result
692   ;; counts as one, and all the more args/results together count as 1.
693   (num-args 0 :type index)
694   (num-results 0 :type index)
695   ;; a vector of the temporaries the vop needs. See EMIT-GENERIC-VOP
696   ;; in vmdef for information on how the temps are encoded.
697   (temps nil :type (or null (specializable-vector (unsigned-byte 16))))
698   ;; the order all the refs for this vop should be put in. Each
699   ;; operand is assigned a number in the following ordering: args,
700   ;; more-args, results, more-results, temps. This vector represents
701   ;; the order the operands should be put into in the next-ref link.
702   (ref-ordering nil :type (or null (specializable-vector (unsigned-byte 8))))
703   ;; a vector of the various targets that should be done. Each element
704   ;; encodes the source ref (shifted 8, it is also encoded in
705   ;; MAX-VOP-TN-REFS) and the dest ref index.
706   (targets nil :type (or null (specializable-vector (unsigned-byte 16)))))
707 \f
708 ;;;; SBs and SCs
709
710 ;;; copied from docs/internals/retargeting.tex by WHN 19990707:
711 ;;;
712 ;;; A Storage Base represents a physical storage resource such as a
713 ;;; register set or stack frame. Storage bases for non-global
714 ;;; resources such as the stack are relativized by the environment
715 ;;; that the TN is allocated in. Packing conflict information is kept
716 ;;; in the storage base, but non-packed storage resources such as
717 ;;; closure environments also have storage bases.
718 ;;;
719 ;;; Some storage bases:
720 ;;;     General purpose registers
721 ;;;     Floating point registers
722 ;;;     Boxed (control) stack environment
723 ;;;     Unboxed (number) stack environment
724 ;;;     Closure environment
725 ;;;
726 ;;; A storage class is a potentially arbitrary set of the elements in
727 ;;; a storage base. Although conceptually there may be a hierarchy of
728 ;;; storage classes such as "all registers", "boxed registers", "boxed
729 ;;; scratch registers", this doesn't exist at the implementation
730 ;;; level. Such things can be done by specifying storage classes whose
731 ;;; locations overlap. A TN shouldn't have lots of overlapping SC's as
732 ;;; legal SC's, since time would be wasted repeatedly attempting to
733 ;;; pack in the same locations.
734 ;;;
735 ;;; ...
736 ;;;
737 ;;; Some SCs:
738 ;;;     Reg: any register (immediate objects)
739 ;;;     Save-Reg: a boxed register near r15 (registers easily saved in a call)
740 ;;;     Boxed-Reg: any boxed register (any boxed object)
741 ;;;     Unboxed-Reg: any unboxed register (any unboxed object)
742 ;;;     Float-Reg, Double-Float-Reg: float in FP register.
743 ;;;     Stack: boxed object on the stack (on control stack)
744 ;;;     Word: any 32bit unboxed object on nstack.
745 ;;;     Double: any 64bit unboxed object on nstack.
746
747 ;;; The SB structure represents the global information associated with
748 ;;; a storage base.
749 (def!struct (sb (:make-load-form-fun just-dump-it-normally))
750   ;; name, for printing and reference
751   (name nil :type symbol)
752   ;; the kind of storage base (which determines the packing
753   ;; algorithm)
754   (kind :non-packed :type (member :finite :unbounded :non-packed))
755   ;; the number of elements in the SB. If finite, this is the total
756   ;; size. If unbounded, this is the size that the SB is initially
757   ;; allocated at.
758   (size 0 :type index))
759 (defprinter (sb)
760   name)
761
762 ;;; A FINITE-SB holds information needed by the packing algorithm for
763 ;;; finite SBs.
764 (def!struct (finite-sb (:include sb))
765   ;; the number of locations currently allocated in this SB
766   (current-size 0 :type index)
767   ;; the last location packed in, used by pack to scatter TNs to
768   ;; prevent a few locations from getting all the TNs, and thus
769   ;; getting overcrowded, reducing the possibilities for targeting.
770   (last-offset 0 :type index)
771   ;; a vector containing, for each location in this SB, a vector
772   ;; indexed by IR2 block numbers, holding local conflict bit vectors.
773   ;; A TN must not be packed in a given location within a particular
774   ;; block if the LTN number for that TN in that block corresponds to
775   ;; a set bit in the bit-vector.
776   (conflicts '#() :type simple-vector)
777   ;; a vector containing, for each location in this SB, a bit-vector
778   ;; indexed by IR2 block numbers. If the bit corresponding to a block
779   ;; is set, then the location is in use somewhere in the block, and
780   ;; thus has a conflict for always-live TNs.
781   (always-live '#() :type simple-vector)
782   (always-live-count '#() :type simple-vector)
783   ;; a vector containing the TN currently live in each location in the
784   ;; SB, or NIL if the location is unused. This is used during load-tn pack.
785   (live-tns '#() :type simple-vector)
786   ;; the number of blocks for which the ALWAYS-LIVE and CONFLICTS
787   ;; might not be virgin, and thus must be reinitialized when PACK
788   ;; starts. Less then the length of those vectors when not all of the
789   ;; length was used on the previously packed component.
790   (last-block-count 0 :type index))
791
792 ;;; the SC structure holds the storage base that storage is allocated
793 ;;; in and information used to select locations within the SB
794 (def!struct (sc (:copier nil))
795   ;; name, for printing and reference
796   (name nil :type symbol)
797   ;; the number used to index SC cost vectors
798   (number 0 :type sc-number)
799   ;; the storage base that this SC allocates storage from
800   (sb nil :type (or sb null))
801   ;; the size of elements in this SC, in units of locations in the SB
802   (element-size 0 :type index)
803   ;; if our SB is finite, a list of the locations in this SC
804   (locations nil :type list)
805   ;; a list of the alternate (save) SCs for this SC
806   (alternate-scs nil :type list)
807   ;; a list of the constant SCs that can me moved into this SC
808   (constant-scs nil :type list)
809   ;; true if the values in this SC needs to be saved across calls
810   (save-p nil :type boolean)
811   ;; vectors mapping from SC numbers to information about how to load
812   ;; from the index SC to this one. MOVE-FUNS holds the names of
813   ;; the functions used to do loading, and LOAD-COSTS holds the cost
814   ;; of the corresponding move functions. If loading is impossible,
815   ;; then the entries are NIL. LOAD-COSTS is initialized to have a 0
816   ;; for this SC.
817   (move-funs (make-array sc-number-limit :initial-element nil)
818              :type sc-vector)
819   (load-costs (make-array sc-number-limit :initial-element nil)
820               :type sc-vector)
821   ;; a vector mapping from SC numbers to possibly
822   ;; representation-specific move and coerce VOPs. Each entry is a
823   ;; list of VOP-INFOs for VOPs that move/coerce an object in the
824   ;; index SC's representation into this SC's representation. This
825   ;; vector is filled out with entries for all SCs that can somehow be
826   ;; coerced into this SC, not just those VOPs defined to directly
827   ;; move into this SC (i.e. it allows for operand loading on the move
828   ;; VOP's operands.)
829   ;;
830   ;; When there are multiple applicable VOPs, the template arg and
831   ;; result type restrictions are used to determine which one to use.
832   ;; The list is sorted by increasing cost, so the first applicable
833   ;; VOP should be used.
834   ;;
835   ;; Move (or move-arg) VOPs with descriptor results shouldn't have
836   ;; TNs wired in the standard argument registers, since there may
837   ;; already be live TNs wired in those locations holding the values
838   ;; that we are setting up for unknown-values return.
839   (move-vops (make-array sc-number-limit :initial-element nil)
840              :type sc-vector)
841   ;; the costs corresponding to the MOVE-VOPS. Separate because this
842   ;; info is needed at meta-compile time, while the MOVE-VOPs don't
843   ;; exist till load time. If no move is defined, then the entry is
844   ;; NIL.
845   (move-costs (make-array sc-number-limit :initial-element nil)
846               :type sc-vector)
847   ;; similar to Move-VOPs, except that we only ever use the entries
848   ;; for this SC and its alternates, since we never combine complex
849   ;; representation conversion with argument passing.
850   (move-arg-vops (make-array sc-number-limit :initial-element nil)
851                  :type sc-vector)
852   ;; true if this SC or one of its alternates in in the NUMBER-STACK SB.
853   (number-stack-p nil :type boolean)
854   ;; alignment restriction. The offset must be an even multiple of this.
855   (alignment 1 :type (and index (integer 1)))
856   ;; a list of locations that we avoid packing in during normal
857   ;; register allocation to ensure that these locations will be free
858   ;; for operand loading. This prevents load-TN packing from thrashing
859   ;; by spilling a lot.
860   (reserve-locations nil :type list))
861 (defprinter (sc)
862   name)
863 \f
864 ;;;; TNs
865
866 (def!struct (tn (:include sset-element)
867                (:constructor make-random-tn)
868                (:constructor make-tn (number kind primitive-type sc))
869                (:copier nil))
870   ;; The kind of TN this is:
871   ;;
872   ;;   :NORMAL
873   ;;    A normal, non-constant TN, representing a variable or temporary.
874   ;;    Lifetime information is computed so that packing can be done.
875   ;;
876   ;;   :ENVIRONMENT
877   ;;    A TN that has hidden references (debugger or NLX), and thus must be
878   ;;    allocated for the duration of the environment it is referenced in.
879   ;;
880   ;;   :DEBUG-ENVIRONMENT
881   ;;    Like :ENVIRONMENT, but is used for TNs that we want to be able to
882   ;;    target to/from and that don't absolutely have to be live
883   ;;    everywhere. These TNs are live in all blocks in the environment
884   ;;    that don't reference this TN.
885   ;;
886   ;;   :COMPONENT
887   ;;    A TN that implicitly conflicts with all other TNs. No conflict
888   ;;    info is computed.
889   ;;
890   ;;   :SAVE
891   ;;   :SAVE-ONCE
892   ;;    A TN used for saving a :NORMAL TN across function calls. The
893   ;;    lifetime information slots are unitialized: get the original
894   ;;    TN our of the SAVE-TN slot and use it for conflicts. SAVE-ONCE
895   ;;    is like :SAVE, except that it is only save once at the single
896   ;;    writer of the original TN.
897   ;;
898   ;;   :SPECIFIED-SAVE
899   ;;    A TN that was explicitly specified as the save TN for another TN.
900   ;;    When we actually get around to doing the saving, this will be
901   ;;    changed to :SAVE or :SAVE-ONCE.
902   ;;
903   ;;   :LOAD
904   ;;    A load-TN used to compute an argument or result that is
905   ;;    restricted to some finite SB. Load TNs don't have any conflict
906   ;;    information. Load TN pack uses a special local conflict
907   ;;    determination method.
908   ;;
909   ;;   :CONSTANT
910   ;;    Represents a constant, with TN-LEAF a CONSTANT leaf. Lifetime
911   ;;    information isn't computed, since the value isn't allocated by
912   ;;    pack, but is instead generated as a load at each use. Since
913   ;;    lifetime analysis isn't done on :CONSTANT TNs, they don't have
914   ;;    LOCAL-NUMBERs and similar stuff.
915   ;;
916   ;;   :ALIAS
917   ;;    A special kind of TN used to represent initialization of local
918   ;;    call arguments in the caller. It provides another name for the
919   ;;    argument TN so that lifetime analysis doesn't get confused by
920   ;;    self-recursive calls. Lifetime analysis treats this the same
921   ;;    as :NORMAL, but then at the end merges the conflict info into
922   ;;    the original TN and replaces all uses of the alias with the
923   ;;    original TN. SAVE-TN holds the aliased TN.
924   (kind (missing-arg)
925         :type (member :normal :environment :debug-environment
926                       :save :save-once :specified-save :load :constant
927                       :component :alias))
928   ;; the primitive-type for this TN's value. Null in restricted or
929   ;; wired TNs.
930   (primitive-type nil :type (or primitive-type null))
931   ;; If this TN represents a variable or constant, then this is the
932   ;; corresponding LEAF.
933   (leaf nil :type (or leaf null))
934   ;; thread that links TNs together so that we can find them
935   (next nil :type (or tn null))
936   ;; head of TN-REF lists for reads and writes of this TN
937   (reads nil :type (or tn-ref null))
938   (writes nil :type (or tn-ref null))
939   ;; a link we use when building various temporary TN lists
940   (next* nil :type (or tn null))
941   ;; some block that contains a reference to this TN, or NIL if we
942   ;; haven't seen any reference yet. If the TN is local, then this is
943   ;; the block it is local to.
944   (local nil :type (or ir2-block null))
945   ;; If a local TN, the block relative number for this TN. Global TNs
946   ;; whose liveness changes within a block are also assigned a local
947   ;; number during the conflicts analysis of that block. If the TN has
948   ;; no local number within the block, then this is NIL.
949   (local-number nil :type (or local-tn-number null))
950   ;; If this object is a local TN, this slot is a bit-vector with 1
951   ;; for the local-number of every TN that we conflict with.
952   (local-conflicts (make-array local-tn-limit
953                                :element-type 'bit
954                                :initial-element 0)
955                    :type local-tn-bit-vector)
956   ;; head of the list of GLOBAL-CONFLICTS structures for a global TN.
957   ;; This list is sorted by block number (i.e. reverse DFO), allowing
958   ;; the intersection between the lifetimes for two global TNs to be
959   ;; easily found. If null, then this TN is a local TN.
960   (global-conflicts nil :type (or global-conflicts null))
961   ;; During lifetime analysis, this is used as a pointer into the
962   ;; conflicts chain, for scanning through blocks in reverse DFO.
963   (current-conflict nil)
964   ;; In a :SAVE TN, this is the TN saved. In a :NORMAL or :ENVIRONMENT
965   ;; TN, this is the associated save TN. In TNs with no save TN, this
966   ;; is null.
967   (save-tn nil :type (or tn null))
968   ;; After pack, the SC we packed into. Beforehand, the SC we want to
969   ;; pack into, or null if we don't know.
970   (sc nil :type (or sc null))
971   ;; the offset within the SB that this TN is packed into. This is what
972   ;; indicates that the TN is packed
973   (offset nil :type (or index null))
974   ;; some kind of info about how important this TN is
975   (cost 0 :type fixnum)
976   ;; If a :ENVIRONMENT or :DEBUG-ENVIRONMENT TN, this is the
977   ;; physical environment that the TN is live throughout.
978   (physenv nil :type (or physenv null))
979   ;; The depth of the deepest loop that this TN is used in.
980   (loop-depth 0 :type fixnum))
981 (def!method print-object ((tn tn) stream)
982   (print-unreadable-object (tn stream :type t)
983     ;; KLUDGE: The distinction between PRINT-TN and PRINT-OBJECT on TN is
984     ;; not very mnemonic. -- WHN 20000124
985     (print-tn-guts tn stream)))
986
987 ;;; The GLOBAL-CONFLICTS structure represents the conflicts for global
988 ;;; TNs. Each global TN has a list of these structures, one for each
989 ;;; block that it is live in. In addition to repsenting the result of
990 ;;; lifetime analysis, the global conflicts structure is used during
991 ;;; lifetime analysis to represent the set of TNs live at the start of
992 ;;; the IR2 block.
993 (defstruct (global-conflicts
994             (:constructor make-global-conflicts (kind tn block number))
995             (:copier nil))
996   ;; the IR2-BLOCK that this structure represents the conflicts for
997   (block (missing-arg) :type ir2-block)
998   ;; thread running through all the GLOBAL-CONFLICTSs for BLOCK. This
999   ;; thread is sorted by TN number
1000   (next-blockwise nil :type (or global-conflicts null))
1001   ;; the way that TN is used by BLOCK
1002   ;;
1003   ;;   :READ
1004   ;;     The TN is read before it is written. It starts the block live,
1005   ;;     but is written within the block.
1006   ;;
1007   ;;   :WRITE
1008   ;;     The TN is written before any read. It starts the block dead,
1009   ;;     and need not have a read within the block.
1010   ;;
1011   ;;   :READ-ONLY
1012   ;;     The TN is read, but never written. It starts the block live,
1013   ;;     and is not killed by the block. Lifetime analysis will promote
1014   ;;     :READ-ONLY TNs to :LIVE if they are live at the block end.
1015   ;;
1016   ;;   :LIVE
1017   ;;     The TN is not referenced. It is live everywhere in the block.
1018   (kind :read-only :type (member :read :write :read-only :live))
1019   ;; a local conflicts vector representing conflicts with TNs live in
1020   ;; BLOCK. The index for the local TN number of each TN we conflict
1021   ;; with in this block is 1. To find the full conflict set, the :LIVE
1022   ;; TNs for BLOCK must also be included. This slot is not meaningful
1023   ;; when KIND is :LIVE.
1024   (conflicts (make-array local-tn-limit
1025                          :element-type 'bit
1026                          :initial-element 0)
1027              :type local-tn-bit-vector)
1028   ;; the TN we are recording conflicts for.
1029   (tn (missing-arg) :type tn)
1030   ;; thread through all the GLOBAL-CONFLICTSs for TN
1031   (next-tnwise nil :type (or global-conflicts null))
1032   ;; TN's local TN number in BLOCK. :LIVE TNs don't have local numbers.
1033   (number nil :type (or local-tn-number null)))
1034 (defprinter (global-conflicts)
1035   tn
1036   block
1037   kind
1038   (number :test number))