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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* macro_rules/parse.cpp
* - macro_rules! evaluation (expansion)
*/
#include <common.hpp>
#include "macro_rules.hpp"
#include <parse/parseerror.hpp>
#include <parse/tokentree.hpp>
#include <parse/common.hpp>
#include <limits.h>
#include "pattern_checks.hpp"
#include <parse/interpolated_fragment.hpp>
#include <ast/expr.hpp>
class ParameterMappings
{
/// A particular captured fragment
struct CapturedVal
{
unsigned int num_uses; // Number of times this var will be used
unsigned int num_used; // Number of times it has been used
InterpolatedFragment frag;
};
/// A single layer of the capture set
TAGGED_UNION(CaptureLayer, Vals,
(Vals, ::std::vector<CapturedVal>),
(Nested, ::std::vector<CaptureLayer>)
);
/// Represents the fragments captured for a name
struct CapturedVar
{
CaptureLayer top_layer;
friend ::std::ostream& operator<<(::std::ostream& os, const CapturedVar& x) {
os << "CapturedVar { top_layer: " << x.top_layer << " }";
return os;
}
};
::std::vector<CapturedVar> m_mappings;
unsigned m_layer_count;
public:
ParameterMappings():
m_layer_count(0)
{
}
ParameterMappings(ParameterMappings&&) = default;
const ::std::vector<CapturedVar>& mappings() const { return m_mappings; }
void dump() const {
DEBUG("m_mappings = {" << m_mappings << "}");
}
size_t layer_count() const {
return m_layer_count+1;
}
void insert(unsigned int name_index, const ::std::vector<unsigned int>& iterations, InterpolatedFragment data);
InterpolatedFragment* get(const ::std::vector<unsigned int>& iterations, unsigned int name_idx);
unsigned int count_in(const ::std::vector<unsigned int>& iterations, unsigned int name_idx) const;
/// Increment the number of times a particular fragment will be used
void inc_count(const ::std::vector<unsigned int>& iterations, unsigned int name_idx);
/// Decrement the number of times a particular fragment is used (returns true if there are still usages remaining)
bool dec_count(const ::std::vector<unsigned int>& iterations, unsigned int name_idx);
friend ::std::ostream& operator<<(::std::ostream& os, const CapturedVal& x) {
os << x.frag;
return os;
}
friend ::std::ostream& operator<<(::std::ostream& os, const CaptureLayer& x) {
TU_MATCH(CaptureLayer, (x), (e),
(Vals,
os << "[" << e << "]";
),
(Nested,
os << "{" << e << "}";
)
)
return os;
}
private:
CapturedVal& get_cap(const ::std::vector<unsigned int>& iterations, unsigned int name_idx);
};
/// Simple pattern entry for macro_rules! arm patterns
TAGGED_UNION( SimplePatEnt, End,
// End of the pattern stream
(End, struct{}),
// Expect a specific token
(ExpectTok, Token),
// Expect a pattern match
(ExpectPat, struct {
MacroPatEnt::Type type;
unsigned int idx;
}),
// Compare the head of the input stream and poke the pattern stream
(IfTok, struct {
bool is_equal;
Token tok;
}),
// Compare the head of the input stream and poke the pattern stream
(IfPat, struct {
bool is_equal;
MacroPatEnt::Type type;
})
);
class MacroPatternStream
{
const ::std::vector<MacroPatEnt>* m_pattern;
// Position in each nested pattern
::std::vector<unsigned int> m_pos;
// Iteration index of each active loop level
::std::vector<unsigned int> m_loop_iterations;
::std::vector<SimplePatEnt> m_stack;
unsigned int m_skip_count;
bool m_break_if_not = false;
bool m_condition_fired = false;
public:
MacroPatternStream(const ::std::vector<MacroPatEnt>& pattern):
m_pattern(&pattern),
m_pos({0})
{
}
/// Get the next pattern entry
SimplePatEnt next();
/// Inform the stream that the `if` rule that was just returned succeeded
void if_succeeded();
/// Get the current loop iteration count
const ::std::vector<unsigned int>& get_loop_iters() const {
return m_loop_iterations;
}
private:
SimplePatEnt emit_loop_start(const MacroPatEnt& pat);
SimplePatEnt emit_seq(SimplePatEnt v1, SimplePatEnt v2) {
assert( m_stack.empty() );
m_stack.push_back( mv$(v2) );
return v1;
}
void break_loop();
};
// === Prototypes ===
unsigned int Macro_InvokeRules_MatchPattern(const MacroRules& rules, TokenTree input, AST::Module& mod, ParameterMappings& bound_tts);
void Macro_InvokeRules_CountSubstUses(ParameterMappings& bound_tts, const ::std::vector<MacroExpansionEnt>& contents);
// ------------------------------------
// ParameterMappings
// ------------------------------------
void ParameterMappings::insert(unsigned int name_index, const ::std::vector<unsigned int>& iterations, InterpolatedFragment data)
{
DEBUG("index="<<name_index << ", iterations=[" << iterations << "], data="<<data);
if( name_index >= m_mappings.size() ) {
m_mappings.resize( name_index + 1 );
}
auto* layer = &m_mappings[name_index].top_layer;
if( iterations.size() > 0 )
{
for(unsigned int i = 0; i < iterations.size()-1; i ++ )
{
auto iter = iterations[i];
if( layer->is_Vals() ) {
assert( layer->as_Vals().size() == 0 );
*layer = CaptureLayer::make_Nested({});
}
auto& e = layer->as_Nested();
while( e.size() < iter ) {
DEBUG("- Skipped iteration " << e.size());
e.push_back( CaptureLayer::make_Nested({}) );
}
if(e.size() == iter) {
e.push_back( CaptureLayer::make_Vals({}) );
}
else {
if( e.size() > iter ) {
DEBUG("ERROR: Iterations ran backwards? - " << e.size() << " > " << iter);
}
}
layer = &e[iter];
}
ASSERT_BUG(Span(), layer->as_Vals().size() == iterations.back(), "Capture count mismatch with iteration index - iterations=[" << iterations << "]");
}
else {
assert(layer->as_Vals().size() == 0);
}
layer->as_Vals().push_back( CapturedVal { 0,0, mv$(data) } );
}
ParameterMappings::CapturedVal& ParameterMappings::get_cap(const ::std::vector<unsigned int>& iterations, unsigned int name_idx)
{
DEBUG("(iterations=[" << iterations << "], name_idx=" << name_idx << ")");
auto& e = m_mappings.at(name_idx);
//DEBUG("- e = " << e);
auto* layer = &e.top_layer;
// - If the top layer is a 1-sized set of values, unconditionally return it
TU_IFLET(CaptureLayer, (*layer), Vals, e,
if( e.size() == 1 ) {
return e[0];
}
if( e.size() == 0 ) {
BUG(Span(), "Attempting to get binding for empty capture - #" << name_idx);
}
)
for(const auto iter : iterations)
{
TU_MATCH(CaptureLayer, (*layer), (e),
(Vals,
ASSERT_BUG(Span(), iter < e.size(), "Iteration index " << iter << " outside of range " << e.size() << " (values)");
return e.at(iter);
),
(Nested,
ASSERT_BUG(Span(), iter < e.size(), "Iteration index " << iter << " outside of range " << e.size() << " (nest)");
layer = &e.at(iter);
)
)
}
ERROR(Span(), E0000, "Variable #" << name_idx << " is still repeating at this level (" << iterations.size() << ")");
}
InterpolatedFragment* ParameterMappings::get(const ::std::vector<unsigned int>& iterations, unsigned int name_idx)
{
return &get_cap(iterations, name_idx).frag;
}
unsigned int ParameterMappings::count_in(const ::std::vector<unsigned int>& iterations, unsigned int name_idx) const
{
DEBUG("(iterations=[" << iterations << "], name_idx=" << name_idx << ")");
if( name_idx >= m_mappings.size() ) {
DEBUG("- Missing");
return 0;
}
auto& e = m_mappings.at(name_idx);
if( e.top_layer.is_Vals() && e.top_layer.as_Vals().size() == 0 ) {
DEBUG("- Not populated");
return 0;
}
auto* layer = &e.top_layer;
for(const auto iter : iterations)
{
TU_MATCH(CaptureLayer, (*layer), (e),
(Vals,
// TODO: Returning zero here isn't correct, maybe 1 will be?
return 1;
),
(Nested,
if( iter >= e.size() ) {
DEBUG("Counting value for an iteration index it doesn't have - " << iter << " >= " << e.size());
return 0;
}
layer = &e[iter];
)
)
}
TU_MATCH(CaptureLayer, (*layer), (e),
(Vals,
return e.size();
),
(Nested,
return e.size();
)
)
return 0;
}
void ParameterMappings::inc_count(const ::std::vector<unsigned int>& iterations, unsigned int name_idx)
{
auto& cap = get_cap(iterations, name_idx);
assert(cap.num_used == 0);
cap.num_uses += 1;
}
bool ParameterMappings::dec_count(const ::std::vector<unsigned int>& iterations, unsigned int name_idx)
{
auto& cap = get_cap(iterations, name_idx);
assert(cap.num_used < cap.num_uses);
cap.num_used += 1;
return (cap.num_used < cap.num_uses);
}
// ------------------------------------
// MacroPatternStream
// ------------------------------------
SimplePatEnt MacroPatternStream::next()
{
TRACE_FUNCTION_F("m_pos=[" << m_pos << "], m_stack.size()=" << m_stack.size());
assert(m_pos.size() >= 1);
// Pop off the generation stack
if( ! m_stack.empty() ) {
auto rv = mv$(m_stack.back());
m_stack.pop_back();
return rv;
}
if( m_break_if_not && ! m_condition_fired ) {
// Break out of the current loop then continue downwards.
break_loop();
}
m_skip_count = 0;
m_break_if_not = false;
m_condition_fired = false;
const MacroPatEnt* parent_pat = nullptr;
decltype(m_pattern) parent_ents = nullptr;
const auto* ents = m_pattern;
for(unsigned int i = 0; i < m_pos.size() - 1; i ++)
{
auto idx = m_pos[i];
//DEBUG(i << " idx=" << idx << " ents->size()=" << ents->size());
assert( idx < ents->size() );
assert( (*ents)[idx].type == MacroPatEnt::PAT_LOOP );
parent_pat = &(*ents)[idx];
parent_ents = ents;
ents = &parent_pat->subpats;
}
DEBUG( (m_pos.size()-1) << " " << m_pos.back() << " / " << ents->size());
if( m_pos.back() < ents->size() )
{
const auto& pat = ents->at( m_pos.back() );
if( pat.type == MacroPatEnt::PAT_LOOP ) {
DEBUG("Enter " << pat);
// Increase level, return entry control
m_pos.push_back( 0 );
m_loop_iterations.push_back( 0 );
if( pat.name == "*" )
{
return emit_loop_start(pat);
}
else
{
// If the name is "+" then this is should always be entered, so just recurse
assert( pat.name == "+" );
return next();
}
}
else if( pat.type == MacroPatEnt::PAT_TOKEN ) {
m_pos.back() += 1;
return SimplePatEnt::make_ExpectTok( pat.tok.clone() );
}
else {
m_pos.back() += 1;
return SimplePatEnt::make_ExpectPat({ pat.type, pat.name_index });
}
}
else
{
if( parent_pat )
{
// Last entry in a loop - return the breakout control
// - Reset the loop back to the start
m_pos.back() = 0;
m_loop_iterations.back() += 1;
// - Emit break conditions
if( parent_pat->tok == TOK_NULL ) {
// Loop separator is TOK_NULL - get the first token of the loop and use it.
// - This shares the code that controls if a loop is entered
DEBUG("No separator");
return emit_loop_start(*parent_pat);
}
else {
// If the next token is the same as the separator emit: Expect(separator), ShouldEnter
auto i = m_pos[ m_pos.size() - 2 ] + 1;
if( i < parent_ents->size() )
{
DEBUG("sep = " << parent_pat->tok << ", next = " << parent_ents->at(i) << ", start = " << ents->at(0));
if( parent_ents->at(i).type == MacroPatEnt::PAT_TOKEN && parent_pat->tok == parent_ents->at(i).tok )
{
DEBUG("MAGIC: Reverse conditions for case where sep==next");
// > Mark to skip the next token after the end of the loop
m_skip_count = 1;
// - Yeild `EXPECT sep` then the entry condition of this loop
auto pat = emit_loop_start(*parent_pat);
m_stack.push_back( mv$(pat) );
return SimplePatEnt::make_ExpectTok( parent_pat->tok.clone() );
}
}
// - Yeild `IF NOT sep BREAK` and `EXPECT sep`
DEBUG("Separator = " << parent_pat->tok);
return emit_seq(
SimplePatEnt::make_IfTok({ false, parent_pat->tok.clone() }),
SimplePatEnt::make_ExpectTok( parent_pat->tok.clone() )
);
}
}
else
{
// End of the input sequence
return SimplePatEnt::make_End({});
}
}
}
namespace {
void get_loop_entry_pats(const MacroPatEnt& pat, ::std::vector<const MacroPatEnt*>& entry_pats)
{
assert( pat.type == MacroPatEnt::PAT_LOOP );
// If this pattern is a loop, get the entry concrete patterns for it
// - Otherwise, just
unsigned int i = 0;
while( i < pat.subpats.size() && pat.subpats[i].type == MacroPatEnt::PAT_LOOP )
{
const auto& cur_pat = pat.subpats[i];
bool is_optional = (cur_pat.name == "*");
get_loop_entry_pats(cur_pat, entry_pats);
if( !is_optional )
{
// Non-optional loop, MUST be entered, so return after recursing
return ;
}
// Optional, so continue the loop.
i ++;
}
// First non-loop pattern
if( i < pat.subpats.size() )
{
entry_pats.push_back( &pat.subpats[i] );
}
}
} // namespace
/// Returns (and primes m_stack) the rules to control the start of a loop
/// This code emits rules to break out of the loop if the entry conditions are not met
SimplePatEnt MacroPatternStream::emit_loop_start(const MacroPatEnt& pat)
{
// Find the next non-loop pattern to control if this loop should be entered
::std::vector<const MacroPatEnt*> m_entry_pats;
get_loop_entry_pats(pat, m_entry_pats);
DEBUG("m_entry_pats = [" << FMT_CB(ss, for(const auto* p : m_entry_pats) { ss << *p << ","; }) << "]");
struct H {
static SimplePatEnt get_if(bool flag, const MacroPatEnt& mpe) {
if( mpe.type == MacroPatEnt::PAT_TOKEN )
return SimplePatEnt::make_IfTok({ flag, mpe.tok.clone() });
else
return SimplePatEnt::make_IfPat({ flag, mpe.type });
}
};
const auto* entry_pat = m_entry_pats.back();
m_entry_pats.pop_back();
if( m_entry_pats.size() > 0 )
{
DEBUG("Multiple entry possibilities, reversing condition");
m_break_if_not = true;
for(auto pat_ptr : m_entry_pats)
{
m_stack.push_back( H::get_if(true, *pat_ptr) );
}
return H::get_if(true, *entry_pat);
}
else
{
// Emit an if based on it
return H::get_if(false, *entry_pat);
}
}
void MacroPatternStream::if_succeeded()
{
if( m_break_if_not )
{
m_condition_fired = true;
}
else
{
break_loop();
}
}
void MacroPatternStream::break_loop()
{
DEBUG("- Break out of loop, m_skip_count = " << m_skip_count);
// Break out of an active loop (pop level and increment parent level)
assert( m_pos.size() >= 1 );
// - This should never be called when on the top level
assert( m_pos.size() != 1 );
// HACK: Clear the stack if an if succeeded
m_stack.clear();
m_pos.pop_back();
m_pos.back() += 1 + m_skip_count;
m_loop_iterations.pop_back();
}
// ----------------------------------------------------------------
/// State for MacroExpander and Macro_InvokeRules_CountSubstUses
class MacroExpandState
{
const ::std::vector<MacroExpansionEnt>& m_root_contents;
const ParameterMappings& m_mappings;
struct t_offset {
unsigned read_pos;
unsigned loop_index;
unsigned max_index;
};
/// Layer states : Index and Iteration
::std::vector< t_offset > m_offsets;
::std::vector< unsigned int> m_iterations;
/// Cached pointer to the current layer
const ::std::vector<MacroExpansionEnt>* m_cur_ents; // For faster lookup.
public:
MacroExpandState(const ::std::vector<MacroExpansionEnt>& contents, const ParameterMappings& mappings):
m_root_contents(contents),
m_mappings(mappings),
m_offsets({ {0,0,0} }),
m_cur_ents(&m_root_contents)
{
}
// Returns a pointer to the next entry to expand, or nullptr if the end is reached
// - NOTE: When a Loop entry is returned, the separator token should be emitted
const MacroExpansionEnt* next_ent();
const ::std::vector<unsigned int> iterations() const { return m_iterations; }
unsigned int top_pos() const { return m_offsets[0].read_pos; }
private:
const MacroExpansionEnt& getCurLayerEnt() const;
const ::std::vector<MacroExpansionEnt>* getCurLayer() const;
};
// ----------------------------------------------------------------
class MacroExpander:
public TokenStream
{
const RcString m_macro_filename;
const ::std::string m_crate_name;
ParameterMappings m_mappings;
MacroExpandState m_state;
Token m_next_token; // used for inserting a single token into the stream
::std::unique_ptr<TTStreamO> m_ttstream;
Ident::Hygiene m_hygiene;
public:
MacroExpander(const MacroExpander& x) = delete;
MacroExpander(const ::std::string& macro_name, const ::std::vector<MacroExpansionEnt>& contents, ParameterMappings mappings, ::std::string crate_name):
m_macro_filename( FMT("Macro:" << macro_name) ),
m_crate_name( mv$(crate_name) ),
m_mappings( mv$(mappings) ),
m_state( contents, m_mappings ),
m_hygiene( Ident::Hygiene::new_scope() )
{
}
Position getPosition() const override;
Ident::Hygiene getHygiene() const override;
Token realGetToken() override;
};
void Macro_InitDefaults()
{
}
namespace {
bool is_reserved_word(eTokenType tok)
{
return tok >= TOK_RWORD_PUB;
}
}
bool Macro_TryPatternCap(TokenStream& lex, MacroPatEnt::Type type)
{
switch(type)
{
case MacroPatEnt::PAT_TOKEN:
BUG(lex.getPosition(), "");
case MacroPatEnt::PAT_LOOP:
BUG(lex.getPosition(), "");
case MacroPatEnt::PAT_BLOCK:
return LOOK_AHEAD(lex) == TOK_BRACE_OPEN || LOOK_AHEAD(lex) == TOK_INTERPOLATED_BLOCK;
case MacroPatEnt::PAT_IDENT:
return LOOK_AHEAD(lex) == TOK_IDENT || is_reserved_word(LOOK_AHEAD(lex));
case MacroPatEnt::PAT_TT:
switch(LOOK_AHEAD(lex))
{
case TOK_EOF:
case TOK_PAREN_CLOSE:
case TOK_BRACE_CLOSE:
case TOK_SQUARE_CLOSE:
return false;
default:
return true;
}
case MacroPatEnt::PAT_PATH:
return is_token_path( LOOK_AHEAD(lex) );
case MacroPatEnt::PAT_TYPE:
return is_token_type( LOOK_AHEAD(lex) );
case MacroPatEnt::PAT_EXPR:
return is_token_expr( LOOK_AHEAD(lex) );
case MacroPatEnt::PAT_STMT:
return is_token_stmt( LOOK_AHEAD(lex) );
case MacroPatEnt::PAT_PAT:
return is_token_pat( LOOK_AHEAD(lex) );
case MacroPatEnt::PAT_META:
return LOOK_AHEAD(lex) == TOK_IDENT || LOOK_AHEAD(lex) == TOK_INTERPOLATED_META;
case MacroPatEnt::PAT_ITEM:
return is_token_item( LOOK_AHEAD(lex) );
}
BUG(lex.getPosition(), "");
}
bool Macro_TryPattern(TokenStream& lex, const MacroPatEnt& pat)
{
DEBUG("pat = " << pat);
Token tok;
switch(pat.type)
{
case MacroPatEnt::PAT_TOKEN: {
GET_TOK(tok, lex);
bool rv = (tok == pat.tok);
PUTBACK(tok, lex);
return rv;
}
case MacroPatEnt::PAT_LOOP:
if( pat.name == "*" )
return true;
return Macro_TryPattern(lex, pat.subpats[0]);
default:
return Macro_TryPatternCap(lex, pat.type);
}
}
void Macro_HandlePatternCap(TokenStream& lex, unsigned int index, MacroPatEnt::Type type, const ::std::vector<unsigned int>& iterations, ParameterMappings& bound_tts)
{
Token tok;
switch(type)
{
case MacroPatEnt::PAT_TOKEN:
BUG(lex.getPosition(), "");
case MacroPatEnt::PAT_LOOP:
BUG(lex.getPosition(), "");
case MacroPatEnt::PAT_TT:
DEBUG("TT");
if( GET_TOK(tok, lex) == TOK_EOF )
throw ParseError::Unexpected(lex, TOK_EOF);
else
PUTBACK(tok, lex);
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_TT(lex, false) ) );
break;
case MacroPatEnt::PAT_PAT:
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_Pattern(lex, true) ) );
break;
case MacroPatEnt::PAT_TYPE:
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_Type(lex) ) );
break;
case MacroPatEnt::PAT_EXPR:
bound_tts.insert( index, iterations, InterpolatedFragment( InterpolatedFragment::EXPR, Parse_Expr0(lex).release() ) );
break;
case MacroPatEnt::PAT_STMT:
bound_tts.insert( index, iterations, InterpolatedFragment( InterpolatedFragment::STMT, Parse_Stmt(lex).release() ) );
break;
case MacroPatEnt::PAT_PATH:
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_Path(lex, PATH_GENERIC_TYPE) ) ); // non-expr mode
break;
case MacroPatEnt::PAT_BLOCK:
bound_tts.insert( index, iterations, InterpolatedFragment( InterpolatedFragment::BLOCK, Parse_ExprBlockNode(lex).release() ) );
break;
case MacroPatEnt::PAT_META:
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_MetaItem(lex) ) );
break;
case MacroPatEnt::PAT_ITEM: {
assert( lex.parse_state().module );
const auto& cur_mod = *lex.parse_state().module;
bound_tts.insert( index, iterations, InterpolatedFragment( Parse_Mod_Item_S(lex, cur_mod.m_file_info, cur_mod.path(), AST::MetaItems{}) ) );
} break;
case MacroPatEnt::PAT_IDENT:
// TODO: Any reserved word is also valid as an ident
GET_TOK(tok, lex);
if( tok.type() == TOK_IDENT || is_reserved_word(tok.type()) )
;
else
CHECK_TOK(tok, TOK_IDENT);
bound_tts.insert( index, iterations, InterpolatedFragment( TokenTree(tok) ) );
break;
}
}
bool Macro_HandlePattern(TokenStream& lex, const MacroPatEnt& pat, ::std::vector<unsigned int>& iterations, ParameterMappings& bound_tts)
{
TRACE_FUNCTION_F("iterations = " << iterations);
Token tok;
switch(pat.type)
{
case MacroPatEnt::PAT_TOKEN:
DEBUG("Token " << pat.tok);
GET_CHECK_TOK(tok, lex, pat.tok.type());
break;
case MacroPatEnt::PAT_LOOP:
//case MacroPatEnt::PAT_OPTLOOP:
{
unsigned int match_count = 0;
DEBUG("Loop");
iterations.push_back(0);
for(;;)
{
if( ! Macro_TryPattern(lex, pat.subpats[0]) )
{
DEBUG("break");
break;
}
for( unsigned int i = 0; i < pat.subpats.size(); i ++ )
{
if( !Macro_HandlePattern(lex, pat.subpats[i], iterations, bound_tts) ) {
DEBUG("Ent " << i << " failed");
return false;
}
}
match_count += 1;
iterations.back() += 1;
DEBUG("succ");
if( pat.tok.type() != TOK_NULL )
{
if( GET_TOK(tok, lex) != pat.tok.type() )
{
lex.putback( mv$(tok) );
break;
}
}
}
iterations.pop_back();
DEBUG("Done (" << match_count << " matches)");
break; }
default:
Macro_HandlePatternCap(lex, pat.name_index, pat.type, iterations, bound_tts);
break;
}
return true;
}
/// Parse the input TokenTree according to the `macro_rules!` patterns and return a token stream of the replacement
::std::unique_ptr<TokenStream> Macro_InvokeRules(const char *name, const MacroRules& rules, TokenTree input, AST::Module& mod)
{
TRACE_FUNCTION_F("'" << name << "', " << input);
ParameterMappings bound_tts;
unsigned int rule_index = Macro_InvokeRules_MatchPattern(rules, mv$(input), mod, bound_tts);
const auto& rule = rules.m_rules.at(rule_index);
DEBUG( rule.m_contents.size() << " rule contents with " << bound_tts.mappings().size() << " bound values - " << name );
for( unsigned int i = 0; i < ::std::min( bound_tts.mappings().size(), rule.m_param_names.size() ); i ++ )
{
DEBUG("- #" << i << " " << rule.m_param_names.at(i) << " = [" << bound_tts.mappings()[i] << "]");
}
//bound_tts.dump();
// Run through the expansion counting the number of times each fragment is used
Macro_InvokeRules_CountSubstUses(bound_tts, rule.m_contents);
TokenStream* ret_ptr = new MacroExpander(name, rule.m_contents, mv$(bound_tts), rules.m_source_crate);
return ::std::unique_ptr<TokenStream>( ret_ptr );
}
unsigned int Macro_InvokeRules_MatchPattern(const MacroRules& rules, TokenTree input, AST::Module& mod, ParameterMappings& bound_tts)
{
TRACE_FUNCTION;
Span sp;// = input.span();
// - List of active rules (rules that haven't yet failed)
::std::vector< ::std::pair<unsigned, MacroPatternStream> > active_arms;
active_arms.reserve( rules.m_rules.size() );
for(unsigned int i = 0; i < rules.m_rules.size(); i ++)
{
active_arms.push_back( ::std::make_pair(i, MacroPatternStream(rules.m_rules[i].m_pattern)) );
}
TTStreamO lex( mv$(input) );
SET_MODULE(lex, mod);
while(true)
{
DEBUG("--- ---");
// 1. Get concrete patterns for all active rules (i.e. no If* patterns)
::std::vector<SimplePatEnt> arm_pats;
for(auto& arm : active_arms)
{
auto idx = arm.first;
SimplePatEnt pat;
// Consume all If* rules
do
{
pat = arm.second.next();
TU_IFLET( SimplePatEnt, pat, IfPat, e,
DEBUG(idx << " IfPat(" << (e.is_equal ? "==" : "!=") << " ?" << e.type << ")");
if( Macro_TryPatternCap(lex, e.type) == e.is_equal )
{
DEBUG("- Succeeded");
arm.second.if_succeeded();
}
)
else TU_IFLET( SimplePatEnt, pat, IfTok, e,
DEBUG(idx << " IfTok(" << (e.is_equal ? "==" : "!=") << " ?" << e.tok << ")");
auto tok = lex.getToken();
if( (tok == e.tok) == e.is_equal )
{
DEBUG("- Succeeded");
arm.second.if_succeeded();
}
lex.putback( mv$(tok) );
)
else {
break;
}
} while( pat.is_IfPat() || pat.is_IfTok() );
TU_MATCH( SimplePatEnt, (pat), (e),
(IfPat, BUG(sp, "IfTok unexpected here");),
(IfTok, BUG(sp, "IfTok unexpected here");),
(ExpectTok,
DEBUG(idx << " ExpectTok(" << e << ")");
),
(ExpectPat,
DEBUG(idx << " ExpectPat(" << e.type << " => $" << e.idx << ")");
),
(End,
DEBUG(idx << " End");
)
)
arm_pats.push_back( mv$(pat) );
}
assert( arm_pats.size() == active_arms.size() );
// 2. Prune imposible arms
for(unsigned int i = 0, j = 0; i < arm_pats.size(); )
{
auto idx = active_arms[i].first;
const auto& pat = arm_pats[i];
bool fail = false;
TU_MATCH( SimplePatEnt, (pat), (e),
(IfPat, BUG(sp, "IfTok unexpected here");),
(IfTok, BUG(sp, "IfTok unexpected here");),
(ExpectTok,
auto tok = lex.getToken();
DEBUG(j<<"="<<idx << " ExpectTok(" << e << ") == " << tok);
fail = !(tok == e);
lex.putback( mv$(tok) );
),
(ExpectPat,
DEBUG(j<<"="<<idx << " ExpectPat(" << e.type << " => $" << e.idx << ")");
fail = !Macro_TryPatternCap(lex, e.type);
),
(End,
DEBUG(j<<"="<<idx << " End");
fail = !(lex.lookahead(0) == TOK_EOF);
)
)
if( fail ) {
DEBUG("- Failed arm " << active_arms[i].first);
arm_pats.erase( arm_pats.begin() + i );
active_arms.erase( active_arms.begin() + i );
}
else {
i ++;
}
j ++;
}
if( arm_pats.size() == 0 ) {
auto tok = lex.getToken();
ERROR(tok.get_pos(), E0000, "No rules expected " << tok);
}
// 3. If there is a token pattern in the list, take that arm (and any other token arms)
const SimplePatEnt* tok_pat = nullptr;
for( const auto& pat : arm_pats )
{
TU_IFLET(SimplePatEnt, pat, ExpectTok, e,
if( tok_pat ) {
if( e != tok_pat->as_ExpectTok() )
ERROR(lex.getPosition(), E0000, "Incompatible macro arms - " << tok_pat->as_ExpectTok() << " vs " << e);
}
else {
tok_pat = &pat;
}
)
}
if( tok_pat )
{
auto tok = lex.getToken();
const auto& e = tok_pat->as_ExpectTok();
// NOTE: This should never fail.
if( tok != e ) {
ERROR(lex.getPosition(), E0000, "Unexpected " << tok << ", expected " << e);
}
}
else
{
// 3. Check that all remaining arms are the same pattern.
const auto& active_pat = arm_pats[0];
for(unsigned int i = 1; i < arm_pats.size(); i ++)
{
if( active_pat.tag() != arm_pats[i].tag() ) {
ERROR(lex.getPosition(), E0000, "Incompatible macro arms "
<< "- " << active_arms[0].first << " SimplePatEnt::" << active_pat.tag_str()
<< " vs " << active_arms[i].first << " SimplePatEnt::" << arm_pats[i].tag_str()
);
}
TU_MATCH( SimplePatEnt, (active_pat, arm_pats[i]), (e1, e2),
(IfPat, BUG(sp, "IfPat unexpected here");),
(IfTok, BUG(sp, "IfTok unexpected here");),
(ExpectTok,
BUG(sp, "ExpectTok unexpected here");
),
(ExpectPat,
// Can fail, as :expr and :stmt overlap in their trigger set
if( e1.type != e2.type ) {
ERROR(lex.getPosition(), E0000, "Incompatible macro arms - mismatched patterns");
}
if( e1.idx != e2.idx ) {
ERROR(lex.getPosition(), E0000, "Incompatible macro arms - mismatched pattern bindings " << e1.idx << " and " << e2.idx);
}
),
(End,
)
)
}
// 4. Apply patterns.
TU_MATCH( SimplePatEnt, (arm_pats[0]), (e),
(End,
auto tok = lex.getToken();
if( tok.type() != TOK_EOF ) {
ERROR(lex.getPosition(), E0000, "Unexpected " << tok << ", expected TOK_EOF");
}
// NOTE: There can be multiple arms active, take the first.
return active_arms[0].first;
),
(IfPat, BUG(sp, "IfPat unexpected here");),
(IfTok, BUG(sp, "IfTok unexpected here");),
(ExpectTok,
),
(ExpectPat,
struct H {
static bool is_prefix(const ::std::vector<unsigned>& needle, const ::std::vector<unsigned>& haystack) {
if( needle.size() > haystack.size() ) {
return false;
}
else {
for(unsigned int i = 0; i < needle.size(); i ++) {
if(needle[i] != haystack[i])
return false;
}
return true;
}
}
};
// Use the shortest (and ensure that it's a prefix to the others) and let the capture code move caps around when needed
const auto* longest = &active_arms[0].second.get_loop_iters();
const auto* shortest = longest;
for( unsigned int i = 1; i < active_arms.size(); i ++ ) {
const auto& iters2 = active_arms[i].second.get_loop_iters();
// If this arm has a deeper tree,
if( iters2.size() > longest->size() ) {
// The existing longest must be a prefix to this
if( !H::is_prefix(*longest, iters2) ) {
TODO(sp, "Handle ExpectPat where iteration counts aren't prefixes - [" << *longest << "] vs [" << iters2 << "]");
}
longest = &iters2;
}
else {
// Keep track of the shortest
if( iters2.size() < shortest->size() ) {
shortest = &iters2;
}
// This must be a prefix to the longest
if( !H::is_prefix(iters2, *longest) ) {
TODO(sp, "Handle ExpectPat where iteration counts aren't prefixes - [" << *longest << "] vs [" << iters2 << "]");
}
}
}
// Use the shallowest iteration state
// TODO: All other should be on the first iteration.
Macro_HandlePatternCap(lex, e.idx, e.type, *shortest, bound_tts);
)
)
}
// Keep looping - breakout is handled in 'End' above
}
}
void Macro_InvokeRules_CountSubstUses(ParameterMappings& bound_tts, const ::std::vector<MacroExpansionEnt>& contents)
{
TRACE_FUNCTION;
MacroExpandState state(contents, bound_tts);
while(const auto* ent_ptr = state.next_ent())
{
DEBUG(*ent_ptr);
TU_IFLET(MacroExpansionEnt, (*ent_ptr), NamedValue, e,
if( e >> 30 ) {
}
else {
// Increment a counter in `bound_tts`
bound_tts.inc_count(state.iterations(), e);
}
)
}
}
Position MacroExpander::getPosition() const
{
// TODO: Return a far better span - invocaion location?
return Position(m_macro_filename, 0, m_state.top_pos());
}
Ident::Hygiene MacroExpander::getHygiene() const
{
if( m_ttstream )
{
return m_ttstream->getHygiene();
}
else
{
return m_hygiene;
}
}
Token MacroExpander::realGetToken()
{
// Use m_next_token first
if( m_next_token.type() != TOK_NULL )
{
DEBUG("m_next_token = " << m_next_token);
return mv$(m_next_token);
}
// Then try m_ttstream
if( m_ttstream.get() )
{
DEBUG("TTStream present");
Token rv = m_ttstream->getToken();
if( rv.type() != TOK_EOF )
return rv;
m_ttstream.reset();
}
// Loop to handle case where $crate expands to nothing
while( const auto* next_ent_ptr = m_state.next_ent() )
{
const auto& ent = *next_ent_ptr;
TU_IFLET(MacroExpansionEnt, ent, Token, e,
return e;
)
else if( ent.is_NamedValue() ) {
const auto& e = ent.as_NamedValue();
if( e >> 30 ) {
switch( e & 0x3FFFFFFF )
{
// - XXX: Hack for $crate special name
case 0:
DEBUG("Crate name hack");
if( m_crate_name != "" )
{
m_next_token = Token(TOK_STRING, m_crate_name);
return Token(TOK_DOUBLE_COLON);
}
break;
default:
BUG(Span(), "Unknown macro metavar");
}
}
else {
auto* frag = m_mappings.get(m_state.iterations(), e);
ASSERT_BUG(this->getPosition(), frag, "Cannot find '" << e << "' for " << m_state.iterations());
bool can_steal = ( m_mappings.dec_count(m_state.iterations(), e) == false );
DEBUG("Insert replacement #" << e << " = " << *frag);
if( frag->m_type == InterpolatedFragment::TT )
{
if( can_steal )
{
m_ttstream.reset( new TTStreamO( mv$(frag->as_tt()) ) );
}
else
{
m_ttstream.reset( new TTStreamO( frag->as_tt().clone() ) );
}
return m_ttstream->getToken();
}
else
{
if( can_steal )
{
return Token(Token::TagTakeIP(), mv$(*frag) );
}
else
{
// Clones
return Token( *frag );
}
}
}
}
else TU_IFLET(MacroExpansionEnt, ent, Loop, e,
//assert( e.joiner.tok() != TOK_NULL );
return e.joiner;
)
else {
throw "";
}
}
DEBUG("EOF");
return Token(TOK_EOF);
}
const MacroExpansionEnt* MacroExpandState::next_ent()
{
//DEBUG("ofs " << m_offsets << " < " << m_root_contents.size());
// Check offset of lowest layer
while(m_offsets.size() > 0)
{
unsigned int layer = m_offsets.size() - 1;
const auto& ents = *m_cur_ents;
// Obtain current read position in layer, and increment
size_t idx = m_offsets.back().read_pos++;
// Check if limit has been reached
if( idx < ents.size() )
{
// - If not, just handle the next entry
const auto& ent = ents[idx];
TU_MATCH( MacroExpansionEnt, (ent), (e),
(Token,
return &ent;
),
(NamedValue,
return &ent;
),
(Loop,
// 1. Get number of times this will repeat (based on the next iteration count)
unsigned int num_repeats = 0;
for(const auto& var : e.variables)
{
unsigned int this_repeats = m_mappings.count_in(m_iterations, var.first);
DEBUG("= " << this_repeats);
// If a variable doesn't have data and it's a required controller, don't loop
if( this_repeats == 0 && var.second ) {
num_repeats = 0;
break;
}
// TODO: Ideally, all variables would have the same repeat count.
// Options: 0 (optional), 1 (higher), N (all equal)
if( this_repeats > num_repeats )
num_repeats = this_repeats;
}
DEBUG("Looping " << num_repeats << " times based on {" << e.variables << "}");
// 2. If it's going to repeat, start the loop
if( num_repeats > 0 )
{
m_offsets.push_back( {0, 0, num_repeats} );
m_iterations.push_back( 0 );
m_cur_ents = getCurLayer();
}
)
)
// Fall through for loop
}
else if( layer > 0 )
{
// - Otherwise, restart/end loop and fall through
DEBUG("layer = " << layer << ", m_iterations = " << m_iterations);
auto& cur_ofs = m_offsets.back();
DEBUG("Layer #" << layer << " Cur: " << cur_ofs.loop_index << ", Max: " << cur_ofs.max_index);
if( cur_ofs.loop_index + 1 < cur_ofs.max_index )
{
m_iterations.back() ++;
DEBUG("Restart layer");
cur_ofs.read_pos = 0;
cur_ofs.loop_index ++;
auto& loop_layer = getCurLayerEnt();
if( loop_layer.as_Loop().joiner.type() != TOK_NULL ) {
DEBUG("- Separator token = " << loop_layer.as_Loop().joiner);
return &loop_layer;
}
// Fall through and restart layer
}
else
{
DEBUG("Terminate layer");
// Terminate loop, fall through to lower layers
m_offsets.pop_back();
m_iterations.pop_back();
// - Special case: End of macro, avoid issues
if( m_offsets.size() == 0 )
break;
m_cur_ents = getCurLayer();
}
}
else
{
DEBUG("Terminate evaluation");
m_offsets.pop_back();
assert( m_offsets.size() == 0 );
}
} // while( m_offsets NONEMPTY )
return nullptr;
}
const MacroExpansionEnt& MacroExpandState::getCurLayerEnt() const
{
assert( m_offsets.size() > 1 );
const auto* ents = &m_root_contents;
for( unsigned int i = 0; i < m_offsets.size()-2; i ++ )
{
unsigned int ofs = m_offsets[i].read_pos;
assert( ofs > 0 && ofs <= ents->size() );
ents = &(*ents)[ofs-1].as_Loop().entries;
}
return (*ents)[m_offsets[m_offsets.size()-2].read_pos-1];
}
const ::std::vector<MacroExpansionEnt>* MacroExpandState::getCurLayer() const
{
assert( m_offsets.size() > 0 );
const auto* ents = &m_root_contents;
for( unsigned int i = 0; i < m_offsets.size()-1; i ++ )
{
unsigned int ofs = m_offsets[i].read_pos;
//DEBUG(i << " ofs=" << ofs << " / " << ents->size());
assert( ofs > 0 && ofs <= ents->size() );
ents = &(*ents)[ofs-1].as_Loop().entries;
//DEBUG("ents = " << ents);
}
return ents;
}
|