Skip to content

Commit 1ab6bd4

Browse files
kuaiweiTheShermanTanker
authored andcommittedFeb 28, 2024
8326135: Enhance adlc to report unused operands
Reviewed-by: kvn, vlivanov
1 parent 3b90ddf commit 1ab6bd4

File tree

9 files changed

+305
-8
lines changed

9 files changed

+305
-8
lines changed
 

‎src/hotspot/share/adlc/archDesc.cpp

+94-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
//
55
// This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
2424

2525

2626
// archDesc.cpp - Internal format for architecture definition
27+
#include <unordered_set>
2728
#include "adlc.hpp"
2829

2930
static FILE *errfile = stderr;
@@ -684,6 +685,98 @@ bool ArchDesc::verify() {
684685
return true;
685686
}
686687

688+
class MarkUsageFormClosure : public FormClosure {
689+
private:
690+
ArchDesc* _ad;
691+
std::unordered_set<Form*> *_visited;
692+
693+
public:
694+
MarkUsageFormClosure(ArchDesc* ad, std::unordered_set<Form*> *visit_map) {
695+
_ad = ad;
696+
_visited = visit_map;
697+
}
698+
virtual ~MarkUsageFormClosure() = default;
699+
700+
virtual void do_form(Form *form) {
701+
if (_visited->find(form) == _visited->end()) {
702+
_visited->insert(form);
703+
form->forms_do(this);
704+
}
705+
}
706+
707+
virtual void do_form_by_name(const char* name) {
708+
const Form* form = _ad->globalNames()[name];
709+
if (form) {
710+
do_form(const_cast<Form*>(form));
711+
return;
712+
}
713+
RegisterForm* regs = _ad->get_registers();
714+
if (regs->getRegClass(name)) {
715+
do_form(regs->getRegClass(name));
716+
return;
717+
}
718+
}
719+
};
720+
721+
// check unused operands
722+
bool ArchDesc::check_usage() {
723+
std::unordered_set<Form*> visited;
724+
MarkUsageFormClosure callback(this, &visited);
725+
_instructions.reset();
726+
// iterate all instruction to mark used form
727+
InstructForm* instr;
728+
for ( ; (instr = (InstructForm*)_instructions.iter()) != nullptr; ) {
729+
callback.do_form(instr);
730+
}
731+
732+
// these forms are coded in OperandForm::is_user_name_for_sReg
733+
// it may happen no instruction use these operands, like stackSlotP in aarch64,
734+
// but we can not desclare they are useless.
735+
callback.do_form_by_name("stackSlotI");
736+
callback.do_form_by_name("stackSlotP");
737+
callback.do_form_by_name("stackSlotD");
738+
callback.do_form_by_name("stackSlotF");
739+
callback.do_form_by_name("stackSlotL");
740+
741+
// sReg* are initial created by adlc in ArchDesc::initBaseOpTypes()
742+
// In ARM, no definition or usage in adfile, but they are reported as unused
743+
callback.do_form_by_name("sRegI");
744+
callback.do_form_by_name("sRegP");
745+
callback.do_form_by_name("sRegD");
746+
callback.do_form_by_name("sRegF");
747+
callback.do_form_by_name("sRegL");
748+
749+
// special generic vector operands only used in Matcher::pd_specialize_generic_vector_operand
750+
#if defined(AARCH64)
751+
callback.do_form_by_name("vecA");
752+
callback.do_form_by_name("vecD");
753+
callback.do_form_by_name("vecX");
754+
#elif defined(AMD64)
755+
callback.do_form_by_name("vecS");
756+
callback.do_form_by_name("vecD");
757+
callback.do_form_by_name("vecX");
758+
callback.do_form_by_name("vecY");
759+
callback.do_form_by_name("vecZ");
760+
callback.do_form_by_name("legVecS");
761+
callback.do_form_by_name("legVecD");
762+
callback.do_form_by_name("legVecX");
763+
callback.do_form_by_name("legVecY");
764+
callback.do_form_by_name("legVecZ");
765+
#endif
766+
767+
int cnt = 0;
768+
_operands.reset();
769+
OperandForm* operand;
770+
for ( ; (operand = (OperandForm*)_operands.iter()) != nullptr; ) {
771+
if(visited.find(operand) == visited.end() && !operand->ideal_only()) {
772+
fprintf(stderr, "\nWarning: unused operand (%s)", operand->_ident);
773+
cnt++;
774+
}
775+
}
776+
if (cnt) fprintf(stderr, "\n-------Warning: total %d unused operands\n", cnt);
777+
778+
return true;
779+
}
687780

688781
void ArchDesc::dump() {
689782
_pre_header.dump();

‎src/hotspot/share/adlc/archDesc.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -226,6 +226,7 @@ class ArchDesc {
226226
inline void getForm(EncodeForm **ptr) { *ptr = _encode; }
227227

228228
bool verify();
229+
bool check_usage();
229230
void dump();
230231

231232
// Helper utility that gets MatchList components from inside MatchRule

‎src/hotspot/share/adlc/forms.cpp

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -362,6 +362,15 @@ void FormDict::dump() {
362362
_form.print(dumpkey, dumpform);
363363
}
364364

365+
void FormDict::forms_do(FormClosure* f) {;
366+
DictI iter(&_form);
367+
for( ; iter.test(); ++iter ) {
368+
Form* form = (Form*) iter._value;
369+
assert(form != nullptr, "sanity");
370+
f->do_form(form);
371+
}
372+
}
373+
365374
//------------------------------SourceForm-------------------------------------
366375
SourceForm::SourceForm(char* code) : _code(code) { }; // Constructor
367376
SourceForm::~SourceForm() {
@@ -374,3 +383,11 @@ void SourceForm::dump() { // Debug printer
374383
void SourceForm::output(FILE *fp) {
375384
fprintf(fp,"\n//%s\n%s\n",classname(),(_code?_code:""));
376385
}
386+
387+
void FormClosure::do_form(Form* form) {
388+
assert(false, "should not reach here");
389+
}
390+
391+
void FormClosure::do_form_by_name(const char* name) {
392+
assert(false, "should not reach here");
393+
}

‎src/hotspot/share/adlc/forms.hpp

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -58,6 +58,7 @@ class Flag;
5858
class RewriteRule;
5959
class ConstructRule;
6060
class FormatRule;
61+
class FormClosure;
6162
class Peephole;
6263
class EncClass;
6364
class Interface;
@@ -114,6 +115,8 @@ class FormDict {
114115
const Form *operator [](const char *name) const; // Do a lookup
115116

116117
void dump();
118+
// iterate child forms recursively
119+
void forms_do(FormClosure *f);
117120
};
118121

119122
// ***** Master Class for ADL Parser Forms *****
@@ -163,6 +166,9 @@ class Form {
163166
// Write info to output files
164167
virtual void output(FILE *fp) { fprintf(fp,"Form Output"); }
165168

169+
// iterate child forms recursively
170+
virtual void forms_do (FormClosure* f) { return; }
171+
166172
public:
167173
// ADLC types, match the last character on ideal operands and instructions
168174
enum DataType {
@@ -255,6 +261,16 @@ class Form {
255261

256262
};
257263

264+
class FormClosure {
265+
public:
266+
FormClosure() = default;
267+
virtual ~FormClosure() = default;
268+
269+
virtual void do_form(Form* form);
270+
virtual void do_form_by_name(const char* name);
271+
};
272+
273+
258274
//------------------------------FormList---------------------------------------
259275
class FormList {
260276
private:

‎src/hotspot/share/adlc/formsopt.cpp

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -198,6 +198,20 @@ void RegisterForm::output(FILE *fp) { // Write info to output files
198198
fprintf(fp,"-------------------- end RegisterForm --------------------\n");
199199
}
200200

201+
void RegisterForm::forms_do(FormClosure *f) {
202+
const char *name = nullptr;
203+
if (_current_ac) f->do_form(_current_ac);
204+
for(_rdefs.reset(); (name = _rdefs.iter()) != nullptr;) {
205+
f->do_form((RegDef*)_regDef[name]);
206+
}
207+
for (_rclasses.reset(); (name = _rclasses.iter()) != nullptr;) {
208+
f->do_form((RegClass*)_regClass[name]);
209+
}
210+
for (_aclasses.reset(); (name = _aclasses.iter()) != nullptr;) {
211+
f->do_form((AllocClass*)_allocClass[name]);
212+
}
213+
}
214+
201215
//------------------------------RegDef-----------------------------------------
202216
// Constructor
203217
RegDef::RegDef(char *regname, char *callconv, char *c_conv, char * idealtype, char * encode, char * concrete)
@@ -322,6 +336,13 @@ void RegClass::output(FILE *fp) { // Write info to output files
322336
fprintf(fp,"--- done with entries for reg_class %s\n\n",_classid);
323337
}
324338

339+
void RegClass::forms_do(FormClosure *f) {
340+
const char *name = nullptr;
341+
for( _regDefs.reset(); (name = _regDefs.iter()) != nullptr; ) {
342+
f->do_form((RegDef*)_regDef[name]);
343+
}
344+
}
345+
325346
void RegClass::declare_register_masks(FILE* fp) {
326347
const char* prefix = "";
327348
const char* rc_name_to_upper = toUpper(_classid);
@@ -436,6 +457,14 @@ void AllocClass::output(FILE *fp) { // Write info to output files
436457
fprintf(fp,"--- done with entries for alloc_class %s\n\n",_classid);
437458
}
438459

460+
void AllocClass::forms_do(FormClosure* f) {
461+
const char *name;
462+
for(_regDefs.reset(); (name = _regDefs.iter()) != nullptr;) {
463+
f->do_form((RegDef*)_regDef[name]);
464+
}
465+
return;
466+
}
467+
439468
//==============================Frame Handling=================================
440469
//------------------------------FrameForm--------------------------------------
441470
FrameForm::FrameForm() {
@@ -706,6 +735,15 @@ void Peephole::output(FILE *fp) { // Write info to output files
706735
if( _next ) _next->output(fp);
707736
}
708737

738+
void Peephole::forms_do(FormClosure *f) {
739+
if (_predicate) f->do_form(_predicate);
740+
if (_match) f->do_form(_match);
741+
if (_procedure) f->do_form(_procedure);
742+
if (_constraint) f->do_form(_constraint);
743+
if (_replace) f->do_form(_replace);
744+
return;
745+
}
746+
709747
//----------------------------PeepPredicate------------------------------------
710748
PeepPredicate::PeepPredicate(const char* rule) : _rule(rule) {
711749
}

‎src/hotspot/share/adlc/formsopt.hpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -123,6 +123,7 @@ class RegisterForm : public Form {
123123

124124
void dump(); // Debug printer
125125
void output(FILE *fp); // Write info to output files
126+
virtual void forms_do(FormClosure* f);
126127
};
127128

128129
//------------------------------RegDef-----------------------------------------
@@ -199,6 +200,7 @@ class RegClass : public Form {
199200

200201
void dump(); // Debug printer
201202
void output(FILE *fp); // Write info to output files
203+
virtual void forms_do(FormClosure* f);
202204

203205
virtual bool has_stack_version() {
204206
return _stack_or_reg;
@@ -305,6 +307,11 @@ class ConditionalRegClass : public RegClass {
305307
char* condition_code() {
306308
return _condition_code;
307309
}
310+
311+
virtual void forms_do(FormClosure* f) {
312+
if (_rclasses[0]) f->do_form(_rclasses[0]);
313+
if (_rclasses[1]) f->do_form(_rclasses[1]);
314+
}
308315
};
309316

310317
//------------------------------AllocClass-------------------------------------
@@ -325,6 +332,7 @@ class AllocClass : public Form {
325332

326333
void dump(); // Debug printer
327334
void output(FILE *fp); // Write info to output files
335+
virtual void forms_do(FormClosure* f);
328336
};
329337

330338

@@ -568,6 +576,7 @@ class Peephole : public Form {
568576

569577
void dump(); // Debug printer
570578
void output(FILE *fp); // Write info to output files
579+
virtual void forms_do(FormClosure* f);
571580
};
572581

573582
class PeepPredicate : public Form {

‎src/hotspot/share/adlc/formssel.cpp

+109
Original file line numberDiff line numberDiff line change
@@ -1498,6 +1498,24 @@ void InstructForm::output(FILE *fp) {
14981498
if (_peephole) _peephole->output(fp);
14991499
}
15001500

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+
15011519
void MachNodeForm::dump() {
15021520
output(stderr);
15031521
}
@@ -1615,6 +1633,14 @@ void EncodeForm::output(FILE *fp) { // Write info to output files
16151633
}
16161634
fprintf(fp,"-------------------- end EncodeForm --------------------\n");
16171635
}
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+
16181644
//------------------------------EncClass---------------------------------------
16191645
EncClass::EncClass(const char *name)
16201646
: _localNames(cmpstr,hashstr, Form::arena), _name(name) {
@@ -1705,6 +1731,15 @@ void EncClass::output(FILE *fp) {
17051731

17061732
}
17071733

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+
17081743
//------------------------------Opcode-----------------------------------------
17091744
Opcode::Opcode(char *primary, char *secondary, char *tertiary)
17101745
: _primary(primary), _secondary(secondary), _tertiary(tertiary) {
@@ -1835,6 +1870,15 @@ void InsEncode::output(FILE *fp) {
18351870
fprintf(fp,"\n");
18361871
}
18371872

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+
18381882
//------------------------------Effect-----------------------------------------
18391883
static int effect_lookup(const char *name) {
18401884
if (!strcmp(name, "USE")) return Component::USE;
@@ -1968,6 +2012,19 @@ void ExpandRule::output(FILE *fp) { // Write info to output files
19682012
}
19692013
}
19702014

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+
19712028
//------------------------------RewriteRule------------------------------------
19722029
RewriteRule::RewriteRule(char* params, char* block)
19732030
: _tempParams(params), _tempBlock(block) { }; // Constructor
@@ -1984,6 +2041,12 @@ void RewriteRule::output(FILE *fp) { // Write info to output files
19842041
(_tempBlock?_tempBlock:""));
19852042
}
19862043

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+
19872050

19882051
//==============================MachNodes======================================
19892052
//------------------------------MachNodeForm-----------------------------------
@@ -2066,6 +2129,13 @@ void OpClassForm::output(FILE *fp) {
20662129
fprintf(fp,"\n");
20672130
}
20682131

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+
20692139

20702140
//==============================Operands=======================================
20712141
//------------------------------OperandForm------------------------------------
@@ -2691,6 +2761,22 @@ void OperandForm::output(FILE *fp) {
26912761
if (_format) _format->dump();
26922762
}
26932763

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+
26942780
//------------------------------Constraint-------------------------------------
26952781
Constraint::Constraint(const char *func, const char *arg)
26962782
: _func(func), _arg(arg) {
@@ -2712,6 +2798,10 @@ void Constraint::output(FILE *fp) { // Write info to output files
27122798
fprintf(fp,"Constraint: %s ( %s )\n", _func, _arg);
27132799
}
27142800

2801+
void Constraint::forms_do(FormClosure *f) {
2802+
f->do_form_by_name(_arg);
2803+
}
2804+
27152805
//------------------------------Predicate--------------------------------------
27162806
Predicate::Predicate(char *pr)
27172807
: _pred(pr) {
@@ -3539,6 +3629,12 @@ void MatchNode::output(FILE *fp) {
35393629
}
35403630
}
35413631

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+
35423638
int MatchNode::needs_ideal_memory_edge(FormDict &globals) const {
35433639
static const char *needs_ideal_memory_list[] = {
35443640
"StoreI","StoreL","StoreP","StoreN","StoreNKlass","StoreD","StoreF" ,
@@ -3608,6 +3704,7 @@ int InstructForm::needs_base_oop_edge(FormDict &globals) const {
36083704
}
36093705

36103706

3707+
36113708
//-------------------------cisc spilling methods-------------------------------
36123709
// helper routines and methods for detecting cisc-spilling instructions
36133710
//-------------------------cisc_spill_merge------------------------------------
@@ -4334,6 +4431,18 @@ void MatchRule::output(FILE *fp) {
43344431
fprintf(fp,"\n");
43354432
}
43364433

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+
43374446
//------------------------------Attribute--------------------------------------
43384447
Attribute::Attribute(char *id, char* val, int type)
43394448
: _ident(id), _val(val), _atype(type) {

‎src/hotspot/share/adlc/formssel.hpp

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -310,6 +310,7 @@ class InstructForm : public Form {
310310

311311
virtual void dump(); // Debug printer
312312
virtual void output(FILE *fp); // Write to output files
313+
virtual void forms_do(FormClosure *f);
313314
};
314315

315316
//------------------------------EncodeForm-------------------------------------
@@ -333,6 +334,7 @@ class EncodeForm : public Form {
333334

334335
void dump(); // Debug printer
335336
void output(FILE *fp); // Write info to output files
337+
virtual void forms_do(FormClosure *f);
336338
};
337339

338340
//------------------------------EncClass---------------------------------------
@@ -377,6 +379,7 @@ class EncClass : public Form {
377379
bool verify();
378380
void dump();
379381
void output(FILE *fp);
382+
virtual void forms_do(FormClosure* f);
380383
};
381384

382385
//------------------------------MachNode---------------------------------------
@@ -468,6 +471,7 @@ class InsEncode : public Form {
468471

469472
void dump();
470473
void output(FILE *fp);
474+
virtual void forms_do(FormClosure *f);
471475
};
472476

473477
//------------------------------Effect-----------------------------------------
@@ -515,6 +519,7 @@ class ExpandRule : public Form {
515519

516520
void dump(); // Debug printer
517521
void output(FILE *fp); // Write info to output files
522+
virtual void forms_do(FormClosure *f);
518523
};
519524

520525
//---------------------------------Flag----------------------------------------
@@ -554,6 +559,7 @@ class RewriteRule : public Form {
554559
~RewriteRule(); // Destructor
555560
void dump(); // Debug printer
556561
void output(FILE *fp); // Write info to output files
562+
virtual void forms_do(FormClosure* f);
557563
};
558564

559565

@@ -584,6 +590,7 @@ class OpClassForm : public Form {
584590
virtual bool ideal_only() const;
585591
virtual void dump(); // Debug printer
586592
virtual void output(FILE *fp); // Write to output files
593+
virtual void forms_do(FormClosure* f);
587594
};
588595

589596
//------------------------------OperandForm------------------------------------
@@ -711,6 +718,7 @@ class OperandForm : public OpClassForm {
711718

712719
virtual void dump(); // Debug printer
713720
virtual void output(FILE *fp); // Write to output files
721+
virtual void forms_do(FormClosure* f);
714722
};
715723

716724
//------------------------------Constraint-------------------------------------
@@ -729,6 +737,7 @@ class Constraint : public Form {
729737

730738
void dump(); // Debug printer
731739
void output(FILE *fp); // Write info to output files
740+
virtual void forms_do(FormClosure* f);
732741
};
733742

734743
//------------------------------Predicate--------------------------------------
@@ -1014,6 +1023,7 @@ class MatchNode : public Form {
10141023

10151024
void dump();
10161025
void output(FILE *fp);
1026+
virtual void forms_do(FormClosure* f);
10171027
};
10181028

10191029
//------------------------------MatchRule--------------------------------------
@@ -1075,6 +1085,7 @@ class MatchRule : public MatchNode {
10751085
void dump();
10761086
void output_short(FILE *fp);
10771087
void output(FILE *fp);
1088+
virtual void forms_do(FormClosure* f);
10781089
};
10791090

10801091
//------------------------------Attribute--------------------------------------

‎src/hotspot/share/adlc/main.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -186,6 +186,9 @@ int main(int argc, char *argv[])
186186
// Verify that the results of the parse are consistent
187187
AD.verify();
188188

189+
// Check defined operands are used
190+
AD.check_usage();
191+
189192
// Prepare to generate the result files:
190193
AD.generateMatchLists();
191194
AD.identify_unique_operands();

0 commit comments

Comments
 (0)
Please sign in to comment.