icode: add I*Value classes
[nit.git] / src / compiling / compiling_icode.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2009 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Generate C code from intermediate code representation
18 package compiling_icode
19
20 import icode
21 private import analysis
22 import compiling_base
23
24 # Compiler context from ICode to C
25 class I2CCompilerVisitor
26 # Associate things
27 var _ids: HashMap[Object, String] = new HashMap[Object, String]
28 # Associate other things
29 var _ids2: HashMap[Object, String] = new HashMap[Object, String]
30
31 # Return the string associated with a register
32 fun register(e: IRegister): String
33 do
34 if e.stype isa MMTypeNone then return "NIT_NULL"
35 var ids = _ids
36 if closure and not e.is_local then ids = _ids2
37 if ids.has_key(e) then
38 return ids[e]
39 else
40 var i = e.slot_index
41 if i == null then
42 # The register is dead
43 var s = "NIT_NULL"
44 ids[e] = s
45 return s
46 else
47 var s: String
48 var strs: HashMap[Int, String]
49 if e.in_tag_slots then
50 strs = once new HashMap[Int, String]
51 if not strs.has_key(i) then strs[i] = "REGB{i}"
52 else if closure and not e.is_local then
53 strs = once new HashMap[Int, String]
54 if not strs.has_key(i) then strs[i] = "closctx->REG[{i}]"
55 else
56 strs = once new HashMap[Int, String]
57 if not strs.has_key(i) then strs[i] = "fra.me.REG[{i}]"
58 end
59 s = strs[i]
60 ids[e] = s
61 return s
62 end
63 end
64 end
65
66 # Return the strings associated with registers
67 fun registers(a: Collection[IRegister]): Array[String]
68 do
69 var r = new Array[String].with_capacity(a.length)
70 for e in a do
71 r.add(register(e))
72 end
73 return r
74 end
75
76 var _last_number: Int = 0
77 # Give a new unique number (unique for the visitor)
78 fun new_number: Int
79 do
80 _last_number += 1
81 return _last_number
82 end
83
84 # Return the string associated with a escape label
85 fun lab(e: ISeq): String
86 do
87 if _ids.has_key(e) then
88 return _ids[e]
89 else
90 var s = "label{new_number}"
91 _ids[e] = s
92 return s
93 end
94 end
95
96 # The rank (number) of each closure
97 readable var _closures: HashMap[IClosureDecl, String] = new HashMap[IClosureDecl, String]
98
99 # The functionnal type of each closure
100 readable var _clostypes: HashMap[IClosureDecl, String] = new HashMap[IClosureDecl, String]
101
102 # label locally accessibles
103 readable writable var _local_labels: HashSet[ISeq] = new HashSet[ISeq]
104
105 # Not local escaped labels
106 # The integer value is an index identifying the label
107 readable writable var _escaped_labels: HashMap[ISeq, Int] = new HashMap[ISeq, Int]
108
109 # Register a escape to a non local label and return an index identifying the label
110 fun register_escape_label(e: ISeq): Int
111 do
112 if _escaped_labels.has_key(e) then
113 return _escaped_labels[e]
114 else
115 var res = _escaped_labels.length + 1
116 _escaped_labels[e] = res
117 return res
118 end
119 end
120
121 # Add a C label mark (if needed)
122 fun add_label(e: ISeq)
123 do
124 if _ids.has_key(e) then
125 add_instr("{_ids[e]}: while(0);")
126 end
127 end
128
129 # Add a goto to a label (even outside a closure)
130 fun add_goto(seq: ISeq)
131 do
132 if local_labels.has(seq) then
133 add_instr("goto {lab(seq)};")
134 else
135 assert closure
136 var ind = register_escape_label(seq)
137 add_instr("closctx->has_broke = {ind};")
138 add_instr("goto {lab(return_label.as(not null))};")
139 end
140 end
141
142 # Association between IEscapeMarks and visited ISeq
143 readable var _marks_to_seq: Map[IEscapeMark, ISeq] = new HashMap[IEscapeMark, ISeq]
144
145 # Are we in a closure ?
146 readable writable var _closure: Bool = false
147
148 # The current compiler visitor
149 readable var _visitor: CompilerVisitor
150
151 # The current compiled iroutine
152 readable var _iroutine: IRoutine
153
154 # The return label of the current compiling C function
155 readable writable var _return_label: nullable ISeq = null
156
157 fun add_decl(s: String)
158 do
159 visitor.add_decl(s)
160 end
161
162 # Prepare a new instuction (indent, comment)
163 # Caller must ensure to add a new line to finish its instr
164 fun new_instr: Writer
165 do
166 var w = visitor.writer
167 var l = _next_location
168 if l != null then
169 visitor.add_indent(w)
170 w.add("/* ")
171 w.add(l.file)
172 w.add(":")
173 w.add(l.line_start.to_s)
174 w.add(" */\n")
175 _next_location = null
176 end
177 visitor.add_indent(w)
178 return w
179 end
180
181 fun add_instr(s: String)
182 do
183 new_instr.add(s).add("\n")
184 end
185
186 fun indent
187 do
188 visitor.indent
189 end
190
191 fun unindent
192 do
193 visitor.unindent
194 end
195
196 fun add_assignment(to, from: String)
197 do
198 visitor.add_assignment(to, from)
199 end
200
201 var _last_location: nullable Location = null
202 var _next_location: nullable Location = null
203
204 # Add location information in a comment
205 # Do nothing if the last location added is the same
206 fun add_location(l: nullable Location)
207 do
208 var last = _last_location
209 if last == l or l == null then return
210 _last_location = l
211 if last != null and last.file == l.file and last.line_start == l.line_start then
212 return
213 else
214 _next_location = l
215 end
216 end
217
218 # The C fonction name of the iroutine
219 readable var _basecname: String
220
221 init(v: CompilerVisitor, ir: IRoutine, cname: String)
222 do
223 _visitor = v
224 _iroutine = ir
225 _basecname = cname
226 end
227 end
228
229 redef class IRoutine
230 # Declare and start a C function that match the routine
231 # Return what must be given to compile_inside_to_c or to compile_to_c
232 # After the method, an openinig { and and indent is added.
233 # So, do not forget to add a sub_context, to unintent and to add a closing }
234 fun compile_signature_to_c(v: CompilerVisitor, cname: String, human_name: nullable String, before_params, after_params: nullable String): Array[String]
235 do
236 var cargs = new Array[String]
237 var cparams = new Array[String]
238 if before_params != null then cparams.add(before_params)
239 for i in [0..params.length[ do
240 cargs.add("p{i}")
241 cparams.add("val_t p{i}")
242 end
243 if closure_decls != null then
244 cparams.add("struct stack_frame_t *closctx_param")
245 for i in [0..closure_decls.length[ do
246 var closcn = "CLOS_{cname}_{i}"
247 var cs = closure_decls[i].closure.signature
248 var subparams = new Array[String] # Parameters of the closure
249 subparams.add("struct stack_frame_t *")
250 for j in [0..cs.arity[ do
251 subparams.add("val_t")
252 end
253 var rr = "void"
254 if cs.return_type != null then rr = "val_t"
255 v.add_decl("typedef {rr} (*{closcn})({subparams.join(", ")});")
256 cargs.add("clos_fun{i}")
257 cparams.add("fun_t clos_fun{i}")
258 end
259 end
260 if after_params != null then cparams.add(after_params)
261 var r = "void"
262 if result != null then r = "val_t"
263 var p: String
264 if cparams.is_empty then
265 p = "void"
266 else
267 p = cparams.join(", ")
268 end
269 if human_name != null then v.add_decl("#define LOCATE_{cname} \"{human_name}\"")
270 v.add_decl("{r} {cname}({p});")
271 v.add_decl("typedef {r} (*{cname}_t)({p});")
272 v.add_instr("{r} {cname}({p})\{")
273 v.indent
274 return cargs
275 end
276
277 # Compile the body of the routine, return the result value is any
278 fun compile_inside_to_c(v: I2CCompilerVisitor, args: Array[String]): nullable String
279 do
280 # Create and push the stack frame
281 var ll = 0
282 if location != null then
283 ll = location.line_start
284 end
285 # Encapsulate the frame ('me') in a larger structure ('fra') that has enough space to store the local variables (REG)
286 if std_slots_nb > 1 then
287 v.add_decl("struct \{struct stack_frame_t me; val_t MORE_REG[{std_slots_nb-1}];\} fra;")
288 else
289 v.add_decl("struct \{struct stack_frame_t me;\} fra;")
290 end
291 v.add_instr("fra.me.prev = stack_frame_head; stack_frame_head = &fra.me;")
292 v.add_instr("fra.me.file = LOCATE_{v.visitor.module.name};")
293 v.add_instr("fra.me.line = {ll};")
294 v.add_instr("fra.me.meth = LOCATE_{v.basecname};")
295 v.add_instr("fra.me.has_broke = 0;")
296 v.add_instr("fra.me.REG_size = {std_slots_nb};")
297
298 # Declare/initialize local variables
299 for i in [0..std_slots_nb[ do
300 v.add_instr("fra.me.REG[{i}] = NIT_NULL;")
301 end
302 for i in [0..tag_slots_nb[ do
303 v.add_decl("val_t REGB{i};")
304 end
305 var iclosdecls = closure_decls
306 if iclosdecls != null then
307 v.add_decl("fun_t CREG[{iclosdecls.length}];")
308 v.add_instr("fra.me.closure_ctx = closctx_param;")
309 v.add_instr("fra.me.closure_funs = CREG;")
310 end
311 var k = 0
312 for r in params do
313 if r.slot_index != null then v.add_assignment(v.register(r), args[k])
314 k += 1
315 end
316 if iclosdecls != null then
317 for i in [0..iclosdecls.length[ do
318 var iclosdecl = iclosdecls[i]
319 v.add_instr("CREG[{i}] = {args[params.length+i]};")
320 v.closures[iclosdecl] = i.to_s
321 var cs = iclosdecl.closure.signature # Closure signature
322 var subparams = new Array[String] # Parameters of the closure
323 subparams.add("struct stack_frame_t *")
324 for j in [0..cs.arity[ do
325 var p = "val_t"
326 subparams.add(p)
327 end
328 var r = "void"
329 if cs.return_type != null then r = "val_t"
330 v.clostypes[iclosdecl] = "{r} (*)({subparams.join(", ")})"
331 end
332 end
333 v.add_decl("val_t tmp;")
334
335 # Prepare return
336 var old_rl = v.return_label
337 v.return_label = body
338
339 # Compile body
340 body.compile_to_c(v)
341
342 v.add_instr("stack_frame_head = fra.me.prev;")
343 v.return_label = old_rl
344 var r = result
345 if r != null then
346 return v.register(r)
347 else
348 return null
349 end
350 end
351
352 # Full compilation of the routine
353 # cv must be in the correct function
354 fun compile_to_c(cv: CompilerVisitor, cname: String, args: Array[String]): nullable String
355 do
356 var v = new I2CCompilerVisitor(cv, self, cname)
357 return compile_inside_to_c(v, args)
358 end
359 end
360
361 redef class ICode
362 # Full compilation of the icode
363 fun compile_to_c(v: I2CCompilerVisitor) is abstract
364
365 # Is a result really needed
366 private fun need_result: Bool
367 do
368 var r = result
369 return r != null and r.slot_index != null
370 end
371
372 # Store s in the result value of self
373 private fun store_result(v: I2CCompilerVisitor, w: nullable Writer)
374 do
375 var r = result
376 if r != null and r.slot_index != null then
377 assert w != null
378 var w2 = v.new_instr
379 w2.add(v.register(r))
380 w2.add(" = ")
381 w2.append(w)
382 w2.add(";\n")
383 else if w != null and not is_pure then
384 # ICode with side effects must be evaluated
385 # even if the result is not wanted
386 var w2 = v.new_instr
387 w2.append(w)
388 w2.add(";\n")
389 end
390 end
391
392 # Prepare a writer if the expression icode need to be compiled
393 # * Result assigment is automatic if needed
394 private fun new_result(v: I2CCompilerVisitor): Writer
395 do
396 assert need_result or not is_pure
397 var w2 = v.new_instr
398 var r = result
399 if r != null and r.slot_index != null then
400 w2.add(v.register(r))
401 w2.add(" = ")
402 end
403 var w = w2.sub
404 w2.add(";\n")
405 return w
406 end
407 end
408
409 redef class ISeq
410 redef fun compile_to_c(v)
411 do
412 v.add_location(location)
413 v.local_labels.add(self)
414 var mark = iescape_mark
415 if mark != null then v.marks_to_seq[mark] = self
416 for ic in icodes do
417 ic.compile_to_c(v)
418 end
419 v.add_label(self)
420 end
421 end
422
423 redef class IIf
424 redef fun compile_to_c(v)
425 do
426 v.add_location(location)
427 var w = v.new_instr
428 w.add("if (UNTAG_Bool(")
429 w.add(v.register(expr))
430 w.add(")) \{\n")
431 if not then_seq.icodes.is_empty then
432 v.indent
433 then_seq.compile_to_c(v)
434 v.unindent
435 end
436 if not else_seq.icodes.is_empty then
437 v.add_instr("\} else \{")
438 v.indent
439 else_seq.compile_to_c(v)
440 v.unindent
441 end
442 v.add_instr("\}")
443 end
444 end
445
446 redef class ILoop
447 redef fun compile_to_c(v)
448 do
449 v.add_location(location)
450 v.local_labels.add(self)
451 var mark = iescape_mark
452 if mark != null then v.marks_to_seq[mark] = self
453 v.add_instr("while(1) \{")
454 v.indent
455 for ic in icodes do
456 ic.compile_to_c(v)
457 end
458 v.unindent
459 v.add_instr("\}")
460 v.add_label(self)
461 end
462 end
463
464 redef class IEscape
465 redef fun compile_to_c(v)
466 do
467 v.add_location(location)
468 v.add_goto(v.marks_to_seq[iescape_mark])
469 end
470 end
471
472 redef class IAbsCall
473 redef fun compile_to_c(v)
474 do
475 v.add_location(location)
476 var args = v.registers(exprs)
477
478 # Compile closure definitions
479 var old_el = v.escaped_labels
480 var closdefs = closure_defs
481 var closctx: nullable String = null # The closure context of closdefs
482 if closdefs != null then
483 # Get the closure context
484 if v.closure then
485 closctx = "closctx"
486 else
487 closctx = "(&(fra.me))"
488 end
489
490 # First aditionnal arguments is the closure context
491 args.add(closctx)
492
493 # We are in a new escape boundary
494 v.escaped_labels = new HashMap[ISeq, Int]
495
496 # Compile each closures and add each sub-function as an other additionnal parameter
497 for cd in closdefs do
498 if cd != null then
499 var cn = cd.compile_closure(v)
500 args.add(cn)
501 else
502 args.add("NULL")
503 end
504 end
505 end
506
507 # Compile the real call
508 var call = compile_call_to_c(v, args)
509 var res: nullable Writer = call
510
511 # Intercept escapes
512 if closctx != null then
513 var els = v.escaped_labels
514 v.escaped_labels = old_el
515 # Is there possible escapes?
516 if not els.is_empty then
517 # Call in a tmp variable to avoid 'break' overwrite
518 var w = v.new_instr
519 if need_result then
520 w.add("tmp")
521 w.add(" = ")
522 w.append(call)
523 w.add(";\n")
524 res = new Writer
525 res.add("tmp")
526 else
527 res = null
528 w.append(call)
529 w.add(";\n")
530 end
531 # What are the expected escape indexes
532 v.new_instr.add("switch (").add(closctx).add("->has_broke) \{\n")
533 v.indent
534 # No escape occured, continue as usual
535 v.add_instr("case 0: break;")
536 var lls = v.local_labels
537 var iels = els.iterator
538 var forward_escape = false
539 while iels.is_ok do
540 var seq = iels.key
541 if lls.has(seq) then
542 # Local escape occured
543 # Clear the has_broke information and go to the target
544 v.new_instr.add("case ").add(iels.item.to_s).add(": ").add(closctx).add("->has_broke = 0; goto ").add(v.lab(seq)).add(";\n")
545 else
546 # Forward escape occured: register the escape label
547 assert v.closure
548 v.register_escape_label(seq)
549 forward_escape = true
550 end
551 iels.next
552 end
553 # If forward escape occured, just pass to the next one
554 if forward_escape then
555 # Do not need to copy 'has_broke' value since it is shared by the next one.
556 # So just exit the C function.
557 v.new_instr.add("default: goto ").add(v.lab(v.return_label.as(not null))).add(";\n")
558 end
559 v.unindent
560 v.add_instr("\}")
561 end
562 end
563
564 if res != null then
565 var w = new_result(v)
566 w.append(res)
567 end
568 end
569
570 # The single invocation witout fancy stuffs
571 private fun compile_call_to_c(v: I2CCompilerVisitor, args: Array[String]): Writer is abstract
572 end
573
574 redef class ICall
575 redef fun compile_call_to_c(v, args)
576 do
577 var w = new Writer
578 var prop = property
579 if prop.global.is_init then args.add("init_table")
580 if prop.name == (once ("add".to_symbol)) and prop.local_class.name == (once ("Array".to_symbol)) then
581 w.add(prop.cname)
582 w.add("(")
583 else
584 w.add(prop.global.meth_call)
585 w.add("(")
586 w.add(args.first)
587 w.add(")(")
588 end
589 var first = true
590 w.add_all(args, ", ")
591 w.add(")")
592 return w
593 end
594 end
595
596 redef class ISuper
597 redef fun compile_call_to_c(v, args)
598 do
599 var prop = property
600 if prop.global.is_init then args.add("init_table")
601 var w = new Writer
602 w.add(prop.super_meth_call)
603 w.add("(")
604 w.add(args.first)
605 w.add(")(")
606 w.add_all(args, ", ")
607 w.add(")")
608 return w
609 end
610 end
611
612 redef class INew
613 redef fun compile_call_to_c(v, args)
614 do
615 var w = new Writer
616 w.add("NEW_")
617 w.add(stype.local_class.to_s)
618 w.add("_")
619 w.add(property.global.intro.cname)
620 w.add("(")
621 w.add_all(args, ", ")
622 w.add(")")
623 return w
624 end
625 end
626
627 redef class IAllocateInstance
628 redef fun compile_to_c(v)
629 do
630 v.add_location(location)
631 var w = new_result(v)
632 w.add("NEW_")
633 w.add(stype.local_class.name.to_s)
634 w.add("()")
635 end
636 end
637
638 redef class ICheckInstance
639 redef fun compile_to_c(v)
640 do
641 v.add_location(location)
642 var w = new_result(v)
643 w.add("CHECKNEW_")
644 w.add(stype.local_class.name.to_s)
645 w.add("(")
646 w.add(v.register(expr))
647 w.add(")")
648 end
649 end
650
651 redef class IInitAttributes
652 redef fun compile_to_c(v)
653 do
654 v.add_location(location)
655 var w = v.new_instr
656 w.add("INIT_ATTRIBUTES__")
657 w.add(stype.local_class.name.to_s)
658 w.add("(")
659 w.add(v.register(expr))
660 w.add(");\n")
661 end
662 end
663
664 redef class IStaticCall
665 redef fun compile_call_to_c(v, args)
666 do
667 var prop = property
668 if prop.global.is_init then args.add("init_table")
669 var w = new Writer
670 w.add(property.cname)
671 w.add("(")
672 w.add_all(args, ", ")
673 w.add(")")
674 return w
675 end
676 end
677
678 redef class INative
679 redef fun compile_to_c(v)
680 do
681 v.add_location(location)
682 var w = new_result(v)
683 if exprs.is_empty then
684 w.add(code)
685 else
686 var i = 0
687 var c = code.split_with("@@@")
688 for s in c do
689 w.add(s)
690 if i < exprs.length and i < c.length-1 then
691 w.add(v.register(exprs[i]))
692 end
693 i += 1
694 end
695 end
696 end
697 end
698
699 redef class IIntValue
700 redef fun compile_to_c(v)
701 do
702 v.add_location(location)
703 var w = new_result(v)
704 w.add("TAG_Int(").add(value.to_s).add(")")
705 end
706 end
707
708 redef class IBoolValue
709 redef fun compile_to_c(v)
710 do
711 v.add_location(location)
712 var w = new_result(v)
713 w.add("TAG_Bool(")
714 if value then w.add("true") else w.add("false")
715 w.add(")")
716 end
717 end
718
719 redef class ICharValue
720 redef fun compile_to_c(v)
721 do
722 v.add_location(location)
723 var w = new_result(v)
724 w.add("TAG_Char(").add(value).add(")")
725 end
726 end
727
728 redef class IFloatValue
729 redef fun compile_to_c(v)
730 do
731 v.add_location(location)
732 var w = new_result(v)
733 w.add("BOX_Float(").add(value).add(")")
734 end
735 end
736
737 redef class IStringValue
738 redef fun compile_to_c(v)
739 do
740 v.add_location(location)
741 var w = new_result(v)
742 w.add("BOX_NativeString(\"").add(value).add("\")")
743 end
744 end
745
746 redef class IAbort
747 redef fun compile_to_c(v)
748 do
749 v.add_location(location)
750 var w = v.new_instr
751 w.add("fprintf(stderr")
752 for t in texts do
753 w.add(", \"")
754 w.add(t)
755 w.add("\"")
756 end
757 w.add(");\n")
758
759 var ll = location
760 w = v.new_instr
761 w.add("fprintf(stderr, \" (%s")
762 if ll != null then
763 w.add(":%d")
764 end
765 w.add(")\\n\", LOCATE_")
766 w.add(module_location.name.to_s)
767 if ll != null then
768 w.add(", ")
769 w.add(ll.line_start.to_s)
770 end
771 w.add(");\n")
772
773 v.add_instr("nit_exit(1);")
774 end
775 end
776
777 redef class IMove
778 redef fun compile_to_c(v)
779 do
780 if not need_result then return
781 var e = v.register(expr)
782 var r = v.register(result.as(not null))
783 if e == r then return
784 v.add_location(location)
785 var w = v.new_instr
786 w.add(r)
787 w.add(" = ")
788 w.add(e)
789 w.add(";\n")
790 end
791 end
792
793 redef class IAttrRead
794 redef fun compile_to_c(v)
795 do
796 if not need_result then return
797 v.add_location(location)
798 var w = new_result(v)
799 w.add(property.global.attr_access)
800 w.add("(")
801 w.add(v.register(expr))
802 w.add(")")
803 end
804 end
805
806 redef class IAttrIsset
807 redef fun compile_to_c(v)
808 do
809 if not need_result then return
810 v.add_location(location)
811 var w = new_result(v)
812 w.add("TAG_Bool(")
813 w.add(property.global.attr_access)
814 w.add("(")
815 w.add(v.register(expr))
816 w.add(")!=NIT_NULL)")
817 end
818 end
819
820 redef class IAttrWrite
821 redef fun compile_to_c(v)
822 do
823 v.add_location(location)
824 var w = v.new_instr
825 w.add(property.global.attr_access)
826 w.add("(")
827 w.add(v.register(expr1))
828 w.add(") = ")
829 w.add(v.register(expr2))
830 w.add(";\n")
831 end
832 end
833
834 redef class ITypeCheck
835 redef fun compile_to_c(v)
836 do
837 if not need_result then return
838 # FIXME handle formaltypes
839 v.add_location(location)
840 var g = stype.local_class.global
841 var recv = v.register(expr)
842 var w = new_result(v)
843 w.add("TAG_Bool(")
844 if expr.stype.is_nullable then
845 if stype.is_nullable then
846 w.add("(")
847 w.add(recv)
848 w.add("==NIT_NULL) || ")
849 else if stype.as_nullable == expr.stype then
850 w.add(recv)
851 w.add("!=NIT_NULL)")
852 return
853 else
854 w.add("(")
855 w.add(recv)
856 w.add("!=NIT_NULL) && ")
857 end
858 end
859 w.add("VAL_ISA(")
860 w.add(recv)
861 w.add(", ")
862 w.add(g.color_id)
863 w.add(", ")
864 w.add(g.id_id)
865 w.add(")) /*cast ")
866 w.add(stype.to_s)
867 w.add("*/")
868 end
869 end
870
871 redef class IIs
872 redef fun compile_to_c(v)
873 do
874 if not need_result then return
875 v.add_location(location)
876 var w = new_result(v)
877 w.add("TAG_Bool(")
878 var t1 = expr1.stype
879 var t2 = expr2.stype
880 if t1 isa MMTypeNone then
881 if t2 isa MMTypeNone then
882 w.add("1)")
883 return
884 else if t2.is_nullable then
885 w.add(v.register(expr2))
886 w.add("==NIT_NULL)")
887 return
888 else
889 w.add("0)")
890 return
891 end
892 else if t1.is_nullable then
893 if t2 isa MMTypeNone then
894 w.add(v.register(expr1))
895 w.add("==NIT_NULL)")
896 return
897 else if t2.is_nullable then
898 w.add("IS_EQUAL_NN(")
899 else
900 w.add("IS_EQUAL_ON(")
901 w.add(v.register(expr2))
902 w.add(",")
903 w.add(v.register(expr1))
904 w.add("))")
905 return
906 end
907 else
908 if t2 isa MMTypeNone then
909 w.add("0)")
910 return
911 else if t2.is_nullable then
912 w.add("IS_EQUAL_ON(")
913 else
914 w.add("IS_EQUAL_OO(")
915 end
916 end
917 w.add(v.register(expr1))
918 w.add(",")
919 w.add(v.register(expr2))
920 w.add("))")
921 end
922 end
923
924 redef class INot
925 redef fun compile_to_c(v)
926 do
927 if not need_result then return
928 v.add_location(location)
929 var w = new_result(v)
930 w.add("TAG_Bool(!UNTAG_Bool(")
931 w.add(v.register(expr))
932 w.add("))")
933 end
934 end
935
936 redef class IOnce
937 redef fun compile_to_c(v)
938 do
939 v.add_location(location)
940 var i = v.new_number
941 var res = result.as(not null)
942 if res.stype.is_nullable then
943 v.add_decl("static val_t once_value_{i}; static int once_bool_{i}; /* Once value */")
944 v.add_instr("if (!once_bool_{i}) \{")
945 else
946 # Since the value is not nullable, we use the null value to represent the boolean
947 v.add_decl("static val_t once_value_{i}; /* Once value */")
948 v.add_instr("if (!once_value_{i}) \{")
949 end
950 v.indent
951 body.compile_to_c(v)
952 var e = v.register(res)
953 v.add_instr("once_value_{i} = {e};")
954 v.add_instr("register_static_object(&once_value_{i});")
955 if res.stype.is_nullable then v.add_instr("once_bool_{i} = true;")
956 v.unindent
957 v.add_instr("\} else {e} = once_value_{i};")
958 var w = new_result(v)
959 w.add(e)
960 end
961 end
962
963 redef class IClosCall
964 redef fun compile_to_c(v: I2CCompilerVisitor)
965 do
966 v.add_location(location)
967 var ivar: String
968 var args: Array[String]
969 if v.closure then
970 ivar = "closctx->closure_funs[{v.closures[closure_decl]}]"
971 args = ["closctx->closure_ctx"]
972 else
973 ivar = "CREG[{v.closures[closure_decl]}]"
974 args = ["closctx_param"]
975 end
976 args.append(v.registers(exprs))
977
978 var s = "(({v.clostypes[closure_decl]})({ivar}))({args.join(", ")})"
979 var w = new Writer
980 w.add(s)
981 store_result(v, w)
982
983 # Intercept escape
984 v.add_instr("if ({args.first}->has_broke) \{")
985 v.indent
986 var bs = break_seq
987 if bs != null then
988 bs.compile_to_c(v)
989 end
990 v.add_goto(v.iroutine.body)
991 v.unindent
992 v.add_instr("\}")
993 end
994 end
995
996 redef class IHasClos
997 redef fun compile_to_c(v)
998 do
999 if not need_result then return
1000 v.add_location(location)
1001 var w = new_result(v)
1002 w.add("TAG_Bool(")
1003 if v.closure then
1004 w.add("closctx->closure_funs[")
1005 w.add(v.closures[closure_decl])
1006 w.add("]")
1007 else
1008 w.add("CREG[")
1009 w.add(v.closures[closure_decl])
1010 w.add("]")
1011 end
1012 w.add(" != NULL)")
1013 end
1014 end
1015
1016 redef class IClosureDef
1017 # Compile the closure as a separate C function in the visitor out_contexts.
1018 # Return a fun_t pointer to the function.
1019 fun compile_closure(v: I2CCompilerVisitor): String
1020 do
1021 var cv = v.visitor
1022
1023 # We are now in a closure
1024 var cfc_old = v.closure
1025 v.closure = true
1026
1027 # We are now in a escape boundary
1028 var lls_old = v.local_labels
1029 v.local_labels = new HashSet[ISeq]
1030
1031 # We are now in a new C context
1032 var decl_writer_old = cv.decl_writer
1033 var writer_old = cv.writer
1034 cv.writer = cv.top_writer.sub
1035 cv.decl_writer = cv.header_writer.sub
1036
1037 # Generate the C function
1038 var cname = "OC_{v.basecname}_{v.new_number}"
1039 var args = compile_signature_to_c(v.visitor, cname, null, "struct stack_frame_t *closctx", null)
1040 cv.decl_writer = cv.writer.sub
1041
1042 var s = compile_inside_to_c(v, args)
1043 if s == null then
1044 v.add_instr("return;")
1045 else
1046 v.add_instr("return {s};")
1047 end
1048 v.unindent
1049 v.add_instr("\}")
1050
1051 # Restore things
1052 cv.writer = writer_old
1053 cv.decl_writer = decl_writer_old
1054 v.closure = cfc_old
1055 v.local_labels = lls_old
1056 return "((fun_t){cname})"
1057 end
1058 end