@@ -1498,6 +1498,24 @@ void InstructForm::output(FILE *fp) {
1498
1498
if (_peephole) _peephole->output (fp);
1499
1499
}
1500
1500
1501
+ void InstructForm::forms_do (FormClosure *f) {
1502
+ if (_cisc_spill_alternate) f->do_form (_cisc_spill_alternate);
1503
+ if (_short_branch_form) f->do_form (_short_branch_form);
1504
+ _localNames.forms_do (f);
1505
+ if (_matrule) f->do_form (_matrule);
1506
+ if (_opcode) f->do_form (_opcode);
1507
+ if (_insencode) f->do_form (_insencode);
1508
+ if (_constant) f->do_form (_constant);
1509
+ if (_attribs) f->do_form (_attribs);
1510
+ if (_predicate) f->do_form (_predicate);
1511
+ _effects.forms_do (f);
1512
+ if (_exprule) f->do_form (_exprule);
1513
+ if (_rewrule) f->do_form (_rewrule);
1514
+ if (_format) f->do_form (_format);
1515
+ if (_peephole) f->do_form (_peephole);
1516
+ assert (_components.count () == 0 , " skip components" );
1517
+ }
1518
+
1501
1519
void MachNodeForm::dump () {
1502
1520
output (stderr);
1503
1521
}
@@ -1615,6 +1633,14 @@ void EncodeForm::output(FILE *fp) { // Write info to output files
1615
1633
}
1616
1634
fprintf (fp," -------------------- end EncodeForm --------------------\n " );
1617
1635
}
1636
+
1637
+ void EncodeForm::forms_do (FormClosure* f) {
1638
+ const char *name;
1639
+ for (_eclasses.reset (); (name = _eclasses.iter ()) != nullptr ;) {
1640
+ f->do_form ((EncClass*)_encClass[name]);
1641
+ }
1642
+ }
1643
+
1618
1644
// ------------------------------EncClass---------------------------------------
1619
1645
EncClass::EncClass (const char *name)
1620
1646
: _localNames(cmpstr,hashstr, Form::arena), _name(name) {
@@ -1705,6 +1731,15 @@ void EncClass::output(FILE *fp) {
1705
1731
1706
1732
}
1707
1733
1734
+ void EncClass::forms_do (FormClosure *f) {
1735
+ _parameter_type.reset ();
1736
+ const char *type = _parameter_type.iter ();
1737
+ for ( ; type != nullptr ; type = _parameter_type.iter () ) {
1738
+ f->do_form_by_name (type);
1739
+ }
1740
+ _localNames.forms_do (f);
1741
+ }
1742
+
1708
1743
// ------------------------------Opcode-----------------------------------------
1709
1744
Opcode::Opcode (char *primary, char *secondary, char *tertiary)
1710
1745
: _primary(primary), _secondary(secondary), _tertiary(tertiary) {
@@ -1835,6 +1870,15 @@ void InsEncode::output(FILE *fp) {
1835
1870
fprintf (fp," \n " );
1836
1871
}
1837
1872
1873
+ void InsEncode::forms_do (FormClosure *f) {
1874
+ _encoding.reset ();
1875
+ NameAndList *encoding = (NameAndList*)_encoding.iter ();
1876
+ for ( ; encoding != nullptr ; encoding = (NameAndList*)_encoding.iter () ) {
1877
+ // just check name, other operands will be checked as instruction parameters
1878
+ f->do_form_by_name (encoding->name ());
1879
+ }
1880
+ }
1881
+
1838
1882
// ------------------------------Effect-----------------------------------------
1839
1883
static int effect_lookup (const char *name) {
1840
1884
if (!strcmp (name, " USE" )) return Component::USE;
@@ -1968,6 +2012,19 @@ void ExpandRule::output(FILE *fp) { // Write info to output files
1968
2012
}
1969
2013
}
1970
2014
2015
+ void ExpandRule::forms_do (FormClosure *f) {
2016
+ NameAndList *expand_instr = nullptr ;
2017
+ // Iterate over the instructions 'node' expands into
2018
+ for (reset_instructions (); (expand_instr = iter_instructions ()) != nullptr ; ) {
2019
+ f->do_form_by_name (expand_instr->name ());
2020
+ }
2021
+ _newopers.reset ();
2022
+ const char * oper = _newopers.iter ();
2023
+ for (; oper != nullptr ; oper = _newopers.iter ()) {
2024
+ f->do_form_by_name (oper);
2025
+ }
2026
+ }
2027
+
1971
2028
// ------------------------------RewriteRule------------------------------------
1972
2029
RewriteRule::RewriteRule (char * params, char * block)
1973
2030
: _tempParams(params), _tempBlock(block) { }; // Constructor
@@ -1984,6 +2041,12 @@ void RewriteRule::output(FILE *fp) { // Write info to output files
1984
2041
(_tempBlock?_tempBlock:" " ));
1985
2042
}
1986
2043
2044
+ void RewriteRule::forms_do (FormClosure *f) {
2045
+ if (_condition) f->do_form (_condition);
2046
+ if (_instrs) f->do_form (_instrs);
2047
+ if (_opers) f->do_form (_opers);
2048
+ }
2049
+
1987
2050
1988
2051
// ==============================MachNodes======================================
1989
2052
// ------------------------------MachNodeForm-----------------------------------
@@ -2066,6 +2129,13 @@ void OpClassForm::output(FILE *fp) {
2066
2129
fprintf (fp," \n " );
2067
2130
}
2068
2131
2132
+ void OpClassForm::forms_do (FormClosure* f) {
2133
+ const char *name;
2134
+ for (_oplst.reset (); (name = _oplst.iter ()) != nullptr ;) {
2135
+ f->do_form_by_name (name);
2136
+ }
2137
+ }
2138
+
2069
2139
2070
2140
// ==============================Operands=======================================
2071
2141
// ------------------------------OperandForm------------------------------------
@@ -2691,6 +2761,22 @@ void OperandForm::output(FILE *fp) {
2691
2761
if (_format) _format->dump ();
2692
2762
}
2693
2763
2764
+ void OperandForm::forms_do (FormClosure* f) {
2765
+ if (_matrule) f->do_form (_matrule);
2766
+ if (_interface) f->do_form (_interface);
2767
+ if (_attribs) f->do_form (_attribs);
2768
+ if (_predicate) f->do_form (_predicate);
2769
+ if (_constraint) f->do_form (_constraint);
2770
+ if (_construct) f->do_form (_construct);
2771
+ if (_format) f->do_form (_format);
2772
+ _localNames.forms_do (f);
2773
+ const char * opclass = nullptr ;
2774
+ for ( _classes.reset (); (opclass = _classes.iter ()) != nullptr ; ) {
2775
+ f->do_form_by_name (opclass);
2776
+ }
2777
+ assert (_components.count () == 0 , " skip _compnets" );
2778
+ }
2779
+
2694
2780
// ------------------------------Constraint-------------------------------------
2695
2781
Constraint::Constraint (const char *func, const char *arg)
2696
2782
: _func(func), _arg(arg) {
@@ -2712,6 +2798,10 @@ void Constraint::output(FILE *fp) { // Write info to output files
2712
2798
fprintf (fp," Constraint: %s ( %s )\n " , _func, _arg);
2713
2799
}
2714
2800
2801
+ void Constraint::forms_do (FormClosure *f) {
2802
+ f->do_form_by_name (_arg);
2803
+ }
2804
+
2715
2805
// ------------------------------Predicate--------------------------------------
2716
2806
Predicate::Predicate (char *pr)
2717
2807
: _pred(pr) {
@@ -3539,6 +3629,12 @@ void MatchNode::output(FILE *fp) {
3539
3629
}
3540
3630
}
3541
3631
3632
+ void MatchNode::forms_do (FormClosure *f) {
3633
+ f->do_form_by_name (_name);
3634
+ if (_lChild) f->do_form (_lChild);
3635
+ if (_rChild) f->do_form (_rChild);
3636
+ }
3637
+
3542
3638
int MatchNode::needs_ideal_memory_edge (FormDict &globals) const {
3543
3639
static const char *needs_ideal_memory_list[] = {
3544
3640
" StoreI" ," StoreL" ," StoreP" ," StoreN" ," StoreNKlass" ," StoreD" ," StoreF" ,
@@ -3608,6 +3704,7 @@ int InstructForm::needs_base_oop_edge(FormDict &globals) const {
3608
3704
}
3609
3705
3610
3706
3707
+
3611
3708
// -------------------------cisc spilling methods-------------------------------
3612
3709
// helper routines and methods for detecting cisc-spilling instructions
3613
3710
// -------------------------cisc_spill_merge------------------------------------
@@ -4334,6 +4431,18 @@ void MatchRule::output(FILE *fp) {
4334
4431
fprintf (fp," \n " );
4335
4432
}
4336
4433
4434
+ void MatchRule::forms_do (FormClosure* f) {
4435
+ // keep sync with MatchNode::forms_do
4436
+ f->do_form_by_name (_name);
4437
+ if (_lChild) f->do_form (_lChild);
4438
+ if (_rChild) f->do_form (_rChild);
4439
+
4440
+ // handle next rule
4441
+ if (_next) {
4442
+ f->do_form (_next);
4443
+ }
4444
+ }
4445
+
4337
4446
// ------------------------------Attribute--------------------------------------
4338
4447
Attribute::Attribute (char *id, char * val, int type)
4339
4448
: _ident(id), _val(val), _atype(type) {
0 commit comments