source: src/AST/Print.cpp@ bc48c0d

Last change on this file since bc48c0d was 525f7ad, checked in by JiadaL <j82liang@…>, 15 months ago
  1. Add count_e( enum_name ), a pseudo function that return the number of element in an enum; 2. Implementation of enum range loop.
  • 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 node->type->accept( *this );
1149 --indent;
1150 postprint( node );
1151 return node;
1152 }
1153
1154 virtual const ast::Expr * visit( const ast::AlignofExpr * node ) override final {
1155 os << "Alignof Expression on: ";
1156 ++indent;
1157 if ( node->type ) node->type->accept( *this );
1158 else safe_print( node->expr );
1159 --indent;
1160 postprint( node );
1161
1162 return node;
1163 }
1164
1165 virtual const ast::Expr * visit( const ast::UntypedOffsetofExpr * node ) override final {
1166 os << "Untyped Offsetof Expression on member " << node->member << " of ";
1167 ++indent;
1168 safe_print( node->type );
1169 --indent;
1170 postprint( node );
1171
1172 return node;
1173 }
1174
1175 virtual const ast::Expr * visit( const ast::OffsetofExpr * node ) override final {
1176 os << "Offsetof Expression on member " << node->member->name << " of ";
1177 ++indent;
1178 safe_print( node->type );
1179 --indent;
1180 postprint( node );
1181
1182 return node;
1183 }
1184
1185 virtual const ast::Expr * visit( const ast::OffsetPackExpr * node ) override final {
1186 os << "Offset Pack Expression on: ";
1187 ++indent;
1188 safe_print( node->type );
1189 --indent;
1190 postprint( node );
1191
1192 return node;
1193 }
1194
1195 virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final {
1196 os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
1197 safe_print( node->arg1 );
1198 os << " and ";
1199 safe_print( node->arg2 );
1200 postprint( node );
1201
1202 return node;
1203 }
1204
1205 virtual const ast::Expr * visit( const ast::ConditionalExpr * node ) override final {
1206 ++indent;
1207 os << "Conditional expression on:" << endl << indent;
1208 safe_print( node->arg1 );
1209 os << indent-1 << "First alternative:" << endl << indent;
1210 safe_print( node->arg2 );
1211 os << indent-1 << "Second alternative:" << endl << indent;
1212 safe_print( node->arg3 );
1213 --indent;
1214 postprint( node );
1215
1216 return node;
1217 }
1218
1219 virtual const ast::Expr * visit( const ast::CommaExpr * node ) override final {
1220 ++indent;
1221 os << "Comma Expression:" << endl << indent;
1222 safe_print( node->arg1 );
1223 os << endl << indent;
1224 safe_print( node->arg2 );
1225 --indent;
1226 postprint( node );
1227
1228 return node;
1229 }
1230
1231 virtual const ast::Expr * visit( const ast::TypeExpr * node ) override final {
1232 safe_print( node->type );
1233 postprint( node );
1234
1235 return node;
1236 }
1237
1238 virtual const ast::Expr * visit( const ast::DimensionExpr * node ) override final {
1239 os << "Type-Sys Value: " << node->name;
1240 postprint( node );
1241
1242 return node;
1243 }
1244
1245 virtual const ast::Expr * visit( const ast::AsmExpr * node ) override final {
1246 os << "Asm Expression:" << endl;
1247 ++indent;
1248 if ( !node->inout.empty() ) os << "[" << node->inout << "] ";
1249 if ( node->constraint ) node->constraint->accept( *this );
1250 if ( node->operand ) node->operand->accept( *this );
1251 --indent;
1252
1253 return node;
1254 }
1255
1256 virtual const ast::Expr * visit( const ast::ImplicitCopyCtorExpr * node ) override final {
1257 ++indent;
1258 os << "Implicit Copy Constructor Expression:" << endl << indent;
1259 safe_print( node->callExpr );
1260 --indent;
1261 postprint( node );
1262
1263 return node;
1264 }
1265
1266 virtual const ast::Expr * visit( const ast::ConstructorExpr * node ) override final {
1267 os << "Constructor Expression:" << endl << indent+1;
1268 indent += 2;
1269 safe_print( node->callExpr );
1270 indent -= 2;
1271 postprint( node );
1272
1273 return node;
1274 }
1275
1276 virtual const ast::Expr * visit( const ast::CompoundLiteralExpr * node ) override final {
1277 ++indent;
1278 os << "Compound Literal Expression: " << endl << indent;
1279 safe_print( node->result );
1280 os << indent;
1281 safe_print( node->init );
1282 --indent;
1283 postprint( node );
1284
1285 return node;
1286 }
1287
1288 virtual const ast::Expr * visit( const ast::RangeExpr * node ) override final {
1289 os << "Range Expression: ";
1290 safe_print( node->low );
1291 os << " ... ";
1292 safe_print( node->high );
1293 postprint( node );
1294
1295 return node;
1296 }
1297
1298 virtual const ast::Expr * visit( const ast::UntypedTupleExpr * node ) override final {
1299 os << "Untyped Tuple:" << endl;
1300 ++indent;
1301 printAll( node->exprs );
1302 --indent;
1303 postprint( node );
1304
1305 return node;
1306 }
1307
1308 virtual const ast::Expr * visit( const ast::TupleExpr * node ) override final {
1309 os << "Tuple:" << endl;
1310 ++indent;
1311 printAll( node->exprs );
1312 --indent;
1313 postprint( node );
1314
1315 return node;
1316 }
1317
1318 virtual const ast::Expr * visit( const ast::TupleIndexExpr * node ) override final {
1319 os << "Tuple Index Expression, with tuple:" << endl;
1320 ++indent;
1321 os << indent;
1322 safe_print( node->tuple );
1323 os << indent << "with index: " << node->index << endl;
1324 --indent;
1325 postprint( node );
1326
1327 return node;
1328 }
1329
1330 virtual const ast::Expr * visit( const ast::TupleAssignExpr * node ) override final {
1331 os << "Tuple Assignment Expression, with stmt expr:" << endl;
1332 ++indent;
1333 os << indent;
1334 safe_print( node->stmtExpr );
1335 --indent;
1336 postprint( node );
1337
1338 return node;
1339 }
1340
1341 virtual const ast::Expr * visit( const ast::StmtExpr * node ) override final {
1342 ++indent;
1343 os << "Statement Expression:" << endl << indent;
1344 safe_print( node->stmts );
1345 if ( ! node->returnDecls.empty() ) {
1346 os << indent << "... with returnDecls: ";
1347 printAll( node->returnDecls );
1348 }
1349 if ( ! node->dtors.empty() ) {
1350 os << indent << "... with dtors: ";
1351 printAll( node->dtors );
1352 }
1353 --indent;
1354 postprint( node );
1355
1356 return node;
1357 }
1358
1359 virtual const ast::Expr * visit( const ast::UniqueExpr * node ) override final {
1360 ++indent;
1361 os << "Unique Expression with id: " << node->id << endl << indent;
1362 safe_print( node->expr );
1363 if ( node->object ) {
1364 os << indent-1 << "... with decl: ";
1365 short_print( node->object );
1366 }
1367 --indent;
1368 postprint( node );
1369
1370 return node;
1371 }
1372
1373 virtual const ast::Expr * visit( const ast::UntypedInitExpr * node ) override final {
1374 ++indent;
1375 os << "Untyped Init Expression" << endl << indent;
1376 safe_print( node->expr );
1377 if ( ! node->initAlts.empty() ) {
1378 for ( const InitAlternative & alt : node->initAlts ) {
1379 os << indent << "InitAlternative: ";
1380 safe_print( alt.type );
1381 safe_print( alt.designation );
1382 }
1383 }
1384 --indent;
1385
1386 return node;
1387 }
1388
1389 virtual const ast::Expr * visit( const ast::InitExpr * node ) override final {
1390 ++indent;
1391 os << "Init Expression" << endl << indent;
1392 safe_print( node->expr );
1393 os << indent << "... with designation: ";
1394 safe_print( node->designation );
1395 --indent;
1396
1397 return node;
1398 }
1399
1400 virtual const ast::Expr * visit( const ast::DeletedExpr * node ) override final {
1401 ++indent;
1402 os << "Deleted Expression" << endl << indent;
1403 safe_print( node->expr );
1404 os << endl << indent << "... deleted by: ";
1405 safe_print( node->deleteStmt );
1406 --indent;
1407
1408 return node;
1409 }
1410
1411 virtual const ast::Expr * visit( const ast::DefaultArgExpr * node ) override final {
1412 ++indent;
1413 os << "Default Argument Expression" << endl << indent;
1414 safe_print( node->expr );
1415 --indent;
1416
1417 return node;
1418 }
1419
1420 virtual const ast::Expr * visit( const ast::GenericExpr * node ) override final {
1421 ++indent;
1422 os << "C11 _Generic Expression" << endl << indent;
1423 safe_print( node->control );
1424 os << endl << indent << "... with associations:" << endl;
1425 for ( const auto & assoc : node->associations ) {
1426 os << indent;
1427 if ( assoc.type ) {
1428 os << "... type: ";
1429 assoc.type->accept( *this );
1430 os << endl << indent << "... expression: ";
1431 safe_print( assoc.expr );
1432 } else {
1433 os << "... default: ";
1434 safe_print( assoc.expr );
1435 }
1436 os << endl;
1437 }
1438 --indent;
1439
1440 return node;
1441 }
1442
1443 virtual const ast::Type * visit( const ast::VoidType * node ) override final {
1444 preprint( node );
1445 os << "void";
1446 return node;
1447 }
1448
1449 virtual const ast::Type * visit( const ast::BasicType * node ) override final {
1450 preprint( node );
1451 os << ast::BasicType::typeNames[ node->kind ];
1452 return node;
1453 }
1454
1455 virtual const ast::Type * visit( const ast::PointerType * node ) override final {
1456 preprint( node );
1457 if ( ! node->isArray() ) {
1458 os << "pointer to ";
1459 } else {
1460 os << "decayed ";
1461 if ( node->isStatic ) {
1462 os << "static ";
1463 }
1464
1465 if ( node->isVarLen ) {
1466 os << "variable length array of ";
1467 } else if ( node->dimension ) {
1468 os << "array of ";
1469 node->dimension->accept( *this );
1470 os << " ";
1471 }
1472 }
1473 safe_print( node->base );
1474
1475 return node;
1476 }
1477
1478 virtual const ast::Type * visit( const ast::ArrayType * node ) override final {
1479 preprint( node );
1480 if ( node->isStatic ) {
1481 os << "static ";
1482 }
1483
1484 if ( node->isVarLen ) {
1485 os << "variable length array of ";
1486 } else if ( node->dimension ) {
1487 os << "array of ";
1488 } else {
1489 os << "open array of ";
1490 }
1491
1492 safe_print( node->base );
1493
1494 if ( node->dimension ) {
1495 os << " with dimension of ";
1496 node->dimension->accept( *this );
1497 }
1498
1499 return node;
1500 }
1501
1502 virtual const ast::Type * visit( const ast::ReferenceType * node ) override final {
1503 preprint( node );
1504 os << "reference to ";
1505 safe_print( node->base );
1506
1507 return node;
1508 }
1509
1510 virtual const ast::Type * visit( const ast::QualifiedType * node ) override final {
1511 preprint( node );
1512 ++indent;
1513 os << "Qualified Type:" << endl << indent;
1514 safe_print( node->parent );
1515 os << endl << indent;
1516 safe_print( node->child );
1517 os << endl;
1518 --indent;
1519
1520 return node;
1521 }
1522
1523 virtual const ast::Type * visit( const ast::FunctionType * node ) override final {
1524 preprint( node );
1525
1526 os << "function" << endl;
1527 if ( ! node->params.empty() ) {
1528 os << indent << "... with parameters" << endl;
1529 ++indent;
1530 printAll( node->params );
1531 if ( node->isVarArgs ) {
1532 os << indent << "and a variable number of other arguments" << endl;
1533 }
1534 --indent;
1535 } else if ( node->isVarArgs ) {
1536 os << indent+1 << "accepting unspecified arguments" << endl;
1537 }
1538
1539 os << indent << "... returning";
1540 if ( node->returns.empty() ) {
1541 os << " nothing" << endl;
1542 } else {
1543 os << endl;
1544 ++indent;
1545 printAll( node->returns );
1546 --indent;
1547 }
1548
1549 return node;
1550 }
1551
1552 virtual const ast::Type * visit( const ast::StructInstType * node ) override final {
1553 preprint( node );
1554 os << "instance of struct " << node->name;
1555 if ( node->base ) {
1556 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1557 }
1558 print( node->params );
1559
1560 return node;
1561 }
1562
1563 virtual const ast::Type * visit( const ast::UnionInstType * node ) override final {
1564 preprint( node );
1565 os << "instance of union " << node->name;
1566 if ( node->base ) {
1567 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1568 }
1569 print( node->params );
1570
1571 return node;
1572 }
1573
1574 virtual const ast::Type * visit( const ast::EnumInstType * node ) override final {
1575 preprint( node );
1576 os << "instance of enum " << node->name;
1577 if ( node->base ) {
1578 os << " " << ( node->base->body ? "with" : "without" ) << " body";
1579 }
1580 print( node->params );
1581
1582 return node;
1583 }
1584
1585 virtual const ast::Type * visit( const ast::TraitInstType * node ) override final {
1586 preprint( node );
1587 os << "instance of trait " << node->name;
1588 print( node->params );
1589
1590 return node;
1591 }
1592
1593 virtual const ast::Type * visit( const ast::TypeInstType * node ) override final {
1594 preprint( node );
1595 const auto & _name = deterministic_output && isUnboundType(node) ? "[unbound]" : node->typeString();
1596 os << "instance of type " << _name
1597 << " (" << (node->kind == ast::TypeDecl::Ftype ? "" : "not ") << "function type)";
1598 print( node->params );
1599
1600 return node;
1601 }
1602
1603 virtual const ast::Type * visit( const ast::TupleType * node ) override final {
1604 preprint( node );
1605 os << "tuple of types" << endl;
1606 ++indent;
1607 printAll( node->types );
1608 --indent;
1609
1610 return node;
1611 }
1612
1613 virtual const ast::Type * visit( const ast::TypeofType * node ) override final {
1614 preprint( node );
1615 if ( node->kind == ast::TypeofType::Basetypeof ) { os << "base-"; }
1616 os << "type-of expression ";
1617 safe_print( node->expr );
1618
1619 return node;
1620 }
1621
1622 virtual const ast::Type * visit( const ast::VTableType * node ) override final {
1623 preprint( node );
1624 os << "vtable for ";
1625 safe_print( node->base );
1626
1627 return node;
1628 }
1629
1630 virtual const ast::Type * visit( const ast::VarArgsType * node ) override final {
1631 preprint( node );
1632 os << "builtin var args pack";
1633 return node;
1634 }
1635
1636 virtual const ast::Type * visit( const ast::ZeroType * node ) override final {
1637 preprint( node );
1638 os << "zero_t";
1639 return node;
1640 }
1641
1642 virtual const ast::Type * visit( const ast::OneType * node ) override final {
1643 preprint( node );
1644 os << "one_t";
1645 return node;
1646 }
1647
1648 virtual const ast::Type * visit( const ast::GlobalScopeType * node ) override final {
1649 preprint( node );
1650 os << "Global Scope Type";
1651 return node;
1652 }
1653
1654 virtual const ast::Designation * visit( const ast::Designation * node ) override final {
1655 if ( node->designators.empty() ) return node;
1656 os << "... designated by: " << endl;
1657 ++indent;
1658 for ( const ast::Expr * d : node->designators ) {
1659 os << indent;
1660 d->accept( *this );
1661 os << endl;
1662 }
1663 --indent;
1664 return node;
1665 }
1666
1667 virtual const ast::Init * visit( const ast::SingleInit * node ) override final {
1668 os << "Simple Initializer: ";
1669 safe_print( node->value );
1670 return node;
1671 }
1672
1673 virtual const ast::Init * visit( const ast::ListInit * node ) override final {
1674 os << "Compound initializer: " << endl;
1675 ++indent;
1676 for ( auto p : group_iterate( node->designations, node->initializers ) ) {
1677 const ast::Designation * d = std::get<0>(p);
1678 const ast::Init * init = std::get<1>(p);
1679 os << indent;
1680 init->accept( *this );
1681 os << endl;
1682 if ( ! d->designators.empty() ) {
1683 os << indent;
1684 d->accept( *this );
1685 }
1686 }
1687 --indent;
1688 return node;
1689 }
1690
1691 virtual const ast::Init * visit( const ast::ConstructorInit * node ) override final {
1692 os << "Constructor initializer: " << endl;
1693 if ( node->ctor ) {
1694 os << indent << "... initially constructed with ";
1695 ++indent;
1696 node->ctor->accept( *this );
1697 --indent;
1698 }
1699
1700 if ( node->dtor ) {
1701 os << indent << "... destructed with ";
1702 ++indent;
1703 node->dtor->accept( *this );
1704 --indent;
1705 }
1706
1707 if ( node->init ) {
1708 os << indent << "... with fallback C-style initializer: ";
1709 ++indent;
1710 node->init->accept( *this );
1711 --indent;
1712 }
1713 return node;
1714 }
1715
1716 virtual const ast::Attribute * visit( const ast::Attribute * node ) override final {
1717 if ( node->empty() ) return node;
1718 os << "Attribute with name: " << node->name;
1719 if ( node->params.empty() ) return node;
1720 os << " with parameters: " << endl;
1721 ++indent;
1722 printAll( node->params );
1723 --indent;
1724 return node;
1725 }
1726
1727 virtual const ast::TypeSubstitution * visit( const ast::TypeSubstitution * node ) override final {
1728 os << indent << "Types:" << endl;
1729 for ( const auto& i : *node ) {
1730 os << indent+1 << i.first.typeString() << " -> ";
1731 indent += 2;
1732 safe_print( i.second );
1733 indent -= 2;
1734 os << endl;
1735 }
1736 return node;
1737 }
1738
1739};
1740
1741} // namespace
1742
1743void print( ostream & os, const ast::Node * node, Indenter indent ) {
1744 Printer printer { os, indent, false };
1745 node->accept(printer);
1746}
1747
1748void printShort( ostream & os, const ast::Decl * node, Indenter indent ) {
1749 Printer printer { os, indent, true };
1750 node->accept(printer);
1751}
1752
1753void print( ostream & os, Function::Specs specs ) {
1754 print( os, specs, Names::FuncSpecifiers );
1755}
1756
1757void print( ostream & os, Storage::Classes storage ) {
1758 print( os, storage, Names::StorageClasses );
1759}
1760
1761void print( ostream & os, CV::Qualifiers qualifiers ) {
1762 print( os, qualifiers, Names::Qualifiers );
1763}
1764
1765} // namespace ast
Note: See TracBrowser for help on using the repository browser.