forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunparse.cpp
3195 lines (3144 loc) · 107 KB
/
unparse.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===-- lib/Parser/unparse.cpp --------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// Generates Fortran from the content of a parse tree, using the
// traversal templates in parse-tree-visitor.h.
#include "flang/Parser/unparse.h"
#include "flang/Common/Fortran.h"
#include "flang/Common/idioms.h"
#include "flang/Common/indirection.h"
#include "flang/Parser/characters.h"
#include "flang/Parser/parse-tree-visitor.h"
#include "flang/Parser/parse-tree.h"
#include "flang/Parser/tools.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cinttypes>
#include <cstddef>
#include <set>
namespace Fortran::parser {
class UnparseVisitor {
public:
UnparseVisitor(llvm::raw_ostream &out, int indentationAmount,
Encoding encoding, bool capitalize, bool backslashEscapes,
preStatementType *preStatement, AnalyzedObjectsAsFortran *asFortran)
: out_{out}, indentationAmount_{indentationAmount}, encoding_{encoding},
capitalizeKeywords_{capitalize}, backslashEscapes_{backslashEscapes},
preStatement_{preStatement}, asFortran_{asFortran} {}
// In nearly all cases, this code avoids defining Boolean-valued Pre()
// callbacks for the parse tree walking framework in favor of two void
// functions, Before() and Unparse(), which imply true and false return
// values for Pre() respectively.
template <typename T> void Before(const T &) {}
template <typename T> double Unparse(const T &); // not void, never used
template <typename T> bool Pre(const T &x) {
if constexpr (std::is_void_v<decltype(Unparse(x))>) {
// There is a local definition of Unparse() for this type. It
// overrides the parse tree walker's default Walk() over the descendents.
Before(x);
Unparse(x);
Post(x);
return false; // Walk() does not visit descendents
} else if constexpr (HasTypedExpr<T>::value) {
// Format the expression representation from semantics
if (asFortran_ && x.typedExpr) {
asFortran_->expr(out_, *x.typedExpr);
return false;
} else {
return true;
}
} else {
Before(x);
return true; // there's no Unparse() defined here, Walk() the descendents
}
}
template <typename T> void Post(const T &) {}
// Emit simple types as-is.
void Unparse(const std::string &x) { Put(x); }
void Unparse(int x) { Put(std::to_string(x)); }
void Unparse(unsigned int x) { Put(std::to_string(x)); }
void Unparse(long x) { Put(std::to_string(x)); }
void Unparse(unsigned long x) { Put(std::to_string(x)); }
void Unparse(long long x) { Put(std::to_string(x)); }
void Unparse(unsigned long long x) { Put(std::to_string(x)); }
void Unparse(char x) { Put(x); }
// Statement labels and ends of lines
template <typename T> void Before(const Statement<T> &x) {
if (preStatement_) {
(*preStatement_)(x.source, out_, indent_);
}
Walk(x.label, " ");
}
template <typename T> void Post(const Statement<T> &) { Put('\n'); }
// The special-case formatting functions for these productions are
// ordered to correspond roughly to their order of appearance in
// the Fortran 2018 standard (and parse-tree.h).
void Unparse(const Program &x) { // R501
Walk("", x.v, "\n"); // put blank lines between ProgramUnits
}
void Unparse(const Name &x) { // R603
Put(x.ToString());
}
void Unparse(const DefinedOperator::IntrinsicOperator &x) { // R608
switch (x) {
case DefinedOperator::IntrinsicOperator::Power:
Put("**");
break;
case DefinedOperator::IntrinsicOperator::Multiply:
Put('*');
break;
case DefinedOperator::IntrinsicOperator::Divide:
Put('/');
break;
case DefinedOperator::IntrinsicOperator::Add:
Put('+');
break;
case DefinedOperator::IntrinsicOperator::Subtract:
Put('-');
break;
case DefinedOperator::IntrinsicOperator::Concat:
Put("//");
break;
case DefinedOperator::IntrinsicOperator::LT:
Put('<');
break;
case DefinedOperator::IntrinsicOperator::LE:
Put("<=");
break;
case DefinedOperator::IntrinsicOperator::EQ:
Put("==");
break;
case DefinedOperator::IntrinsicOperator::NE:
Put("/=");
break;
case DefinedOperator::IntrinsicOperator::GE:
Put(">=");
break;
case DefinedOperator::IntrinsicOperator::GT:
Put('>');
break;
default:
Put('.'), Word(DefinedOperator::EnumToString(x)), Put('.');
}
}
void Post(const Star &) { Put('*'); } // R701 &c.
void Post(const TypeParamValue::Deferred &) { Put(':'); } // R701
void Unparse(const DeclarationTypeSpec::Type &x) { // R703
Word("TYPE("), Walk(x.derived), Put(')');
}
void Unparse(const DeclarationTypeSpec::Class &x) {
Word("CLASS("), Walk(x.derived), Put(')');
}
void Post(const DeclarationTypeSpec::ClassStar &) { Word("CLASS(*)"); }
void Post(const DeclarationTypeSpec::TypeStar &) { Word("TYPE(*)"); }
void Unparse(const DeclarationTypeSpec::Record &x) {
Word("RECORD/"), Walk(x.v), Put('/');
}
void Before(const IntrinsicTypeSpec::Real &) { // R704
Word("REAL");
}
void Before(const IntrinsicTypeSpec::Complex &) { Word("COMPLEX"); }
void Post(const IntrinsicTypeSpec::DoublePrecision &) {
Word("DOUBLE PRECISION");
}
void Before(const IntrinsicTypeSpec::Character &) { Word("CHARACTER"); }
void Before(const IntrinsicTypeSpec::Logical &) { Word("LOGICAL"); }
void Post(const IntrinsicTypeSpec::DoubleComplex &) {
Word("DOUBLE COMPLEX");
}
void Before(const UnsignedTypeSpec &) { Word("UNSIGNED"); }
void Before(const IntrinsicVectorTypeSpec &) { Word("VECTOR("); }
void Post(const IntrinsicVectorTypeSpec &) { Put(')'); }
void Post(const VectorTypeSpec::PairVectorTypeSpec &) {
Word("__VECTOR_PAIR");
}
void Post(const VectorTypeSpec::QuadVectorTypeSpec &) {
Word("__VECTOR_QUAD");
}
void Before(const IntegerTypeSpec &) { // R705
Word("INTEGER");
}
void Unparse(const KindSelector &x) { // R706
common::visit(
common::visitors{
[&](const ScalarIntConstantExpr &y) {
Put('('), Word("KIND="), Walk(y), Put(')');
},
[&](const KindSelector::StarSize &y) { Put('*'), Walk(y.v); },
},
x.u);
}
void Unparse(const SignedIntLiteralConstant &x) { // R707
Put(std::get<CharBlock>(x.t).ToString());
Walk("_", std::get<std::optional<KindParam>>(x.t));
}
void Unparse(const IntLiteralConstant &x) { // R708
Put(std::get<CharBlock>(x.t).ToString());
Walk("_", std::get<std::optional<KindParam>>(x.t));
}
void Unparse(const Sign &x) { // R712
Put(x == Sign::Negative ? '-' : '+');
}
void Unparse(const RealLiteralConstant &x) { // R714, R715
Put(x.real.source.ToString()), Walk("_", x.kind);
}
void Unparse(const ComplexLiteralConstant &x) { // R718 - R720
Put('('), Walk(x.t, ","), Put(')');
}
void Unparse(const CharSelector::LengthAndKind &x) { // R721
Put('('), Word("KIND="), Walk(x.kind);
Walk(", LEN=", x.length), Put(')');
}
void Unparse(const LengthSelector &x) { // R722
common::visit(common::visitors{
[&](const TypeParamValue &y) {
Put('('), Word("LEN="), Walk(y), Put(')');
},
[&](const CharLength &y) { Put('*'), Walk(y); },
},
x.u);
}
void Unparse(const CharLength &x) { // R723
common::visit(
common::visitors{
[&](const TypeParamValue &y) { Put('('), Walk(y), Put(')'); },
[&](const std::int64_t &y) { Walk(y); },
},
x.u);
}
void Unparse(const CharLiteralConstant &x) { // R724
const auto &str{std::get<std::string>(x.t)};
if (const auto &k{std::get<std::optional<KindParam>>(x.t)}) {
Walk(*k), Put('_');
}
PutNormalized(str);
}
void Unparse(const HollerithLiteralConstant &x) {
auto ucs{DecodeString<std::u32string, Encoding::UTF_8>(x.v, false)};
Unparse(ucs.size());
Put('H');
for (char32_t ch : ucs) {
EncodedCharacter encoded{EncodeCharacter(encoding_, ch)};
for (int j{0}; j < encoded.bytes; ++j) {
Put(encoded.buffer[j]);
}
}
}
void Unparse(const LogicalLiteralConstant &x) { // R725
Put(std::get<bool>(x.t) ? ".TRUE." : ".FALSE.");
Walk("_", std::get<std::optional<KindParam>>(x.t));
}
void Unparse(const DerivedTypeStmt &x) { // R727
Word("TYPE"), Walk(", ", std::get<std::list<TypeAttrSpec>>(x.t), ", ");
Put(" :: "), Walk(std::get<Name>(x.t));
Walk("(", std::get<std::list<Name>>(x.t), ", ", ")");
Indent();
}
void Unparse(const Abstract &) { // R728, &c.
Word("ABSTRACT");
}
void Post(const TypeAttrSpec::BindC &) { Word("BIND(C)"); }
void Unparse(const TypeAttrSpec::Extends &x) {
Word("EXTENDS("), Walk(x.v), Put(')');
}
void Unparse(const EndTypeStmt &x) { // R730
Outdent(), Word("END TYPE"), Walk(" ", x.v);
}
void Unparse(const SequenceStmt &) { // R731
Word("SEQUENCE");
}
void Unparse(const TypeParamDefStmt &x) { // R732
Walk(std::get<IntegerTypeSpec>(x.t));
Put(", "), Walk(std::get<common::TypeParamAttr>(x.t));
Put(" :: "), Walk(std::get<std::list<TypeParamDecl>>(x.t), ", ");
}
void Unparse(const TypeParamDecl &x) { // R733
Walk(std::get<Name>(x.t));
Walk("=", std::get<std::optional<ScalarIntConstantExpr>>(x.t));
}
void Unparse(const DataComponentDefStmt &x) { // R737
const auto &dts{std::get<DeclarationTypeSpec>(x.t)};
const auto &attrs{std::get<std::list<ComponentAttrSpec>>(x.t)};
const auto &decls{std::get<std::list<ComponentOrFill>>(x.t)};
Walk(dts), Walk(", ", attrs, ", ");
if (!attrs.empty() ||
(!std::holds_alternative<DeclarationTypeSpec::Record>(dts.u) &&
std::none_of(
decls.begin(), decls.end(), [](const ComponentOrFill &c) {
return common::visit(
common::visitors{
[](const ComponentDecl &d) {
const auto &init{
std::get<std::optional<Initialization>>(d.t)};
return init &&
std::holds_alternative<std::list<
common::Indirection<DataStmtValue>>>(
init->u);
},
[](const FillDecl &) { return false; },
},
c.u);
}))) {
Put(" ::");
}
Put(' '), Walk(decls, ", ");
}
void Unparse(const Allocatable &) { // R738
Word("ALLOCATABLE");
}
void Unparse(const Pointer &) { Word("POINTER"); }
void Unparse(const Contiguous &) { Word("CONTIGUOUS"); }
void Before(const ComponentAttrSpec &x) {
common::visit(common::visitors{
[&](const CoarraySpec &) { Word("CODIMENSION["); },
[&](const ComponentArraySpec &) { Word("DIMENSION("); },
[](const auto &) {},
},
x.u);
}
void Post(const ComponentAttrSpec &x) {
common::visit(common::visitors{
[&](const CoarraySpec &) { Put(']'); },
[&](const ComponentArraySpec &) { Put(')'); },
[](const auto &) {},
},
x.u);
}
void Unparse(const ComponentDecl &x) { // R739
Walk(std::get<ObjectName>(x.t));
Walk("(", std::get<std::optional<ComponentArraySpec>>(x.t), ")");
Walk("[", std::get<std::optional<CoarraySpec>>(x.t), "]");
Walk("*", std::get<std::optional<CharLength>>(x.t));
Walk(std::get<std::optional<Initialization>>(x.t));
}
void Unparse(const FillDecl &x) { // DEC extension
Put("%FILL");
Walk("(", std::get<std::optional<ComponentArraySpec>>(x.t), ")");
Walk("*", std::get<std::optional<CharLength>>(x.t));
}
void Unparse(const ComponentArraySpec &x) { // R740
common::visit(
common::visitors{
[&](const std::list<ExplicitShapeSpec> &y) { Walk(y, ","); },
[&](const DeferredShapeSpecList &y) { Walk(y); },
},
x.u);
}
void Unparse(const ProcComponentDefStmt &x) { // R741
Word("PROCEDURE(");
Walk(std::get<std::optional<ProcInterface>>(x.t)), Put(')');
Walk(", ", std::get<std::list<ProcComponentAttrSpec>>(x.t), ", ");
Put(" :: "), Walk(std::get<std::list<ProcDecl>>(x.t), ", ");
}
void Unparse(const NoPass &) { // R742
Word("NOPASS");
}
void Unparse(const Pass &x) { Word("PASS"), Walk("(", x.v, ")"); }
void Unparse(const Initialization &x) { // R743 & R805
common::visit(
common::visitors{
[&](const ConstantExpr &y) { Put(" = "), Walk(y); },
[&](const NullInit &y) { Put(" => "), Walk(y); },
[&](const InitialDataTarget &y) { Put(" => "), Walk(y); },
[&](const std::list<common::Indirection<DataStmtValue>> &y) {
Walk("/", y, ", ", "/");
},
},
x.u);
}
void Unparse(const PrivateStmt &) { // R745
Word("PRIVATE");
}
void Unparse(const TypeBoundProcedureStmt::WithoutInterface &x) { // R749
Word("PROCEDURE"), Walk(", ", x.attributes, ", ");
Put(" :: "), Walk(x.declarations, ", ");
}
void Unparse(const TypeBoundProcedureStmt::WithInterface &x) {
Word("PROCEDURE("), Walk(x.interfaceName), Put("), ");
Walk(x.attributes);
Put(" :: "), Walk(x.bindingNames, ", ");
}
void Unparse(const TypeBoundProcDecl &x) { // R750
Walk(std::get<Name>(x.t));
Walk(" => ", std::get<std::optional<Name>>(x.t));
}
void Unparse(const TypeBoundGenericStmt &x) { // R751
Word("GENERIC"), Walk(", ", std::get<std::optional<AccessSpec>>(x.t));
Put(" :: "), Walk(std::get<common::Indirection<GenericSpec>>(x.t));
Put(" => "), Walk(std::get<std::list<Name>>(x.t), ", ");
}
void Post(const BindAttr::Deferred &) { Word("DEFERRED"); } // R752
void Post(const BindAttr::Non_Overridable &) { Word("NON_OVERRIDABLE"); }
void Unparse(const FinalProcedureStmt &x) { // R753
Word("FINAL :: "), Walk(x.v, ", ");
}
void Unparse(const DerivedTypeSpec &x) { // R754
Walk(std::get<Name>(x.t));
Walk("(", std::get<std::list<TypeParamSpec>>(x.t), ",", ")");
}
void Unparse(const TypeParamSpec &x) { // R755
Walk(std::get<std::optional<Keyword>>(x.t), "=");
Walk(std::get<TypeParamValue>(x.t));
}
void Unparse(const StructureConstructor &x) { // R756
Walk(std::get<DerivedTypeSpec>(x.t));
Put('('), Walk(std::get<std::list<ComponentSpec>>(x.t), ", "), Put(')');
}
void Unparse(const ComponentSpec &x) { // R757
Walk(std::get<std::optional<Keyword>>(x.t), "=");
Walk(std::get<ComponentDataSource>(x.t));
}
void Unparse(const EnumDefStmt &) { // R760
Word("ENUM, BIND(C)"), Indent();
}
void Unparse(const EnumeratorDefStmt &x) { // R761
Word("ENUMERATOR :: "), Walk(x.v, ", ");
}
void Unparse(const Enumerator &x) { // R762
Walk(std::get<NamedConstant>(x.t));
Walk(" = ", std::get<std::optional<ScalarIntConstantExpr>>(x.t));
}
void Post(const EndEnumStmt &) { // R763
Outdent(), Word("END ENUM");
}
void Unparse(const BOZLiteralConstant &x) { // R764 - R767
Put(x.v);
}
void Unparse(const AcValue::Triplet &x) { // R773
Walk(std::get<0>(x.t)), Put(':'), Walk(std::get<1>(x.t));
Walk(":", std::get<std::optional<ScalarIntExpr>>(x.t));
}
void Unparse(const ArrayConstructor &x) { // R769
Put('['), Walk(x.v), Put(']');
}
void Unparse(const AcSpec &x) { // R770
Walk(x.type, "::"), Walk(x.values, ", ");
}
template <typename A, typename B> void Unparse(const LoopBounds<A, B> &x) {
Walk(x.name), Put('='), Walk(x.lower), Put(','), Walk(x.upper);
Walk(",", x.step);
}
void Unparse(const AcImpliedDo &x) { // R774
Put('('), Walk(std::get<std::list<AcValue>>(x.t), ", ");
Put(", "), Walk(std::get<AcImpliedDoControl>(x.t)), Put(')');
}
void Unparse(const AcImpliedDoControl &x) { // R775
Walk(std::get<std::optional<IntegerTypeSpec>>(x.t), "::");
Walk(std::get<AcImpliedDoControl::Bounds>(x.t));
}
void Unparse(const TypeDeclarationStmt &x) { // R801
const auto &dts{std::get<DeclarationTypeSpec>(x.t)};
const auto &attrs{std::get<std::list<AttrSpec>>(x.t)};
const auto &decls{std::get<std::list<EntityDecl>>(x.t)};
Walk(dts), Walk(", ", attrs, ", ");
static const auto isInitializerOldStyle{[](const Initialization &i) {
return std::holds_alternative<
std::list<common::Indirection<DataStmtValue>>>(i.u);
}};
static const auto hasAssignmentInitializer{[](const EntityDecl &d) {
// Does a declaration have a new-style =x initializer?
const auto &init{std::get<std::optional<Initialization>>(d.t)};
return init && !isInitializerOldStyle(*init);
}};
static const auto hasSlashDelimitedInitializer{[](const EntityDecl &d) {
// Does a declaration have an old-style /x/ initializer?
const auto &init{std::get<std::optional<Initialization>>(d.t)};
return init && isInitializerOldStyle(*init);
}};
const auto useDoubledColons{[&]() {
bool isRecord{std::holds_alternative<DeclarationTypeSpec::Record>(dts.u)};
if (!attrs.empty()) {
// Attributes after the type require :: before the entities.
CHECK(!isRecord);
return true;
}
if (std::any_of(decls.begin(), decls.end(), hasAssignmentInitializer)) {
// Always use :: with new style standard initializers (=x),
// since the standard requires them to appear (even in free form,
// where mandatory spaces already disambiguate INTEGER J=666).
CHECK(!isRecord);
return true;
}
if (isRecord) {
// Never put :: in a legacy extension RECORD// statement.
return false;
}
// The :: is optional for this declaration. Avoid usage that can
// crash the pgf90 compiler.
if (std::any_of(
decls.begin(), decls.end(), hasSlashDelimitedInitializer)) {
// Don't use :: when a declaration uses legacy DATA-statement-like
// /x/ initialization.
return false;
}
// Don't use :: with intrinsic types. Otherwise, use it.
return !std::holds_alternative<IntrinsicTypeSpec>(dts.u);
}};
if (useDoubledColons()) {
Put(" ::");
}
Put(' '), Walk(std::get<std::list<EntityDecl>>(x.t), ", ");
}
void Before(const AttrSpec &x) { // R802
common::visit(common::visitors{
[&](const CoarraySpec &) { Word("CODIMENSION["); },
[&](const ArraySpec &) { Word("DIMENSION("); },
[](const auto &) {},
},
x.u);
}
void Post(const AttrSpec &x) {
common::visit(common::visitors{
[&](const CoarraySpec &) { Put(']'); },
[&](const ArraySpec &) { Put(')'); },
[](const auto &) {},
},
x.u);
}
void Unparse(const EntityDecl &x) { // R803
Walk(std::get<ObjectName>(x.t));
Walk("(", std::get<std::optional<ArraySpec>>(x.t), ")");
Walk("[", std::get<std::optional<CoarraySpec>>(x.t), "]");
Walk("*", std::get<std::optional<CharLength>>(x.t));
Walk(std::get<std::optional<Initialization>>(x.t));
}
void Unparse(const NullInit &) { // R806
Word("NULL()");
}
void Unparse(const LanguageBindingSpec &x) { // R808 & R1528
Word("BIND(C");
Walk(
", NAME=", std::get<std::optional<ScalarDefaultCharConstantExpr>>(x.t));
if (std::get<bool>(x.t)) {
Word(", CDEFINED");
}
Put(')');
}
void Unparse(const CoarraySpec &x) { // R809
common::visit(common::visitors{
[&](const DeferredCoshapeSpecList &y) { Walk(y); },
[&](const ExplicitCoshapeSpec &y) { Walk(y); },
},
x.u);
}
void Unparse(const DeferredCoshapeSpecList &x) { // R810
for (auto j{x.v}; j > 0; --j) {
Put(':');
if (j > 1) {
Put(',');
}
}
}
void Unparse(const ExplicitCoshapeSpec &x) { // R811
Walk(std::get<std::list<ExplicitShapeSpec>>(x.t), ",", ",");
Walk(std::get<std::optional<SpecificationExpr>>(x.t), ":"), Put('*');
}
void Unparse(const ExplicitShapeSpec &x) { // R812 - R813 & R816 - R818
Walk(std::get<std::optional<SpecificationExpr>>(x.t), ":");
Walk(std::get<SpecificationExpr>(x.t));
}
void Unparse(const ArraySpec &x) { // R815
common::visit(
common::visitors{
[&](const std::list<ExplicitShapeSpec> &y) { Walk(y, ","); },
[&](const std::list<AssumedShapeSpec> &y) { Walk(y, ","); },
[&](const DeferredShapeSpecList &y) { Walk(y); },
[&](const AssumedSizeSpec &y) { Walk(y); },
[&](const ImpliedShapeSpec &y) { Walk(y); },
[&](const AssumedRankSpec &y) { Walk(y); },
},
x.u);
}
void Post(const AssumedShapeSpec &) { Put(':'); } // R819
void Unparse(const DeferredShapeSpecList &x) { // R820
for (auto j{x.v}; j > 0; --j) {
Put(':');
if (j > 1) {
Put(',');
}
}
}
void Unparse(const AssumedImpliedSpec &x) { // R821
Walk(x.v, ":");
Put('*');
}
void Unparse(const AssumedSizeSpec &x) { // R822
Walk(std::get<std::list<ExplicitShapeSpec>>(x.t), ",", ",");
Walk(std::get<AssumedImpliedSpec>(x.t));
}
void Unparse(const ImpliedShapeSpec &x) { // R823
Walk(x.v, ",");
}
void Post(const AssumedRankSpec &) { Put(".."); } // R825
void Post(const Asynchronous &) { Word("ASYNCHRONOUS"); }
void Post(const External &) { Word("EXTERNAL"); }
void Post(const Intrinsic &) { Word("INTRINSIC"); }
void Post(const Optional &) { Word("OPTIONAL"); }
void Post(const Parameter &) { Word("PARAMETER"); }
void Post(const Protected &) { Word("PROTECTED"); }
void Post(const Save &) { Word("SAVE"); }
void Post(const Target &) { Word("TARGET"); }
void Post(const Value &) { Word("VALUE"); }
void Post(const Volatile &) { Word("VOLATILE"); }
void Unparse(const IntentSpec &x) { // R826
Word("INTENT("), Walk(x.v), Put(")");
}
void Unparse(const AccessStmt &x) { // R827
Walk(std::get<AccessSpec>(x.t));
Walk(" :: ", std::get<std::list<AccessId>>(x.t), ", ");
}
void Unparse(const AllocatableStmt &x) { // R829
Word("ALLOCATABLE :: "), Walk(x.v, ", ");
}
void Unparse(const ObjectDecl &x) { // R830 & R860
Walk(std::get<ObjectName>(x.t));
Walk("(", std::get<std::optional<ArraySpec>>(x.t), ")");
Walk("[", std::get<std::optional<CoarraySpec>>(x.t), "]");
}
void Unparse(const AsynchronousStmt &x) { // R831
Word("ASYNCHRONOUS :: "), Walk(x.v, ", ");
}
void Unparse(const BindStmt &x) { // R832
Walk(x.t, " :: ");
}
void Unparse(const BindEntity &x) { // R833
bool isCommon{std::get<BindEntity::Kind>(x.t) == BindEntity::Kind::Common};
const char *slash{isCommon ? "/" : ""};
Put(slash), Walk(std::get<Name>(x.t)), Put(slash);
}
void Unparse(const CodimensionStmt &x) { // R834
Word("CODIMENSION :: "), Walk(x.v, ", ");
}
void Unparse(const CodimensionDecl &x) { // R835
Walk(std::get<Name>(x.t));
Put('['), Walk(std::get<CoarraySpec>(x.t)), Put(']');
}
void Unparse(const ContiguousStmt &x) { // R836
Word("CONTIGUOUS :: "), Walk(x.v, ", ");
}
void Unparse(const DataStmt &x) { // R837
Word("DATA "), Walk(x.v, ", ");
}
void Unparse(const DataStmtSet &x) { // R838
Walk(std::get<std::list<DataStmtObject>>(x.t), ", ");
Put('/'), Walk(std::get<std::list<DataStmtValue>>(x.t), ", "), Put('/');
}
void Unparse(const DataImpliedDo &x) { // R840, R842
Put('('), Walk(std::get<std::list<DataIDoObject>>(x.t), ", "), Put(',');
Walk(std::get<std::optional<IntegerTypeSpec>>(x.t), "::");
Walk(std::get<DataImpliedDo::Bounds>(x.t)), Put(')');
}
void Unparse(const DataStmtValue &x) { // R843
Walk(std::get<std::optional<DataStmtRepeat>>(x.t), "*");
Walk(std::get<DataStmtConstant>(x.t));
}
void Unparse(const DimensionStmt &x) { // R848
Word("DIMENSION :: "), Walk(x.v, ", ");
}
void Unparse(const DimensionStmt::Declaration &x) {
Walk(std::get<Name>(x.t));
Put('('), Walk(std::get<ArraySpec>(x.t)), Put(')');
}
void Unparse(const IntentStmt &x) { // R849
Walk(x.t, " :: ");
}
void Unparse(const OptionalStmt &x) { // R850
Word("OPTIONAL :: "), Walk(x.v, ", ");
}
void Unparse(const ParameterStmt &x) { // R851
Word("PARAMETER("), Walk(x.v, ", "), Put(')');
}
void Unparse(const NamedConstantDef &x) { // R852
Walk(x.t, "=");
}
void Unparse(const PointerStmt &x) { // R853
Word("POINTER :: "), Walk(x.v, ", ");
}
void Unparse(const PointerDecl &x) { // R854
Walk(std::get<Name>(x.t));
Walk("(", std::get<std::optional<DeferredShapeSpecList>>(x.t), ")");
}
void Unparse(const ProtectedStmt &x) { // R855
Word("PROTECTED :: "), Walk(x.v, ", ");
}
void Unparse(const SaveStmt &x) { // R856
Word("SAVE"), Walk(" :: ", x.v, ", ");
}
void Unparse(const SavedEntity &x) { // R857, R858
bool isCommon{
std::get<SavedEntity::Kind>(x.t) == SavedEntity::Kind::Common};
const char *slash{isCommon ? "/" : ""};
Put(slash), Walk(std::get<Name>(x.t)), Put(slash);
}
void Unparse(const TargetStmt &x) { // R859
Word("TARGET :: "), Walk(x.v, ", ");
}
void Unparse(const ValueStmt &x) { // R861
Word("VALUE :: "), Walk(x.v, ", ");
}
void Unparse(const VolatileStmt &x) { // R862
Word("VOLATILE :: "), Walk(x.v, ", ");
}
void Unparse(const ImplicitStmt &x) { // R863
Word("IMPLICIT ");
common::visit(
common::visitors{
[&](const std::list<ImplicitSpec> &y) { Walk(y, ", "); },
[&](const std::list<ImplicitStmt::ImplicitNoneNameSpec> &y) {
Word("NONE"), Walk(" (", y, ", ", ")");
},
},
x.u);
}
void Unparse(const ImplicitSpec &x) { // R864
Walk(std::get<DeclarationTypeSpec>(x.t));
Put('('), Walk(std::get<std::list<LetterSpec>>(x.t), ", "), Put(')');
}
void Unparse(const LetterSpec &x) { // R865
Put(*std::get<const char *>(x.t));
auto second{std::get<std::optional<const char *>>(x.t)};
if (second) {
Put('-'), Put(**second);
}
}
void Unparse(const ImportStmt &x) { // R867
Word("IMPORT");
switch (x.kind) {
case common::ImportKind::Default:
Walk(" :: ", x.names, ", ");
break;
case common::ImportKind::Only:
Put(", "), Word("ONLY: ");
Walk(x.names, ", ");
break;
case common::ImportKind::None:
Word(", NONE");
break;
case common::ImportKind::All:
Word(", ALL");
break;
}
}
void Unparse(const NamelistStmt &x) { // R868
Word("NAMELIST"), Walk(x.v, ", ");
}
void Unparse(const NamelistStmt::Group &x) {
Put('/'), Walk(std::get<Name>(x.t)), Put('/');
Walk(std::get<std::list<Name>>(x.t), ", ");
}
void Unparse(const EquivalenceStmt &x) { // R870, R871
Word("EQUIVALENCE");
const char *separator{" "};
for (const std::list<EquivalenceObject> &y : x.v) {
Put(separator), Put('('), Walk(y), Put(')');
separator = ", ";
}
}
void Unparse(const CommonStmt &x) { // R873
Word("COMMON ");
Walk(x.blocks);
}
void Unparse(const CommonBlockObject &x) { // R874
Walk(std::get<Name>(x.t));
Walk("(", std::get<std::optional<ArraySpec>>(x.t), ")");
}
void Unparse(const CommonStmt::Block &x) {
Word("/"), Walk(std::get<std::optional<Name>>(x.t)), Word("/");
Walk(std::get<std::list<CommonBlockObject>>(x.t));
}
void Unparse(const Substring &x) { // R908, R909
Walk(std::get<DataRef>(x.t));
Put('('), Walk(std::get<SubstringRange>(x.t)), Put(')');
}
void Unparse(const CharLiteralConstantSubstring &x) {
Walk(std::get<CharLiteralConstant>(x.t));
Put('('), Walk(std::get<SubstringRange>(x.t)), Put(')');
}
void Unparse(const SubstringInquiry &x) {
Walk(x.v);
Put(x.source.end()[-1] == 'n' ? "%LEN" : "%KIND");
}
void Unparse(const SubstringRange &x) { // R910
Walk(x.t, ":");
}
void Unparse(const PartRef &x) { // R912
Walk(x.name);
Walk("(", x.subscripts, ",", ")");
Walk(x.imageSelector);
}
void Unparse(const StructureComponent &x) { // R913
Walk(x.base);
if (structureComponents_.find(x.component.source) !=
structureComponents_.end()) {
Put('.');
} else {
Put('%');
}
Walk(x.component);
}
void Unparse(const ArrayElement &x) { // R917
Walk(x.base);
Put('('), Walk(x.subscripts, ","), Put(')');
}
void Unparse(const SubscriptTriplet &x) { // R921
Walk(std::get<0>(x.t)), Put(':'), Walk(std::get<1>(x.t));
Walk(":", std::get<2>(x.t));
}
void Unparse(const ImageSelector &x) { // R924
Put('['), Walk(std::get<std::list<Cosubscript>>(x.t), ",");
Walk(",", std::get<std::list<ImageSelectorSpec>>(x.t), ","), Put(']');
}
void Before(const ImageSelectorSpec::Stat &) { // R926
Word("STAT=");
}
void Before(const ImageSelectorSpec::Team_Number &) { Word("TEAM_NUMBER="); }
void Before(const ImageSelectorSpec &x) {
if (std::holds_alternative<TeamValue>(x.u)) {
Word("TEAM=");
}
}
void Unparse(const AllocateStmt &x) { // R927
Word("ALLOCATE(");
Walk(std::get<std::optional<TypeSpec>>(x.t), "::");
Walk(std::get<std::list<Allocation>>(x.t), ", ");
Walk(", ", std::get<std::list<AllocOpt>>(x.t), ", "), Put(')');
}
void Before(const AllocOpt &x) { // R928, R931
common::visit(common::visitors{
[&](const AllocOpt::Mold &) { Word("MOLD="); },
[&](const AllocOpt::Source &) { Word("SOURCE="); },
[&](const AllocOpt::Stream &) { Word("STREAM="); },
[&](const AllocOpt::Pinned &) { Word("PINNED="); },
[](const StatOrErrmsg &) {},
},
x.u);
}
void Unparse(const Allocation &x) { // R932
Walk(std::get<AllocateObject>(x.t));
Walk("(", std::get<std::list<AllocateShapeSpec>>(x.t), ",", ")");
Walk("[", std::get<std::optional<AllocateCoarraySpec>>(x.t), "]");
}
void Unparse(const AllocateShapeSpec &x) { // R934 & R938
Walk(std::get<std::optional<BoundExpr>>(x.t), ":");
Walk(std::get<BoundExpr>(x.t));
}
void Unparse(const AllocateCoarraySpec &x) { // R937
Walk(std::get<std::list<AllocateCoshapeSpec>>(x.t), ",", ",");
Walk(std::get<std::optional<BoundExpr>>(x.t), ":"), Put('*');
}
void Unparse(const NullifyStmt &x) { // R939
Word("NULLIFY("), Walk(x.v, ", "), Put(')');
}
void Unparse(const DeallocateStmt &x) { // R941
Word("DEALLOCATE(");
Walk(std::get<std::list<AllocateObject>>(x.t), ", ");
Walk(", ", std::get<std::list<StatOrErrmsg>>(x.t), ", "), Put(')');
}
void Before(const StatOrErrmsg &x) { // R942 & R1165
common::visit(common::visitors{
[&](const StatVariable &) { Word("STAT="); },
[&](const MsgVariable &) { Word("ERRMSG="); },
},
x.u);
}
// R1001 - R1022
void Unparse(const Expr::Parentheses &x) { Put('('), Walk(x.v), Put(')'); }
void Before(const Expr::UnaryPlus &) { Put("+"); }
void Before(const Expr::Negate &) { Put("-"); }
void Before(const Expr::NOT &) { Word(".NOT."); }
void Unparse(const Expr::PercentLoc &x) {
Word("%LOC("), Walk(x.v), Put(')');
}
void Unparse(const Expr::Power &x) { Walk(x.t, "**"); }
void Unparse(const Expr::Multiply &x) { Walk(x.t, "*"); }
void Unparse(const Expr::Divide &x) { Walk(x.t, "/"); }
void Unparse(const Expr::Add &x) { Walk(x.t, "+"); }
void Unparse(const Expr::Subtract &x) { Walk(x.t, "-"); }
void Unparse(const Expr::Concat &x) { Walk(x.t, "//"); }
void Unparse(const Expr::LT &x) { Walk(x.t, "<"); }
void Unparse(const Expr::LE &x) { Walk(x.t, "<="); }
void Unparse(const Expr::EQ &x) { Walk(x.t, "=="); }
void Unparse(const Expr::NE &x) { Walk(x.t, "/="); }
void Unparse(const Expr::GE &x) { Walk(x.t, ">="); }
void Unparse(const Expr::GT &x) { Walk(x.t, ">"); }
void Unparse(const Expr::AND &x) { Walk(x.t, ".AND."); }
void Unparse(const Expr::OR &x) { Walk(x.t, ".OR."); }
void Unparse(const Expr::EQV &x) { Walk(x.t, ".EQV."); }
void Unparse(const Expr::NEQV &x) { Walk(x.t, ".NEQV."); }
void Unparse(const Expr::ComplexConstructor &x) {
Put('('), Walk(x.t, ","), Put(')');
}
void Unparse(const Expr::DefinedBinary &x) {
Walk(std::get<1>(x.t)); // left
Walk(std::get<DefinedOpName>(x.t));
Walk(std::get<2>(x.t)); // right
}
void Unparse(const DefinedOpName &x) { // R1003, R1023, R1414, & R1415
Walk(x.v);
}
void Unparse(const AssignmentStmt &x) { // R1032
if (asFortran_ && x.typedAssignment.get()) {
Put(' ');
asFortran_->assignment(out_, *x.typedAssignment);
Put('\n');
} else {
Walk(x.t, " = ");
}
}
void Unparse(const PointerAssignmentStmt &x) { // R1033, R1034, R1038
if (asFortran_ && x.typedAssignment.get()) {
Put(' ');
asFortran_->assignment(out_, *x.typedAssignment);
Put('\n');
} else {
Walk(std::get<DataRef>(x.t));
common::visit(
common::visitors{
[&](const std::list<BoundsRemapping> &y) {
Put('('), Walk(y), Put(')');
},
[&](const std::list<BoundsSpec> &y) { Walk("(", y, ", ", ")"); },
},
std::get<PointerAssignmentStmt::Bounds>(x.t).u);
Put(" => "), Walk(std::get<Expr>(x.t));
}
}
void Post(const BoundsSpec &) { // R1035
Put(':');
}
void Unparse(const BoundsRemapping &x) { // R1036
Walk(x.t, ":");
}
void Unparse(const WhereStmt &x) { // R1041, R1045, R1046
Word("WHERE ("), Walk(x.t, ") ");
}
void Unparse(const WhereConstructStmt &x) { // R1043
Walk(std::get<std::optional<Name>>(x.t), ": ");
Word("WHERE ("), Walk(std::get<LogicalExpr>(x.t)), Put(')');
Indent();
}
void Unparse(const MaskedElsewhereStmt &x) { // R1047
Outdent();
Word("ELSEWHERE ("), Walk(std::get<LogicalExpr>(x.t)), Put(')');
Walk(" ", std::get<std::optional<Name>>(x.t));
Indent();
}
void Unparse(const ElsewhereStmt &x) { // R1048
Outdent(), Word("ELSEWHERE"), Walk(" ", x.v), Indent();
}
void Unparse(const EndWhereStmt &x) { // R1049
Outdent(), Word("END WHERE"), Walk(" ", x.v);
}
void Unparse(const ForallConstructStmt &x) { // R1051
Walk(std::get<std::optional<Name>>(x.t), ": ");
Word("FORALL"), Walk(std::get<common::Indirection<ConcurrentHeader>>(x.t));
Indent();
}
void Unparse(const EndForallStmt &x) { // R1054
Outdent(), Word("END FORALL"), Walk(" ", x.v);
}
void Before(const ForallStmt &) { // R1055
Word("FORALL");
}
void Unparse(const AssociateStmt &x) { // R1103
Walk(std::get<std::optional<Name>>(x.t), ": ");
Word("ASSOCIATE (");
Walk(std::get<std::list<Association>>(x.t), ", "), Put(')'), Indent();
}
void Unparse(const Association &x) { // R1104
Walk(x.t, " => ");
}
void Unparse(const EndAssociateStmt &x) { // R1106
Outdent(), Word("END ASSOCIATE"), Walk(" ", x.v);
}
void Unparse(const BlockStmt &x) { // R1108
Walk(x.v, ": "), Word("BLOCK"), Indent();
}
void Unparse(const EndBlockStmt &x) { // R1110
Outdent(), Word("END BLOCK"), Walk(" ", x.v);
}
void Unparse(const ChangeTeamStmt &x) { // R1112
Walk(std::get<std::optional<Name>>(x.t), ": ");
Word("CHANGE TEAM ("), Walk(std::get<TeamValue>(x.t));
Walk(", ", std::get<std::list<CoarrayAssociation>>(x.t), ", ");
Walk(", ", std::get<std::list<StatOrErrmsg>>(x.t), ", "), Put(')');
Indent();
}
void Unparse(const CoarrayAssociation &x) { // R1113
Walk(x.t, " => ");
}
void Unparse(const EndChangeTeamStmt &x) { // R1114
Outdent(), Word("END TEAM (");
Walk(std::get<std::list<StatOrErrmsg>>(x.t), ", ");
Put(')'), Walk(" ", std::get<std::optional<Name>>(x.t));
}
void Unparse(const CriticalStmt &x) { // R1117
Walk(std::get<std::optional<Name>>(x.t), ": ");
Word("CRITICAL ("), Walk(std::get<std::list<StatOrErrmsg>>(x.t), ", ");
Put(')'), Indent();
}