source: src/AST/Print.cpp@ 26d57ca

Last change on this file since 26d57ca was 0c327ce, checked in by JiadaL <j82liang@…>, 15 months ago
  1. Add bound check to Serial function: now compiler generates the unchecked functions in ImplementEnumFunc, and enum.hfa implements the bound check on top. Todo: Wrapped the checked version into a trait; 2. countof is now works on any type that implement Countof(). Because Countof() is implemented in enum.hfa for all CfaEnum, we can call countof on { T | CfaEnum(T) }
  • Property mode set to 100644
File size: 41.4 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// Print.cpp -- Print an AST (or sub-tree) to a stream.
8//
9// Author : Thierry Delisle
10// Created On : Tue May 21 16:20:15 2019
11// Last Modified By :
12// Last Modified On :
13// Update Count :
14//
15
16#include "Print.hpp"
17
18#include "Attribute.hpp"
19#include "Decl.hpp"
20#include "Expr.hpp"
21#include "Init.hpp"
22#include "Stmt.hpp"
23#include "Type.hpp"
24#include "TypeSubstitution.hpp"
25#include "CompilationState.hpp"
26#include "Common/Iterate.hpp"
27
28using namespace std;
29
30namespace ast {
31
32namespace {
33
34template<typename C, typename... T>
35constexpr array<C, sizeof...(T)> make_array( T&&... values ) {
36 return array<C, sizeof...(T)>{ std::forward<T>( values )... };
37}
38
39namespace Names {
40 static constexpr auto FuncSpecifiers = make_array<const char*>(
41 "inline", "_Noreturn", "fortran"
42 );
43
44 static constexpr auto StorageClasses = make_array<const char*>(
45 "extern", "static", "auto", "register", "__thread", "_Thread_local"
46 );
47
48 static constexpr auto Qualifiers = make_array<const char*>(
49 "const", "restrict", "volatile", "mutex", "_Atomic"
50 );
51}
52
53template<typename bits_t, size_t N>
54void print( ostream & os, const bits_t & bits,
55 const array<const char *, N> & names ) {
56 if ( !bits.any() ) return;
57 for ( size_t i = 0 ; i < N ; i += 1 ) {
58 if ( bits[i] ) {
59 os << names[i] << ' ';
60 }
61 }
62}
63
64class Printer final : public Visitor {
65public:
66 ostream & os;
67 Indenter indent;
68 bool short_mode;
69
70 Printer(ostream & os, Indenter indent, bool short_mode) : os( os ), indent( indent ), short_mode(short_mode) {}
71
72private:
73 template< typename C >
74 void printAll( const C & c ) {
75 for ( const auto & i : c ) {
76 if ( i ) {
77 os << indent;
78 i->accept( *this );
79 // need an endl after each element because it's not
80 // easy to know when each individual item should end
81 os << endl;
82 } // if
83 } // for
84 }
85
86 /// call if mandatory field is missing
87 void undefined() {
88 os << "UNDEFINED";
89 }
90
91 /// call for fields that should be mandatory
92 void safe_print( const ast::Node * n ) {
93 if ( n ) n->accept( *this );
94 else undefined();
95 }
96
97 /// call to print short form. Incorporates features of safe_print()
98 void short_print( const ast::Decl * n ) {
99 if ( ! n ) { undefined(); return; }
100 bool old_short = short_mode; short_mode = true;
101 n->accept( *this );
102 short_mode = old_short;
103 }
104
105 void print( const std::vector<ast::Label> & labels ) {
106 if ( labels.empty() ) return;
107 os << indent << "... Labels: {";
108 bool isFirst = true;
109 for ( const Label & l : labels ) {
110 if ( isFirst ) { isFirst = false; } else { os << ","; }
111 os << l;
112 }
113 os << "}" << endl;
114 }
115
116 void print( const ast::Expr::InferUnion & inferred, unsigned level = 0 ) {
117 if (inferred.data.resnSlots && !inferred.data.resnSlots->empty()) {
118 os << indent << "with " << inferred.data.resnSlots->size()
119 << " pending inference slots" << endl;
120 }
121 if (inferred.data.inferParams && !inferred.data.inferParams->empty()) {
122 os << indent << "with inferred parameters " << level << ":" << endl;
123 ++indent;
124 for ( const auto & i : *inferred.data.inferParams ) {
125 os << indent;
126 short_print( i.second.declptr );
127 os << endl;
128 print( i.second.expr->inferred, level+1 );
129 }
130 --indent;
131 }
132 }
133
134 void print( const ast::FunctionType::ForallList & forall ) {
135 if ( forall.empty() ) return;
136 os << "forall" << endl;
137 ++indent;
138 printAll( forall );
139 os << indent;
140 --indent;
141 }
142
143 void print( const ast::FunctionType::AssertionList & assts ) {
144 if (assts.empty()) return;
145 os << "with assertions" << endl;
146 ++indent;
147 printAll(assts);
148 os << indent;
149 --indent;
150 }
151
152 void print( const std::vector<ptr<Attribute>> & attrs ) {
153 if ( attrs.empty() ) return;
154 os << "with attributes" << endl;
155 ++indent;
156 printAll( attrs );
157 --indent;
158 }
159
160 void print( const std::vector<ptr<Expr>> & params ) {
161 if ( params.empty() ) return;
162 os << endl << indent << "... with parameters" << endl;
163 ++indent;
164 printAll( params );
165 --indent;
166 }
167
168 void print( const ast::AggregateDecl * node ) {
169 os << node->typeString() << " " << node->name;
170
171 if ( ! short_mode && node->linkage != Linkage::Cforall ) {
172 os << " " << Linkage::name( node->linkage );
173 }
174
175 auto ptrToEnum = dynamic_cast<const ast::EnumDecl *>(node);
176 if ( ! short_mode && ptrToEnum && ptrToEnum->base ) {
177 os << endl << indent << "... with base type" << endl;
178 ++indent;
179 os << indent;
180 ptrToEnum->base->accept( *this );
181 --indent;
182 }
183
184 os << " " << (node->body ? "with" : "without") << " body";
185
186 if ( ! node->params.empty() ) {
187 os << endl << indent << "... with parameters" << endl;
188 ++indent;
189 printAll( node->params );
190 --indent;
191 }
192
193 if ( ! short_mode && ! node->members.empty() ) {
194 os << endl << indent << "... with members" << endl;
195 ++indent;
196 printAll( node->members );
197 --indent;
198 }
199
200 if ( ! short_mode && ! node->attributes.empty() ) {
201 os << endl << indent << "... with attributes" << endl;
202 ++indent;
203 printAll( node->attributes );
204 --indent;
205 }
206
207
208
209 os << endl;
210 }
211
212 void print( const ast::WaitStmt * node ) {
213 if ( node->timeout_time ) {
214 os << indent-1 << "timeout of:" << endl;
215 node->timeout_time->accept( *this );
216
217 if ( node->timeout_stmt ) {
218 os << indent-1 << "... with statment:" << endl;
219 node->timeout_stmt->accept( *this );
220 }
221
222 if ( node->timeout_cond ) {
223 os << indent-1 << "... with condition:" << endl;
224 node->timeout_cond->accept( *this );
225 }
226 }
227
228 if ( node->else_stmt ) {
229 os << indent-1 << "else:" << endl;
230 node->else_stmt->accept( *this );
231
232 if ( node->else_cond ) {
233 os << indent-1 << "... with condition:" << endl;
234 node->else_cond->accept( *this );
235 }
236 }
237 }
238
239 void preprint( const ast::NamedTypeDecl * node ) {
240 if ( ! node->name.empty() ) {
241 os << node->name << ": ";
242 }
243
244 if ( ! short_mode && node->linkage != Linkage::Cforall ) {
245 os << Linkage::name( node->linkage ) << " ";
246 }
247
248 ast::print( os, node->storage );
249 os << node->typeString();
250
251 if ( node->base ) {
252 os << " for ";
253 ++indent;
254 node->base->accept( *this );
255 --indent;
256 }
257
258 if ( ! node->assertions.empty() ) {
259 os << endl << indent << "... with assertions" << endl;
260 ++indent;
261 printAll( node->assertions );
262 --indent;
263 }
264 }
265
266 void postprint( const ast::Expr * node ) {
267 print( node->inferred );
268
269 if ( node->result ) {
270 os << endl << indent << "... with resolved type:" << endl;
271 ++indent;
272 os << indent;
273 node->result->accept( *this );
274 --indent;
275 }
276
277 if ( node->env ) {
278 os << endl << indent << "... with environment:" << endl;
279 ++indent;
280 node->env->accept( *this );
281 --indent;
282 }
283
284 if ( node->extension ) {
285 os << endl << indent << "... with extension";
286 }
287 }
288
289 void preprint( const ast::Type * node ) {
290 ast::print( os, node->qualifiers );
291 }
292
293 void preprint( const ast::FunctionType * node ) {
294 print( node->forall );
295 print( node->assertions );
296 ast::print( os, node->qualifiers );
297 }
298
299 void preprint( const ast::BaseInstType * node ) {
300 print( node->attributes );
301 ast::print( os, node->qualifiers );
302 }
303
304public:
305 virtual const ast::DeclWithType * visit( const ast::ObjectDecl * node ) override final {
306 if ( ! node->name.empty() ) os << node->name << ": ";
307
308 if ( ! short_mode && node->linkage != Linkage::Cforall ) {
309 os << Linkage::name( node->linkage ) << " ";
310 }
311
312 ast::print( os, node->storage );
313
314 if ( node->type ) {
315 node->type->accept( *this );
316 } else {
317 os << "untyped entity";
318 }
319
320 if ( ! short_mode && node->init ) {
321 ++indent;
322 os << " with initializer (" << (
323 node->init->maybeConstructed
324 ? "maybe constructed"
325 : "not constructed"
326 ) << ")" << endl << indent;
327 node->init->accept( *this );
328 --indent;
329 os << endl;
330 }
331
332 if ( ! short_mode && ! node->attributes.empty() ) {
333 os << endl << indent << "... with attributes:" << endl;
334 ++indent;
335 printAll( node->attributes );
336 --indent;
337 }
338
339 if ( node->bitfieldWidth ) {
340 os << indent << " with bitfield width ";
341 node->bitfieldWidth->accept( *this );
342 }
343
344 return node;
345 }
346
347 virtual const ast::DeclWithType * visit( const ast::FunctionDecl * node ) override final {
348 if ( !node->name.empty() ) os << node->name << ": ";
349
350 if ( ! short_mode && node->linkage != Linkage::Cforall ) {
351 os << Linkage::name( node->linkage ) << " ";
352 }
353
354 if ( ! short_mode ) printAll( node->attributes );
355
356 ast::print( os, node->storage );
357 ast::print( os, node->funcSpec );
358
359 if ( node->type && node->isTypeFixed ) {
360 node->type->accept( *this );
361 } else {
362 if (!node->type_params.empty()) {
363 os << "forall" << endl;
364 ++indent;
365 printAll(node->type_params);
366 os << indent;
367 --indent;
368
369 if (!node->assertions.empty()) {
370 os << "with assertions" << endl;
371 ++indent;
372 printAll(node->assertions);
373 os << indent;
374 --indent;
375 }
376 }
377
378 os << "function" << endl;
379 if ( ! node->params.empty() ) {
380 os << indent << "... with parameters" << endl;
381 ++indent;
382 printAll( node->params );
383 if ( node->type->isVarArgs ) {
384 os << indent << "and a variable number of other arguments" << endl;
385 }
386 --indent;
387 } else if ( node->type->isVarArgs ) {
388 os << indent+1 << "accepting unspecified arguments" << endl;
389 }
390
391 os << indent << "... returning";
392 if ( node->returns.empty() ) {
393 os << " nothing" << endl;
394 } else {
395 os << endl;
396 ++indent;
397 printAll( node->returns );
398 --indent;
399 }
400 }
401
402 if ( ! node->withExprs.empty() ) {
403 // Not with a clause, but the 'with clause'.
404 ++indent;
405 os << " with clause" << endl << indent;
406 printAll( node->withExprs );
407 --indent;
408 }
409
410 if ( ! short_mode && node->stmts ) {
411 ++indent;
412 os << " with body" << endl << indent;
413 node->stmts->accept( *this );
414 --indent;
415 }
416
417 return node;
418 }
419
420 virtual const ast::Decl * visit( const ast::StructDecl * node ) override final {
421 print(node);
422 return node;
423 }
424
425 virtual const ast::DeclWithType * visit( const ast::InlineMemberDecl * node ) override final {
426 os << "inline ";
427 if ( ! node->name.empty() ) os << node->name;
428
429 return node;
430 }
431
432 virtual const ast::Decl * visit( const ast::UnionDecl * node ) override final {
433 print(node);
434 return node;
435 }
436
437 virtual const ast::Decl * visit( const ast::EnumDecl * node ) override final {
438 print(node);
439 return node;
440 }
441
442 virtual const ast::Decl * visit( const ast::TraitDecl * node ) override final {
443 print(node);
444 return node;
445 }
446
447 virtual const ast::Decl * visit( const ast::TypeDecl * node ) override final {
448 preprint( node );
449 if ( ! short_mode && node->init ) {
450 os << endl << indent << "with type initializer: ";
451 ++indent;
452 node->init->accept( *this );
453 --indent;
454 }
455
456 return node;
457 }
458
459 virtual const ast::Decl * visit( const ast::TypedefDecl * node ) override final {
460 preprint( node );
461 return node;
462 }
463
464 virtual const ast::AsmDecl * visit( const ast::AsmDecl * node ) override final {
465 safe_print( node->stmt );
466 return node;
467 }
468
469 virtual const ast::DirectiveDecl * visit( const ast::DirectiveDecl * node ) override final {
470 safe_print( node->stmt );
471 return node;
472 }
473
474 virtual const ast::StaticAssertDecl * visit( const ast::StaticAssertDecl * node ) override final {
475 os << "Static Assert with condition: ";
476 ++indent;
477 safe_print( node->cond );
478 os << endl << indent-1 << "and message: ";
479 safe_print( node->msg );
480 --indent;
481 os << endl;
482
483 return node;
484 }
485
486 virtual const ast::CompoundStmt * visit( const ast::CompoundStmt * node ) override final {
487 os << "Compound Statement:" << endl;
488 ++indent;
489 printAll( node->kids );
490 --indent;
491 return node;
492 }
493
494 virtual const ast::Stmt * visit( const ast::ExprStmt * node ) override final {
495 ++indent;
496 os << "Expression Statement:" << endl << indent;
497 safe_print( node->expr );
498 --indent;
499 return node;
500 }
501
502 virtual const ast::Stmt * visit( const ast::AsmStmt * node ) override final {
503 os << "Assembler Statement:" << endl;
504 ++indent;
505 os << indent-1 << "instruction:" << endl << indent;
506 safe_print( node->instruction );
507 if ( ! node->output.empty() ) {
508 os << endl << indent << "output:" << endl;
509 printAll( node->output );
510 } // if
511 if ( ! node->input.empty() ) {
512 os << indent << "input:" << endl;
513 printAll( node->input );
514 } // if
515 if ( ! node->clobber.empty() ) {
516 os << indent << "clobber:" << endl;
517 printAll( node->clobber );
518 } // if
519 --indent;
520 return node;
521 }
522
523 virtual const ast::Stmt * visit( const ast::DirectiveStmt * node ) override final {
524 os << "GCC Directive: " << node->directive << endl;
525 return node;
526 }
527
528 virtual const ast::Stmt * visit( const ast::IfStmt * node ) override final {
529 os << "If on condition:" << endl;
530 ++indent;
531 os << indent;
532 safe_print( node->cond );
533 --indent;
534
535 if ( ! node->inits.empty() ) {
536 os << indent << "... with initialization:" << endl;
537 ++indent;
538 for ( const ast::Stmt * stmt : node->inits ) {
539 os << indent;
540 safe_print( stmt );
541 }
542 --indent;
543 os << endl;
544 }
545
546 os << indent << "... then:" << endl;
547
548 ++indent;
549 os << indent;
550 safe_print( node->then );
551 --indent;
552
553 if ( node->else_ != 0 ) {
554 os << indent << "... else:" << endl;
555 ++indent;
556 os << indent;
557 node->else_->accept( *this );
558 --indent;
559 } // if
560 return node;
561 }
562
563 virtual const ast::Stmt * visit( const ast::WhileDoStmt * node ) override final {
564 if ( node->isDoWhile ) { os << "Do-"; }
565 os << "While on condition:" << endl;
566 ++indent;
567 safe_print( node->cond );
568 os << indent-1 << "... with body:" << endl;
569 safe_print( node->body );
570
571 if ( ! node->inits.empty() ) {
572 os << indent-1 << "... with inits:" << endl;
573 printAll( node->inits );
574 }
575 --indent;
576
577 return node;
578 }
579
580 virtual const ast::Stmt * visit( const ast::ForStmt * node ) override final {
581 os << "For Statement" << endl;
582
583 if ( ! node->inits.empty() ) {
584 os << indent << "... initialization:" << endl;
585 ++indent;
586 for ( const ast::Stmt * stmt : node->inits ) {
587 os << indent+1;
588 safe_print( stmt );
589 }
590 --indent;
591 }
592
593 if ( node->cond ) {
594 os << indent << "... condition:" << endl;
595 ++indent;
596 os << indent;
597 node->cond->accept( *this );
598 --indent;
599 }
600
601 if ( node->inc ) {
602 os << indent << "... increment:" << endl;
603 ++indent;
604 os << indent;
605 node->inc->accept( *this );
606 --indent;
607 }
608
609 if ( node->body ) {
610 os << indent << "... with body:" << endl;
611 ++indent;
612 os << indent;
613 node->body->accept( *this );
614 --indent;
615 }
616 os << endl;
617 print( node->labels );
618
619 return node;
620 }
621
622 virtual const ast::Stmt * visit( const ast::SwitchStmt * node ) override final {
623 os << "Switch on condition: ";
624 safe_print( node->cond );
625 os << endl;
626
627 ++indent;
628 for ( const ast::CaseClause * stmt : node->cases ) {
629 stmt->accept( *this );
630 }
631 --indent;
632
633 return node;
634 }
635
636 virtual const ast::CaseClause * visit( const ast::CaseClause * node ) override final {
637 if ( node->isDefault() ) {
638 os << indent << "Default ";
639 } else {
640 os << indent << "Case ";
641 safe_print( node->cond );
642 } // if
643 os << endl;
644
645 ++indent;
646 for ( const ast::Stmt * stmt : node->stmts ) {
647 os << indent;
648 stmt->accept( *this );
649 }
650 --indent;
651
652 return node;
653 }
654
655 virtual const ast::Stmt * visit( const ast::BranchStmt * node ) override final {
656 os << "Branch (" << node->kindName() << ")" << endl;
657 ++indent;
658 if ( ! node->target.empty() ) {
659 os << indent << "with target: " << node->target << endl;
660 }
661
662 if ( ! node->originalTarget.empty() ) {
663 os << indent << "with original target: " << node->originalTarget << endl;
664 }
665
666 if ( node->computedTarget ) {
667 os << indent << "with computed target: ";
668 node->computedTarget->accept( *this );
669 os << endl;
670 }
671 --indent;
672
673 return node;
674 }
675
676 virtual const ast::Stmt * visit( const ast::ReturnStmt * node ) override final {
677 os << "Return Statement, returning";
678 if ( node->expr ) {
679 ++indent;
680 os << ":" << endl << indent;
681 node->expr->accept( *this );
682 --indent;
683 } else {
684 os << " void";
685 }
686 os << endl;
687
688 return node;
689 }
690
691 virtual const ast::Stmt * visit( const ast::ThrowStmt * node ) override final {
692 if ( node->target ) os << "Non-Local ";
693
694 switch( node->kind ) {
695 case ast::ExceptionKind::Terminate: os << "Terminate "; break;
696 case ast::ExceptionKind::Resume: os << "Resume "; break;
697 }
698
699 ++indent;
700 os << "Throw Statement, raising: ";
701 safe_print( node->expr );
702 if ( node->target ) {
703 os << "... at: ";
704 node->target->accept( *this );
705 }
706 --indent;
707
708 return node;
709 }
710
711 virtual const ast::Stmt * visit( const ast::TryStmt * node ) override final {
712 ++indent;
713 os << "Try Statement" << endl << indent-1
714 << "... with block:" << endl << indent;
715 safe_print( node->body );
716
717 os << indent-1 << "... and handlers:" << endl;
718 for ( const ast::CatchClause * stmt : node->handlers ) {
719 os << indent;
720 stmt->accept( *this );
721 }
722
723 if ( node->finally ) {
724 os << indent-1 << "... and finally:" << endl << indent;
725 node->finally->accept( *this );
726 }
727 --indent;
728
729 return node;
730 }
731
732 virtual const ast::CatchClause * visit( const ast::CatchClause * node ) override final {
733 os << "Catch ";
734 switch ( node->kind ) {
735 case ast::ExceptionKind::Terminate: os << "Terminate "; break;
736 case ast::ExceptionKind::Resume: os << "Resume "; break;
737 }
738 os << "Statement" << endl << indent;
739
740 ++indent;
741 os << "... catching: ";
742 short_print( node->decl );
743 os << endl;
744
745 if ( node->cond ) {
746 os << indent-1 << "... with conditional:" << endl << indent;
747 node->cond->accept( *this );
748 }
749
750 os << indent-1 << "... with block:" << endl << indent;
751 safe_print( node->body );
752 --indent;
753
754 return node;
755 }
756
757 virtual const ast::FinallyClause * visit( const ast::FinallyClause * node ) override final {
758 os << "Finally Statement" << endl;
759 os << indent << "... with block:" << endl;
760 ++indent;
761 os << indent;
762 safe_print( node->body );
763 --indent;
764
765 return node;
766 }
767
768 virtual const ast::Stmt * visit( const ast::SuspendStmt * node ) override final {
769 os << "Suspend Statement";
770 switch (node->kind) {
771 case ast::SuspendStmt::None : os << " with implicit target"; break;
772 case ast::SuspendStmt::Generator: os << " for generator"; break;
773 case ast::SuspendStmt::Coroutine: os << " for coroutine"; break;
774 }
775 os << endl;
776
777 ++indent;
778 if(node->then) {
779 os << indent << " with post statement :" << endl;
780 safe_print( node->then );
781 }
782 ++indent;
783
784 return node;
785 }
786
787 virtual const ast::WhenClause * visit( const ast::WhenClause * node ) override final {
788 os << indent-1 << "target: ";
789 safe_print( node->target );
790
791 if ( node->stmt ) {
792 os << indent-1 << "... with statment:" << endl;
793 node->stmt->accept( *this );
794 }
795
796 if ( node->when_cond ) {
797 os << indent-1 << "... with when condition:" << endl;
798 node->when_cond->accept( *this );
799 }
800
801 return node;
802 }
803
804 virtual const ast::Stmt * visit( const ast::WaitForStmt * node ) override final {
805 os << "Waitfor Statement" << endl;
806 indent += 2;
807 for( const auto & clause : node->clauses ) {
808 clause->accept( *this );
809 }
810
811 if ( node->timeout_time ) {
812 os << indent-1 << "timeout of:" << endl;
813 node->timeout_time->accept( *this );
814
815 if ( node->timeout_stmt ) {
816 os << indent-1 << "... with statment:" << endl;
817 node->timeout_stmt->accept( *this );
818 }
819
820 if ( node->timeout_cond ) {
821 os << indent-1 << "... with condition:" << endl;
822 node->timeout_cond->accept( *this );
823 }
824 }
825
826 if ( node->else_stmt ) {
827 os << indent-1 << "else:" << endl;
828 node->else_stmt->accept( *this );
829
830 if ( node->else_cond ) {
831 os << indent-1 << "... with condition:" << endl;
832 node->else_cond->accept( *this );
833 }
834 }
835
836 return node;
837 }
838
839 virtual const ast::WaitForClause * visit( const ast::WaitForClause * node ) override final {
840 os << indent-1 << "target function: ";
841 safe_print( node->target );
842
843 if ( !node->target_args.empty() ) {
844 os << endl << indent-1 << "... with arguments:" << endl;
845 for( const ast::Expr * arg : node->target_args ) {
846 arg->accept( *this );
847 }
848 }
849
850 if ( node->stmt ) {
851 os << indent-1 << "... with statment:" << endl;
852 node->stmt->accept( *this );
853 }
854
855 if ( node->when_cond ) {
856 os << indent-1 << "... with condition:" << endl;
857 node->when_cond->accept( *this );
858 }
859
860 return node;
861 }
862
863 virtual const ast::Stmt * visit( const ast::WaitUntilStmt * node ) override final {
864 os << "Waituntil Statement" << endl;
865 indent += 2;
866 for( const auto & clause : node->clauses ) {
867 clause->accept( *this );
868 }
869 // calls print( const ast::WaitStmt * node )
870 print(node);
871 return node;
872 }
873
874 virtual const ast::Decl * visit( const ast::WithStmt * node ) override final {
875 os << "With statement" << endl;
876 os << indent << "... with expressions:" << endl;
877 ++indent;
878 printAll( node->exprs );
879 os << indent-1 << "... with statement:" << endl << indent;
880 safe_print( node->stmt );
881 --indent;
882
883 return node;
884 }
885
886 virtual const ast::NullStmt * visit( const ast::NullStmt * node ) override final {
887 os << "Null Statement" << endl;
888 print( node->labels );
889
890 return node;
891 }
892
893 virtual const ast::Stmt * visit( const ast::DeclStmt * node ) override final {
894 os << "Declaration of ";
895 safe_print( node->decl );
896
897 return node;
898 }
899
900 virtual const ast::Stmt * visit( const ast::ImplicitCtorDtorStmt * node ) override final {
901 os << "Implicit Ctor Dtor Statement" << endl;
902 os << indent << "... with Ctor/Dtor: ";
903 ++indent;
904 safe_print( node->callStmt );
905 --indent;
906 os << endl;
907
908 return node;
909 }
910
911 virtual const ast::Stmt * visit( const ast::MutexStmt * node ) override final {
912 os << "Mutex Statement" << endl;
913 os << indent << "... with Mutex Parameters: ";
914 ++indent;
915 printAll( node->mutexObjs );
916 --indent;
917 os << indent << "... with Statement: ";
918 ++indent;
919 safe_print( node->stmt );
920 --indent;
921 os << endl;
922
923 return node;
924 }
925
926 virtual const ast::Stmt * visit( const ast::CorunStmt * node ) override final {
927 os << "Corun Statement" << endl;
928 os << indent << "... with Statement: ";
929 ++indent;
930 safe_print( node->stmt );
931 --indent;
932 os << endl;
933
934 return node;
935 }
936
937 virtual const ast::Stmt * visit( const ast::CoforStmt * node ) override final {
938 os << "Cofor Statement" << endl;
939
940 if ( ! node->inits.empty() ) {
941 os << indent << "... initialization:" << endl;
942 ++indent;
943 for ( const ast::Stmt * stmt : node->inits ) {
944 os << indent+1;
945 safe_print( stmt );
946 }
947 --indent;
948 }
949
950 if ( node->cond ) {
951 os << indent << "... condition:" << endl;
952 ++indent;
953 os << indent;
954 node->cond->accept( *this );
955 --indent;
956 }
957
958 if ( node->inc ) {
959 os << indent << "... increment:" << endl;
960 ++indent;
961 os << indent;
962 node->inc->accept( *this );
963 --indent;
964 }
965
966 if ( node->body ) {
967 os << indent << "... with body:" << endl;
968 ++indent;
969 os << indent;
970 node->body->accept( *this );
971 --indent;
972 }
973 os << endl;
974 print( node->labels );
975
976 return node;
977 }
978
979 virtual const ast::Expr * visit( const ast::ApplicationExpr * node ) override final {
980 ++indent;
981 os << "Application of" << endl << indent;
982 safe_print( node->func );
983 os << endl;
984 if ( ! node->args.empty() ) {
985 os << indent << "... to arguments" << endl;
986 printAll( node->args );
987 }
988 --indent;
989 postprint( node );
990
991 return node;
992 }
993
994 virtual const ast::Expr * visit( const ast::UntypedExpr * node ) override final {
995 ++indent;
996 os << "Applying untyped:" << endl;
997 os << indent;
998 safe_print( node->func );
999 os << endl << indent-1 << "...to:" << endl;
1000 printAll( node->args );
1001 --indent;
1002 postprint( node );
1003
1004 return node;
1005 }
1006
1007 virtual const ast::Expr * visit( const ast::NameExpr * node ) override final {
1008 os << "Name: " << node->name;
1009 postprint( node );
1010
1011 return node;
1012 }
1013
1014 virtual const ast::Expr * visit( const ast::QualifiedNameExpr * node ) override final {
1015 os << "QualifiedNameExpr: " << std::endl;
1016 os << ++indent << "Type: ";
1017 safe_print( node->type_decl );
1018 os << std::endl;
1019 os << indent << "Name: " << node->name << std::endl;
1020 --indent;
1021 postprint( node );
1022 return node;
1023 }
1024
1025 virtual const ast::Expr * visit( const ast::AddressExpr * node ) override final {
1026 os << "Address of:" << endl;
1027 ++indent;
1028 os << indent;
1029 safe_print( node->arg );
1030
1031 --indent;
1032
1033 return node;
1034 }
1035
1036 virtual const ast::Expr * visit( const ast::LabelAddressExpr * node ) override final {
1037 os << "Address of label:" << node->arg;
1038
1039 return node;
1040 }
1041
1042 virtual const ast::Expr * visit( const ast::CastExpr * node ) override final {
1043 ++indent;
1044 os << (node->isGenerated ? "Generated" : "Explicit") << " Cast of:" << endl << indent;
1045 safe_print( node->arg );
1046 os << endl << indent-1 << "... to:";
1047 if ( ! node->result ) {
1048 os << " ";
1049 undefined();
1050 } else if ( node->result->isVoid() ) {
1051 os << " nothing";
1052 } else {
1053 os << endl << indent;
1054 node->result->accept( *this );
1055 } // if
1056 --indent;
1057 postprint( node );
1058
1059 return node;
1060 }
1061
1062 virtual const ast::Expr * visit( const ast::KeywordCastExpr * node ) override final {
1063 ++indent;
1064 os << "Keyword Cast of:" << endl << indent;
1065 safe_print( node->arg );
1066 --indent;
1067 os << endl << indent << "... to: " << node->targetString();
1068 postprint( node );
1069
1070 return node;
1071 }
1072
1073 virtual const ast::Expr * visit( const ast::VirtualCastExpr * node ) override final {
1074 ++indent;
1075 os << "Virtual Cast of:" << endl << indent;
1076 safe_print( node->arg );
1077 os << endl << indent-1 << "... to:";
1078 if ( ! node->result ) {
1079 os << " unknown";
1080 } else {
1081 os << endl << indent;
1082 node->result->accept( *this );
1083 }
1084 --indent;
1085 postprint( node );
1086
1087 return node;
1088 }
1089
1090 virtual const ast::Expr * visit( const ast::UntypedMemberExpr * node ) override final {
1091 ++indent;
1092 os << "Untyped Member Expression, with field: " << endl << indent;
1093 safe_print( node->member );
1094 os << indent-1 << "... from aggregate:" << endl << indent;
1095 safe_print( node->aggregate );
1096 --indent;
1097 postprint( node );
1098
1099 return node;
1100 }
1101
1102 virtual const ast::Expr * visit( const ast::MemberExpr * node ) override final {
1103 ++indent;
1104 os << "Member Expression, with field:" << endl << indent;
1105 safe_print( node->member );
1106 os << endl << indent-1 << "... from aggregate:" << endl << indent;
1107 safe_print( node->aggregate );
1108 --indent;
1109 postprint( node );
1110
1111 return node;
1112 }
1113
1114 virtual const ast::Expr * visit( const ast::VariableExpr * node ) override final {
1115 os << "Variable Expression: ";
1116 short_print( node->var );
1117 postprint( node );
1118
1119 return node;
1120 }
1121
1122 virtual const ast::Expr * visit( const ast::ConstantExpr * node ) override final {
1123 os << "Constant Expression (" << node->rep;
1124 if ( node->result ) {
1125 os << ": ";
1126 node->result->accept( *this );
1127 }
1128 os << ")";
1129 postprint( node );
1130
1131 return node;
1132 }
1133
1134 virtual const ast::Expr * visit( const ast::SizeofExpr * node ) override final {
1135 os << "Sizeof Expression on: ";
1136 ++indent;
1137 if ( node->type ) node->type->accept( *this );
1138 else safe_print( node->expr );
1139 --indent;
1140 postprint( node );
1141
1142 return node;
1143 }
1144
1145 virtual const ast::Expr * visit( const ast::CountExpr * node ) override final {
1146 os << "Count Expression on: ";
1147 ++indent;
1148 if ( node->type ) node->type->accept( *this );
1149 else safe_print( node->expr );
1150 --indent;
1151 postprint( node );
1152 return node;
1153 }
1154
1155 virtual const ast::Expr * visit( const ast::AlignofExpr * node ) override final {
1156 os << "Alignof Expression on: ";
1157 ++indent;
1158 if ( node->type ) node->type->accept( *this );
1159 else safe_print( node->expr );
1160 --indent;
1161 postprint( node );
1162
1163 return node;
1164 }
1165
1166 virtual const ast::Expr * visit( const ast::UntypedOffsetofExpr * node ) override final {
1167 os << "Untyped Offsetof Expression on member " << node->member << " of ";
1168 ++indent;
1169 safe_print( node->type );
1170 --indent;
1171 postprint( node );
1172
1173 return node;
1174 }
1175
1176 virtual const ast::Expr * visit( const ast::OffsetofExpr * node ) override final {
1177 os << "Offsetof Expression on member " << node->member->name << " of ";
1178 ++indent;
1179 safe_print( node->type );
1180 --indent;
1181 postprint( node );
1182
1183 return node;
1184 }
1185
1186 virtual const ast::Expr * visit( const ast::OffsetPackExpr * node ) override final {
1187 os << "Offset Pack Expression on: ";
1188 ++indent;
1189 safe_print( node->type );
1190 --indent;
1191 postprint( node );
1192
1193 return node;
1194 }
1195
1196 virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final {
1197 os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
1198 safe_print( node->arg1 );
1199 os << " and ";
1200 safe_print( node->arg2 );
1201 postprint( node );
1202
1203 return node;
1204 }
1205
1206 virtual const ast::Expr * visit( const ast::ConditionalExpr * node ) override final {
1207 ++indent;
1208 os << "Conditional expression on:" << endl << indent;
1209 safe_print( node->arg1 );
1210 os << indent-1 << "First alternative:" << endl << indent;
1211 safe_print( node->arg2 );
1212 os << indent-1 << "Second alternative:" << endl << indent;
1213 safe_print( node->arg3 );
1214 --indent;
1215 postprint( node );
1216
1217 return node;
1218 }
1219
1220 virtual const ast::Expr * visit( const ast::CommaExpr * node ) override final {
1221 ++indent;
1222 os << "Comma Expression:" << endl << indent;
1223 safe_print( node->arg1 );
1224 os << endl << indent;
1225 safe_print( node->arg2 );
1226 --indent;
1227 postprint( node );
1228
1229 return node;
1230 }
1231
1232 virtual const ast::Expr * visit( const ast::TypeExpr * node ) override final {
1233 safe_print( node->type );
1234 postprint( node );
1235
1236 return node;
1237 }
1238
1239 virtual const ast::Expr * visit( const ast::DimensionExpr * node ) override final {
1240 os << "Type-Sys Value: " << node->name;
1241 postprint( node );
1242
1243 return node;
1244 }
1245
1246 virtual const ast::Expr * visit( const ast::AsmExpr * node ) override final {
1247 os << "Asm Expression:" << endl;
1248 ++indent;
1249 if ( !node->inout.empty() ) os << "[" << node->inout << "] ";
1250 if ( node->constraint ) node->constraint->accept( *this );
1251 if ( node->operand ) node->operand->accept( *this );
1252 --indent;
1253
1254 return node;
1255 }
1256
1257 virtual const ast::Expr * visit( const ast::ImplicitCopyCtorExpr * node ) override final {
1258 ++indent;
1259 os << "Implicit Copy Constructor Expression:" << endl << indent;
1260 safe_print( node->callExpr );
1261 --indent;
1262 postprint( node );
1263
1264 return node;
1265 }
1266
1267 virtual const ast::Expr * visit( const ast::ConstructorExpr * node ) override final {
1268 os << "Constructor Expression:" << endl << indent+1;
1269 indent += 2;
1270 safe_print( node->callExpr );
1271 indent -= 2;
1272 postprint( node );
1273
1274 return node;
1275 }
1276
1277 virtual const ast::Expr * visit( const ast::CompoundLiteralExpr * node ) override final {
1278 ++indent;
1279 os << "Compound Literal Expression: " << endl << indent;
1280 safe_print( node->result );
1281 os << indent;
1282 safe_print( node->init );
1283 --indent;
1284 postprint( node );
1285
1286 return node;
1287 }
1288
1289 virtual const ast::Expr * visit( const ast::RangeExpr * node ) override final {
1290 os << "Range Expression: ";
1291 safe_print( node->low );
1292 os << " ... ";
1293 safe_print( node->high );
1294 postprint( node );
1295
1296 return node;
1297 }
1298
1299 virtual const ast::Expr * visit( const ast::UntypedTupleExpr * node ) override final {
1300 os << "Untyped Tuple:" << endl;
1301 ++indent;
1302 printAll( node->exprs );
1303 --indent;
1304 postprint( node );
1305
1306 return node;
1307 }
1308
1309 virtual const ast::Expr * visit( const ast::TupleExpr * node ) override final {
1310 os << "Tuple:" << endl;
1311 ++indent;
1312 printAll( node->exprs );
1313 --indent;
1314 postprint( node );
1315
1316 return node;
1317 }
1318
1319 virtual const ast::Expr * visit( const ast::TupleIndexExpr * node ) override final {
1320 os << "Tuple Index Expression, with tuple:" << endl;
1321 ++indent;
1322 os << indent;
1323 safe_print( node->tuple );
1324 os << indent << "with index: " << node->index << endl;
1325 --indent;
1326 postprint( node );
1327
1328 return node;
1329 }
1330
1331 virtual const ast::Expr * visit( const ast::TupleAssignExpr * node ) override final {
1332 os << "Tuple Assignment Expression, with stmt expr:" << endl;
1333 ++indent;
1334 os << indent;
1335 safe_print( node->stmtExpr );
1336 --indent;
1337 postprint( node );
1338
1339 return node;
1340 }
1341
1342 virtual const ast::Expr * visit( const ast::StmtExpr * node ) override final {
1343 ++indent;
1344 os << "Statement Expression:" << endl << indent;
1345 safe_print( node->stmts );
1346 if ( ! node->returnDecls.empty() ) {
1347 os << indent << "... with returnDecls: ";
1348 printAll( node->returnDecls );
1349 }
1350 if ( ! node->dtors.empty() ) {
1351 os << indent << "... with dtors: ";
1352 printAll( node->dtors );
1353 }
1354 --indent;
1355 postprint( node );
1356
1357 return node;
1358 }
1359
1360 virtual const ast::Expr * visit( const ast::UniqueExpr * node ) override final {
1361 ++indent;
1362 os << "Unique Expression with id: " << node->id << endl << indent;
1363 safe_print( node->expr );
1364 if ( node->object ) {
1365 os << indent-1 << "... with decl: ";
1366 short_print( node->object );
1367 }
1368 --indent;
1369 postprint( node );
1370
1371 return node;
1372 }
1373
1374 virtual const ast::Expr * visit( const ast::UntypedInitExpr * node ) override final {
1375 ++indent;
1376 os << "Untyped Init Expression" << endl << indent;
1377 safe_print( node->expr );
1378 if ( ! node->initAlts.empty() ) {
1379 for ( const InitAlternative & alt : node->initAlts ) {
1380 os << indent << "InitAlternative: ";
1381 safe_print( alt.type );
1382 safe_print( alt.designation );
1383 }
1384 }
1385 --indent;
1386
1387 return node;
1388 }
1389
1390 virtual const ast::Expr * visit( const ast::InitExpr * node ) override final {
1391 ++indent;
1392 os << "Init Expression" << endl << indent;
1393 safe_print( node->expr );
1394 os << indent << "... with designation: ";
1395 safe_print( node->designation );
1396 --indent;
1397
1398 return node;
1399 }
1400
1401 virtual const ast::Expr * visit( const ast::DeletedExpr * node ) override final {
1402 ++indent;
1403 os << "Deleted Expression" << endl << indent;
1404 safe_print( node->expr );
1405 os << endl << indent << "... deleted by: ";
1406 safe_print( node->deleteStmt );
1407 --indent;
1408
1409 return node;
1410 }
1411
1412 virtual const ast::Expr * visit( const ast::DefaultArgExpr * node ) override final {
1413 ++indent;
1414 os << "Default Argument Expression" << endl << indent;
1415 safe_print( node->expr );
1416 --indent;
1417
1418 return node;
1419 }
1420
1421 virtual const ast::Expr * visit( const ast::GenericExpr * node ) override final {
1422 ++indent;
1423 os << "C11 _Generic Expression" << endl << indent;
1424 safe_print( node->control );
1425 os << endl << indent << "... with associations:" << endl;
1426 for ( const auto & assoc : node->associations ) {
1427 os << indent;
1428 if ( assoc.type ) {
1429 os << "... type: ";
1430 assoc.type->accept( *this );
1431 os << endl << indent << "... expression: ";
1432 safe_print( assoc.expr );
1433 } else {
1434 os << "... default: ";
1435 safe_print( assoc.expr );
1436 }
1437 os << endl;
1438 }
1439 --indent;
1440
1441 return node;
1442 }
1443
1444 virtual const ast::Type * visit( const ast::VoidType * node ) override final {
1445 preprint( node );
1446 os << "void";
1447 return node;
1448 }
1449
1450 virtual const ast::Type * visit( const ast::BasicType * node ) override final {
1451 preprint( node );
1452 os << ast::BasicType::typeNames[ node->kind ];
1453 return node;
1454 }
1455
1456 virtual const ast::Type * visit( const ast::PointerType * node ) override final {
1457 preprint( node );
1458 if ( ! node->isArray() ) {
1459 os << "pointer to ";
1460 } else {
1461 os << "decayed ";
1462 if ( node->isStatic ) {
1463 os << "static ";
1464 }
1465
1466 if ( node->isVarLen ) {
1467 os << "variable length array of ";
1468 } else if ( node->dimension ) {
1469 os << "array of ";
1470 node->dimension->accept( *this );
1471 os << " ";
1472 }
1473 }
1474 safe_print( node->base );
1475
1476 return node;
1477 }
1478
1479 virtual const ast::Type * visit( const ast::ArrayType * node ) override final {
1480 preprint( node );
1481 if ( node->isStatic ) {
1482 os << "static ";
1483 }
1484
1485 if ( node->isVarLen ) {
1486 os << "variable length array of ";
1487 } else if ( node->dimension ) {
1488 os << "array of ";
1489 } else {
1490 os << "open array of ";
1491 }
1492
1493 safe_print( node->base );
1494
1495 if ( node->dimension ) {
1496 os << " with dimension of ";
1497 node->dimension->accept( *this );
1498 }
1499
1500 return node;
1501 }
1502
1503 virtual const ast::Type * visit( const ast::ReferenceType * node ) override final {
1504 preprint( node );
1505 os << "reference to ";
1506 safe_print( node->base );
1507
1508 return node;
1509 }
1510
1511 virtual const ast::Type * visit( const ast::QualifiedType * node ) override final {
1512 preprint( node );
1513 ++indent;
1514 os << "Qualified Type:" << endl << indent;
1515 safe_print( node->parent );
1516 os << endl << indent;
1517 safe_print( node->child );
1518 os << endl;
1519 --indent;
1520
1521 return node;
1522 }
1523
1524 virtual const ast::Type * visit( const ast::FunctionType * node ) override final {
1525 preprint( node );
1526
1527 os << "function" << endl;
1528 if ( ! node->params.empty() ) {
1529 os << indent << "... with parameters" << endl;
1530 ++indent;
1531 printAll( node->params );
1532 if ( node->isVarArgs ) {
1533 os << indent << "and a variable number of other arguments" << endl;
1534 }
1535 --indent;
1536 } else if ( node->isVarArgs ) {
1537 os << indent+1 << "accepting unspecified arguments" << endl;
1538 }
1539
1540 os << indent << "... returning";
1541 if ( node->returns.empty() ) {
1542 os << " nothing" << endl;
1543 } else {
1544 os << endl;
1545 ++indent;
1546 printAll( node->returns );
1547 --indent;
1548 }
1549
1550 return node;
1551 }
1552
1553 virtual const ast::Type * visit( const ast::StructInstType * node ) override final {
1554 preprint( node );
1555 os << "instance of struct " << node->name;
1556 if ( node->base ) {
1557 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1558 }
1559 print( node->params );
1560
1561 return node;
1562 }
1563
1564 virtual const ast::Type * visit( const ast::UnionInstType * node ) override final {
1565 preprint( node );
1566 os << "instance of union " << node->name;
1567 if ( node->base ) {
1568 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1569 }
1570 print( node->params );
1571
1572 return node;
1573 }
1574
1575 virtual const ast::Type * visit( const ast::EnumInstType * node ) override final {
1576 preprint( node );
1577 os << "instance of enum " << node->name;
1578 if ( node->base ) {
1579 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1580 }
1581 print( node->params );
1582
1583 return node;
1584 }
1585
1586 virtual const ast::Type * visit( const ast::TraitInstType * node ) override final {
1587 preprint( node );
1588 os << "instance of trait " << node->name;
1589 print( node->params );
1590
1591 return node;
1592 }
1593
1594 virtual const ast::Type * visit( const ast::TypeInstType * node ) override final {
1595 preprint( node );
1596 const auto & _name = deterministic_output && isUnboundType(node) ? "[unbound]" : node->typeString();
1597 os << "instance of type " << _name
1598 << " (" << (node->kind == ast::TypeDecl::Ftype ? "" : "not ") << "function type)";
1599 print( node->params );
1600
1601 return node;
1602 }
1603
1604 virtual const ast::Type * visit( const ast::TupleType * node ) override final {
1605 preprint( node );
1606 os << "tuple of types" << endl;
1607 ++indent;
1608 printAll( node->types );
1609 --indent;
1610
1611 return node;
1612 }
1613
1614 virtual const ast::Type * visit( const ast::TypeofType * node ) override final {
1615 preprint( node );
1616 if ( node->kind == ast::TypeofType::Basetypeof ) { os << "base-"; }
1617 os << "type-of expression ";
1618 safe_print( node->expr );
1619
1620 return node;
1621 }
1622
1623 virtual const ast::Type * visit( const ast::VTableType * node ) override final {
1624 preprint( node );
1625 os << "vtable for ";
1626 safe_print( node->base );
1627
1628 return node;
1629 }
1630
1631 virtual const ast::Type * visit( const ast::VarArgsType * node ) override final {
1632 preprint( node );
1633 os << "builtin var args pack";
1634 return node;
1635 }
1636
1637 virtual const ast::Type * visit( const ast::ZeroType * node ) override final {
1638 preprint( node );
1639 os << "zero_t";
1640 return node;
1641 }
1642
1643 virtual const ast::Type * visit( const ast::OneType * node ) override final {
1644 preprint( node );
1645 os << "one_t";
1646 return node;
1647 }
1648
1649 virtual const ast::Type * visit( const ast::GlobalScopeType * node ) override final {
1650 preprint( node );
1651 os << "Global Scope Type";
1652 return node;
1653 }
1654
1655 virtual const ast::Designation * visit( const ast::Designation * node ) override final {
1656 if ( node->designators.empty() ) return node;
1657 os << "... designated by: " << endl;
1658 ++indent;
1659 for ( const ast::Expr * d : node->designators ) {
1660 os << indent;
1661 d->accept( *this );
1662 os << endl;
1663 }
1664 --indent;
1665 return node;
1666 }
1667
1668 virtual const ast::Init * visit( const ast::SingleInit * node ) override final {
1669 os << "Simple Initializer: ";
1670 safe_print( node->value );
1671 return node;
1672 }
1673
1674 virtual const ast::Init * visit( const ast::ListInit * node ) override final {
1675 os << "Compound initializer: " << endl;
1676 ++indent;
1677 for ( auto p : group_iterate( node->designations, node->initializers ) ) {
1678 const ast::Designation * d = std::get<0>(p);
1679 const ast::Init * init = std::get<1>(p);
1680 os << indent;
1681 init->accept( *this );
1682 os << endl;
1683 if ( ! d->designators.empty() ) {
1684 os << indent;
1685 d->accept( *this );
1686 }
1687 }
1688 --indent;
1689 return node;
1690 }
1691
1692 virtual const ast::Init * visit( const ast::ConstructorInit * node ) override final {
1693 os << "Constructor initializer: " << endl;
1694 if ( node->ctor ) {
1695 os << indent << "... initially constructed with ";
1696 ++indent;
1697 node->ctor->accept( *this );
1698 --indent;
1699 }
1700
1701 if ( node->dtor ) {
1702 os << indent << "... destructed with ";
1703 ++indent;
1704 node->dtor->accept( *this );
1705 --indent;
1706 }
1707
1708 if ( node->init ) {
1709 os << indent << "... with fallback C-style initializer: ";
1710 ++indent;
1711 node->init->accept( *this );
1712 --indent;
1713 }
1714 return node;
1715 }
1716
1717 virtual const ast::Attribute * visit( const ast::Attribute * node ) override final {
1718 if ( node->empty() ) return node;
1719 os << "Attribute with name: " << node->name;
1720 if ( node->params.empty() ) return node;
1721 os << " with parameters: " << endl;
1722 ++indent;
1723 printAll( node->params );
1724 --indent;
1725 return node;
1726 }
1727
1728 virtual const ast::TypeSubstitution * visit( const ast::TypeSubstitution * node ) override final {
1729 os << indent << "Types:" << endl;
1730 for ( const auto& i : *node ) {
1731 os << indent+1 << i.first.typeString() << " -> ";
1732 indent += 2;
1733 safe_print( i.second );
1734 indent -= 2;
1735 os << endl;
1736 }
1737 return node;
1738 }
1739
1740};
1741
1742} // namespace
1743
1744void print( ostream & os, const ast::Node * node, Indenter indent ) {
1745 Printer printer { os, indent, false };
1746 node->accept(printer);
1747}
1748
1749void printShort( ostream & os, const ast::Decl * node, Indenter indent ) {
1750 Printer printer { os, indent, true };
1751 node->accept(printer);
1752}
1753
1754void print( ostream & os, Function::Specs specs ) {
1755 print( os, specs, Names::FuncSpecifiers );
1756}
1757
1758void print( ostream & os, Storage::Classes storage ) {
1759 print( os, storage, Names::StorageClasses );
1760}
1761
1762void print( ostream & os, CV::Qualifiers qualifiers ) {
1763 print( os, qualifiers, Names::Qualifiers );
1764}
1765
1766} // namespace ast
Note: See TracBrowser for help on using the repository browser.