Skip to content

Commit 397c05d

Browse files
author
Jessica Paquette
committed
[NFC] Check if P is a pass manager on entry to emitInstrCountChangedRemark
There's no point in finding a function to use for remark output when we're not going to emit anything. llvm-svn: 341252
1 parent 42a4d08 commit 397c05d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

llvm/lib/IR/LegacyPassManager.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ unsigned PMDataManager::initSizeRemarkInfo(Module &M) {
144144
void PMDataManager::emitInstrCountChangedRemark(Pass *P, Module &M,
145145
int64_t Delta,
146146
unsigned CountBefore) {
147+
// If it's a pass manager, don't emit a remark. (This hinges on the assumption
148+
// that the only passes that return non-null with getAsPMDataManager are pass
149+
// managers.) The reason we have to do this is to avoid emitting remarks for
150+
// CGSCC passes.
151+
if (P->getAsPMDataManager())
152+
return;
153+
147154
// We need a function containing at least one basic block in order to output
148155
// remarks. Since it's possible that the first function in the module doesn't
149156
// actually contain a basic block, we have to go and find one that's suitable
@@ -157,13 +164,6 @@ void PMDataManager::emitInstrCountChangedRemark(Pass *P, Module &M,
157164

158165
// We found a function containing at least one basic block.
159166
Function *F = &*It;
160-
161-
// If it's a pass manager, don't emit a remark. (This hinges on the assumption
162-
// that the only passes that return non-null with getAsPMDataManager are pass
163-
// managers.) The reason we have to do this is to avoid emitting remarks for
164-
// CGSCC passes.
165-
if (P->getAsPMDataManager())
166-
return;
167167
int64_t CountAfter = static_cast<int64_t>(CountBefore) + Delta;
168168
BasicBlock &BB = *F->begin();
169169
OptimizationRemarkAnalysis R("size-info", "IRSizeChange",

0 commit comments

Comments
 (0)