@@ -60,11 +60,11 @@ llvm::cl::opt<std::string> SILBreakOnPass(
60
60
llvm::cl::desc(" Break before running a particular function pass" ));
61
61
62
62
llvm::cl::list<std::string>
63
- SILPrintOnlyFun (" sil-print-only -function" , llvm::cl::CommaSeparated,
63
+ SILPrintFunction (" sil-print-function" , llvm::cl::CommaSeparated,
64
64
llvm::cl::desc (" Only print out the sil for this function" ));
65
65
66
66
llvm::cl::opt<std::string>
67
- SILPrintOnlyFuns (" sil-print-only -functions" , llvm::cl::init(" " ),
67
+ SILPrintFunctions (" sil-print-functions" , llvm::cl::init(" " ),
68
68
llvm::cl::desc(" Only print out the sil for the functions "
69
69
" whose name contains this substring" ));
70
70
@@ -157,13 +157,23 @@ static llvm::cl::opt<DebugOnlyPassNumberOpt, true,
157
157
llvm::cl::location(DebugOnlyPassNumberOptLoc),
158
158
llvm::cl::ValueRequired);
159
159
160
- static bool doPrintBefore (SILTransform *T, SILFunction *F) {
161
- if (!SILPrintOnlyFun.empty () && F && SILPrintOnlyFun.end () ==
162
- std::find (SILPrintOnlyFun.begin (), SILPrintOnlyFun.end (), F->getName ()))
160
+ static bool isFunctionSelectedForPrinting (SILFunction *F) {
161
+ if (!SILPrintFunction.empty () && SILPrintFunction.end () ==
162
+ std::find (SILPrintFunction.begin (), SILPrintFunction.end (), F->getName ()))
163
+ return false ;
164
+
165
+ if (!F->getName ().contains (SILPrintFunctions))
163
166
return false ;
164
167
165
- if (!SILPrintOnlyFuns.empty () && F &&
166
- !F->getName ().contains (SILPrintOnlyFuns))
168
+ return true ;
169
+ }
170
+
171
+ static bool functionSelectionEmpty () {
172
+ return SILPrintFunction.empty () && SILPrintFunctions.empty ();
173
+ }
174
+
175
+ static bool doPrintBefore (SILTransform *T, SILFunction *F) {
176
+ if (F && !isFunctionSelectedForPrinting (F))
167
177
return false ;
168
178
169
179
auto MatchFun = [&](const std::string &Str) -> bool {
@@ -173,21 +183,20 @@ static bool doPrintBefore(SILTransform *T, SILFunction *F) {
173
183
if (SILPrintBefore.end () !=
174
184
std::find_if (SILPrintBefore.begin (), SILPrintBefore.end (), MatchFun))
175
185
return true ;
186
+ if (!SILPrintBefore.empty ())
187
+ return false ;
176
188
177
189
if (SILPrintAround.end () !=
178
190
std::find_if (SILPrintAround.begin (), SILPrintAround.end (), MatchFun))
179
191
return true ;
192
+ if (!SILPrintAround.empty ())
193
+ return false ;
180
194
181
195
return false ;
182
196
}
183
197
184
- static bool doPrintAfter (SILTransform *T, SILFunction *F, bool Default) {
185
- if (!SILPrintOnlyFun.empty () && F && SILPrintOnlyFun.end () ==
186
- std::find (SILPrintOnlyFun.begin (), SILPrintOnlyFun.end (), F->getName ()))
187
- return false ;
188
-
189
- if (!SILPrintOnlyFuns.empty () && F &&
190
- !F->getName ().contains (SILPrintOnlyFuns))
198
+ static bool doPrintAfter (SILTransform *T, SILFunction *F, bool PassChangedSIL) {
199
+ if (F && !isFunctionSelectedForPrinting (F))
191
200
return false ;
192
201
193
202
auto MatchFun = [&](const std::string &Str) -> bool {
@@ -197,12 +206,16 @@ static bool doPrintAfter(SILTransform *T, SILFunction *F, bool Default) {
197
206
if (SILPrintAfter.end () !=
198
207
std::find_if (SILPrintAfter.begin (), SILPrintAfter.end (), MatchFun))
199
208
return true ;
209
+ if (!SILPrintAfter.empty ())
210
+ return false ;
200
211
201
212
if (SILPrintAround.end () !=
202
213
std::find_if (SILPrintAround.begin (), SILPrintAround.end (), MatchFun))
203
214
return true ;
215
+ if (!SILPrintAround.empty ())
216
+ return false ;
204
217
205
- return Default ;
218
+ return PassChangedSIL && (SILPrintAll || ! functionSelectionEmpty ()) ;
206
219
}
207
220
208
221
static bool isDisabled (SILTransform *T, SILFunction *F = nullptr ) {
@@ -221,16 +234,12 @@ static bool isDisabled(SILTransform *T, SILFunction *F = nullptr) {
221
234
}
222
235
223
236
static void printModule (SILModule *Mod, bool EmitVerboseSIL) {
224
- if (SILPrintOnlyFun. empty () && SILPrintOnlyFuns. empty ()) {
237
+ if (functionSelectionEmpty ()) {
225
238
Mod->dump ();
226
239
return ;
227
240
}
228
241
for (auto &F : *Mod) {
229
- if (!SILPrintOnlyFun.empty () && SILPrintOnlyFun.end () !=
230
- std::find (SILPrintOnlyFun.begin (), SILPrintOnlyFun.end (), F.getName ()))
231
- F.dump (EmitVerboseSIL);
232
-
233
- if (!SILPrintOnlyFuns.empty () && F.getName ().contains (SILPrintOnlyFuns))
242
+ if (isFunctionSelectedForPrinting (&F))
234
243
F.dump (EmitVerboseSIL);
235
244
}
236
245
}
@@ -472,7 +481,7 @@ void SILPassManager::runPassOnFunction(unsigned TransIdx, SILFunction *F) {
472
481
}
473
482
474
483
// If this pass invalidated anything, print and verify.
475
- if (doPrintAfter (SFT, F, CurrentPassHasInvalidated && SILPrintAll )) {
484
+ if (doPrintAfter (SFT, F, CurrentPassHasInvalidated)) {
476
485
dumpPassInfo (" *** SIL function after " , TransIdx);
477
486
F->dump (getOptions ().EmitVerboseSIL );
478
487
}
@@ -617,8 +626,7 @@ void SILPassManager::runModulePass(unsigned TransIdx) {
617
626
}
618
627
619
628
// If this pass invalidated anything, print and verify.
620
- if (doPrintAfter (SMT, nullptr ,
621
- CurrentPassHasInvalidated && SILPrintAll)) {
629
+ if (doPrintAfter (SMT, nullptr , CurrentPassHasInvalidated)) {
622
630
dumpPassInfo (" *** SIL module after" , TransIdx);
623
631
printModule (Mod, Options.EmitVerboseSIL );
624
632
}
@@ -731,7 +739,7 @@ SILPassManager::~SILPassManager() {
731
739
}
732
740
733
741
void SILPassManager::notifyOfNewFunction (SILFunction *F, SILTransform *T) {
734
- if (doPrintAfter (T, F, SILPrintAll )) {
742
+ if (doPrintAfter (T, F, /* PassChangedSIL */ true )) {
735
743
dumpPassInfo (" *** New SIL function in " , T, F);
736
744
F->dump (getOptions ().EmitVerboseSIL );
737
745
}
0 commit comments