Skip to content

Commit 6f288bd

Browse files
committed
[llvm-reduce] Count chunks by running a preliminary reduction
Having a separate counting method runs the risk of a mismatch between the actual reduction method and the counting method. Instead, create an Oracle that always returns true for shouldKeep(), run the reduction, and count how many times shouldKeep() was called. The module should not be modified if shouldKeep() always returns true. Reviewed By: Meinersbur Differential Revision: https://reviews.llvm.org/D113537
1 parent be0b47d commit 6f288bd

20 files changed

+47
-341
lines changed

llvm/tools/llvm-reduce/deltas/Delta.cpp

+16-7
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,18 @@ static bool increaseGranularity(std::vector<Chunk> &Chunks) {
102102
/// given test.
103103
template <typename T>
104104
void runDeltaPassInt(
105-
TestRunner &Test, int Targets,
105+
TestRunner &Test,
106106
function_ref<void(Oracle &, T &)> ExtractChunksFromModule) {
107-
assert(Targets >= 0);
107+
int Targets;
108+
{
109+
// Count the number of targets by counting the number of calls to
110+
// Oracle::shouldKeep() but always returning true so no changes are
111+
// made.
112+
std::vector<Chunk> AllChunks = {{0, INT_MAX}};
113+
Oracle Counter(AllChunks);
114+
ExtractChunksFromModule(Counter, Test.getProgram());
115+
Targets = Counter.count();
116+
}
108117
if (!Targets) {
109118
errs() << "\nNothing to reduce\n";
110119
return;
@@ -119,7 +128,7 @@ void runDeltaPassInt(
119128
assert(!verifyReducerWorkItem(Test.getProgram(), &errs()) &&
120129
"input module is broken before making changes");
121130

122-
std::vector<Chunk> ChunksStillConsideredInteresting = {{1, Targets}};
131+
std::vector<Chunk> ChunksStillConsideredInteresting = {{0, Targets - 1}};
123132
std::unique_ptr<ReducerWorkItem> ReducedProgram;
124133

125134
for (unsigned int Level = 0; Level < StartingGranularityLevel; Level++) {
@@ -198,13 +207,13 @@ void runDeltaPassInt(
198207
}
199208

200209
void llvm::runDeltaPass(
201-
TestRunner &Test, int Targets,
210+
TestRunner &Test,
202211
function_ref<void(Oracle &, Module &)> ExtractChunksFromModule) {
203-
runDeltaPassInt<Module>(Test, Targets, ExtractChunksFromModule);
212+
runDeltaPassInt<Module>(Test, ExtractChunksFromModule);
204213
}
205214

206215
void llvm::runDeltaPass(
207-
TestRunner &Test, int Targets,
216+
TestRunner &Test,
208217
function_ref<void(Oracle &, MachineFunction &)> ExtractChunksFromModule) {
209-
runDeltaPassInt<MachineFunction>(Test, Targets, ExtractChunksFromModule);
218+
runDeltaPassInt<MachineFunction>(Test, ExtractChunksFromModule);
210219
}

llvm/tools/llvm-reduce/deltas/Delta.h

+11-9
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ struct Chunk {
5252
/// actually understand what is going on.
5353
class Oracle {
5454
/// Out of all the features that we promised to be,
55-
/// how many have we already processed? 1-based!
56-
int Index = 1;
55+
/// how many have we already processed?
56+
int Index = 0;
5757

5858
/// The actual workhorse, contains the knowledge whether or not
5959
/// some particular feature should be preserved this time.
@@ -65,19 +65,24 @@ class Oracle {
6565
/// Should be called for each feature on which we are operating.
6666
/// Name is self-explanatory - if returns true, then it should be preserved.
6767
bool shouldKeep() {
68-
if (ChunksToKeep.empty())
68+
if (ChunksToKeep.empty()) {
69+
++Index;
6970
return false; // All further features are to be discarded.
71+
}
7072

7173
// Does the current (front) chunk contain such a feature?
7274
bool ShouldKeep = ChunksToKeep.front().contains(Index);
73-
auto _ = make_scope_exit([&]() { ++Index; }); // Next time - next feature.
7475

7576
// Is this the last feature in the chunk?
7677
if (ChunksToKeep.front().End == Index)
7778
ChunksToKeep = ChunksToKeep.drop_front(); // Onto next chunk.
7879

80+
++Index;
81+
7982
return ShouldKeep;
8083
}
84+
85+
int count() { return Index; }
8186
};
8287

8388
/// This function implements the Delta Debugging algorithm, it receives a
@@ -92,20 +97,17 @@ class Oracle {
9297
/// RemoveFunctions) and receives three key parameters:
9398
/// * Test: The main TestRunner instance which is used to run the provided
9499
/// interesting-ness test, as well as to store and access the reduced Program.
95-
/// * Targets: The amount of Targets that are going to be reduced by the
96-
/// algorithm, for example, the RemoveGlobalVars pass would send the amount of
97-
/// initialized GVs.
98100
/// * ExtractChunksFromModule: A function used to tailor the main program so it
99101
/// only contains Targets that are inside Chunks of the given iteration.
100102
/// Note: This function is implemented by each specialized Delta pass
101103
///
102104
/// Other implementations of the Delta Debugging algorithm can also be found in
103105
/// the CReduce, Delta, and Lithium projects.
104106
void runDeltaPass(
105-
TestRunner &Test, int Targets,
107+
TestRunner &Test,
106108
function_ref<void(Oracle &, Module &)> ExtractChunksFromModule);
107109
void runDeltaPass(
108-
TestRunner &Test, int Targets,
110+
TestRunner &Test,
109111
function_ref<void(Oracle &, MachineFunction &)> ExtractChunksFromModule);
110112
} // namespace llvm
111113

llvm/tools/llvm-reduce/deltas/ReduceAliases.cpp

+1-15
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,8 @@ static void extractAliasesFromModule(Oracle &O, Module &Program) {
2929
}
3030
}
3131

32-
/// Counts the amount of aliases and prints their respective name & index.
33-
static int countAliases(Module &Program) {
34-
// TODO: Silence index with --quiet flag
35-
errs() << "----------------------------\n";
36-
errs() << "Aliases Index Reference:\n";
37-
int Count = 0;
38-
for (auto &GA : Program.aliases())
39-
errs() << "\t" << ++Count << ": " << GA.getName() << "\n";
40-
41-
errs() << "----------------------------\n";
42-
return Count;
43-
}
44-
4532
void llvm::reduceAliasesDeltaPass(TestRunner &Test) {
4633
errs() << "*** Reducing Aliases ...\n";
47-
int Functions = countAliases(Test.getProgram());
48-
runDeltaPass(Test, Functions, extractAliasesFromModule);
34+
runDeltaPass(Test, extractAliasesFromModule);
4935
errs() << "----------------------------\n";
5036
}

llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp

+1-21
Original file line numberDiff line numberDiff line change
@@ -115,27 +115,7 @@ static void extractArgumentsFromModule(Oracle &O, Module &Program) {
115115
}
116116
}
117117

118-
/// Counts the amount of arguments in functions and prints their respective
119-
/// name, index, and parent function name
120-
static int countArguments(Module &Program) {
121-
// TODO: Silence index with --quiet flag
122-
outs() << "----------------------------\n";
123-
outs() << "Param Index Reference:\n";
124-
int ArgsCount = 0;
125-
for (auto &F : Program)
126-
if (shouldRemoveArguments(F)) {
127-
outs() << " " << F.getName() << "\n";
128-
for (auto &A : F.args())
129-
outs() << "\t" << ++ArgsCount << ": " << A.getName() << "\n";
130-
131-
outs() << "----------------------------\n";
132-
}
133-
134-
return ArgsCount;
135-
}
136-
137118
void llvm::reduceArgumentsDeltaPass(TestRunner &Test) {
138119
outs() << "*** Reducing Arguments...\n";
139-
int ArgCount = countArguments(Test.getProgram());
140-
runDeltaPass(Test, ArgCount, extractArgumentsFromModule);
120+
runDeltaPass(Test, extractArgumentsFromModule);
141121
}

llvm/tools/llvm-reduce/deltas/ReduceAttributes.cpp

+1-14
Original file line numberDiff line numberDiff line change
@@ -180,20 +180,7 @@ static void extractAttributesFromModule(Oracle &O, Module &Program) {
180180
I.first->setAttributes(convertAttributeRefVecToAttributeList(C, I.second));
181181
}
182182

183-
/// Counts the amount of attributes.
184-
static int countAttributes(Module &Program) {
185-
AttributeCounter C;
186-
187-
// TODO: Silence index with --quiet flag
188-
outs() << "----------------------------\n";
189-
C.visit(Program);
190-
outs() << "Number of attributes: " << C.AttributeCount << "\n";
191-
192-
return C.AttributeCount;
193-
}
194-
195183
void llvm::reduceAttributesDeltaPass(TestRunner &Test) {
196184
outs() << "*** Reducing Attributes...\n";
197-
int AttributeCount = countAttributes(Test.getProgram());
198-
runDeltaPass(Test, AttributeCount, extractAttributesFromModule);
185+
runDeltaPass(Test, extractAttributesFromModule);
199186
}

llvm/tools/llvm-reduce/deltas/ReduceBasicBlocks.cpp

+1-18
Original file line numberDiff line numberDiff line change
@@ -139,24 +139,7 @@ static void extractBasicBlocksFromModule(Oracle &O, Module &Program) {
139139
}
140140
}
141141

142-
/// Counts the amount of basic blocks and prints their name & respective index
143-
static int countBasicBlocks(Module &Program) {
144-
// TODO: Silence index with --quiet flag
145-
outs() << "----------------------------\n";
146-
int BBCount = 0;
147-
for (auto &F : Program)
148-
for (auto &BB : F) {
149-
if (BB.hasName())
150-
outs() << "\t" << ++BBCount << ": " << BB.getName() << "\n";
151-
else
152-
outs() << "\t" << ++BBCount << ": Unnamed\n";
153-
}
154-
155-
return BBCount;
156-
}
157-
158142
void llvm::reduceBasicBlocksDeltaPass(TestRunner &Test) {
159143
outs() << "*** Reducing Basic Blocks...\n";
160-
int BBCount = countBasicBlocks(Test.getProgram());
161-
runDeltaPass(Test, BBCount, extractBasicBlocksFromModule);
144+
runDeltaPass(Test, extractBasicBlocksFromModule);
162145
}

llvm/tools/llvm-reduce/deltas/ReduceFunctionBodies.cpp

+1-18
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,8 @@ static void extractFunctionBodiesFromModule(Oracle &O, Module &Program) {
2929
}
3030
}
3131

32-
/// Counts the amount of non-declaration functions and prints their
33-
/// respective name & index
34-
static int countFunctionDefinitions(Module &Program) {
35-
// TODO: Silence index with --quiet flag
36-
errs() << "----------------------------\n";
37-
errs() << "Function Definition Index Reference:\n";
38-
int FunctionDefinitionCount = 0;
39-
for (auto &F : Program)
40-
if (!F.isDeclaration())
41-
errs() << "\t" << ++FunctionDefinitionCount << ": " << F.getName()
42-
<< "\n";
43-
44-
errs() << "----------------------------\n";
45-
return FunctionDefinitionCount;
46-
}
47-
4832
void llvm::reduceFunctionBodiesDeltaPass(TestRunner &Test) {
4933
errs() << "*** Reducing Function Bodies...\n";
50-
int Functions = countFunctionDefinitions(Test.getProgram());
51-
runDeltaPass(Test, Functions, extractFunctionBodiesFromModule);
34+
runDeltaPass(Test, extractFunctionBodiesFromModule);
5235
errs() << "----------------------------\n";
5336
}

llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp

+1-20
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,8 @@ static void extractFunctionsFromModule(Oracle &O, Module &Program) {
4848
}
4949
}
5050

51-
/// Counts the amount of functions and prints their
52-
/// respective name & index
53-
static int countFunctions(Module &Program) {
54-
// TODO: Silence index with --quiet flag
55-
errs() << "----------------------------\n";
56-
errs() << "Function Index Reference:\n";
57-
int FunctionCount = 0;
58-
for (auto &F : Program) {
59-
if (F.isIntrinsic() && !F.use_empty())
60-
continue;
61-
62-
errs() << '\t' << ++FunctionCount << ": " << F.getName() << '\n';
63-
}
64-
65-
errs() << "----------------------------\n";
66-
return FunctionCount;
67-
}
68-
6951
void llvm::reduceFunctionsDeltaPass(TestRunner &Test) {
7052
errs() << "*** Reducing Functions...\n";
71-
int Functions = countFunctions(Test.getProgram());
72-
runDeltaPass(Test, Functions, extractFunctionsFromModule);
53+
runDeltaPass(Test, extractFunctionsFromModule);
7354
errs() << "----------------------------\n";
7455
}

llvm/tools/llvm-reduce/deltas/ReduceGlobalObjects.cpp

+1-12
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,7 @@ static void reduceGOs(Oracle &O, Module &Program) {
2626
}
2727
}
2828

29-
static int countGOs(Module &Program) {
30-
int SectionCount = count_if(Program.global_objects(), [](GlobalObject &GO) {
31-
return shouldReduceSection(GO);
32-
});
33-
int AlignCount = count_if(Program.global_objects(), [](GlobalObject &GO) {
34-
return shouldReduceAlign(GO);
35-
});
36-
return SectionCount + AlignCount;
37-
}
38-
3929
void llvm::reduceGlobalObjectsDeltaPass(TestRunner &Test) {
4030
outs() << "*** Reducing GlobalObjects...\n";
41-
int GVCount = countGOs(Test.getProgram());
42-
runDeltaPass(Test, GVCount, reduceGOs);
31+
runDeltaPass(Test, reduceGOs);
4332
}

llvm/tools/llvm-reduce/deltas/ReduceGlobalValues.cpp

+1-22
Original file line numberDiff line numberDiff line change
@@ -57,28 +57,7 @@ static void reduceGVs(Oracle &O, Module &Program) {
5757
}
5858
}
5959

60-
static int countGVs(Module &Program) {
61-
int DSOLocalCount = count_if(Program.global_values(), [](GlobalValue &GV) {
62-
return shouldReduceDSOLocal(GV);
63-
});
64-
int VisibilityCount = count_if(Program.global_values(), [](GlobalValue &GV) {
65-
return shouldReduceVisibility(GV);
66-
});
67-
int UnnamedAddrCount = count_if(Program.global_values(), [](GlobalValue &GV) {
68-
return shouldReduceUnnamedAddress(GV);
69-
});
70-
int DLLStorageClassCount =
71-
count_if(Program.global_values(),
72-
[](GlobalValue &GV) { return shouldReduceDLLStorageClass(GV); });
73-
int ThreadLocalCount = count_if(Program.global_values(), [](GlobalValue &GV) {
74-
return shouldReduceThreadLocal(GV);
75-
});
76-
return DSOLocalCount + VisibilityCount + UnnamedAddrCount +
77-
DLLStorageClassCount + ThreadLocalCount;
78-
}
79-
8060
void llvm::reduceGlobalValuesDeltaPass(TestRunner &Test) {
8161
outs() << "*** Reducing GlobalValues...\n";
82-
int GVCount = countGVs(Test.getProgram());
83-
runDeltaPass(Test, GVCount, reduceGVs);
62+
runDeltaPass(Test, reduceGVs);
8463
}

llvm/tools/llvm-reduce/deltas/ReduceGlobalVarInitializers.cpp

+1-16
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,7 @@ static void extractGVsFromModule(Oracle &O, Module &Program) {
2828
}
2929
}
3030

31-
/// Counts the amount of initialized GVs and displays their
32-
/// respective name & index
33-
static int countGVs(Module &Program) {
34-
// TODO: Silence index with --quiet flag
35-
outs() << "----------------------------\n";
36-
outs() << "GlobalVariable Index Reference:\n";
37-
int GVCount = 0;
38-
for (auto &GV : Program.globals())
39-
if (GV.hasInitializer())
40-
outs() << "\t" << ++GVCount << ": " << GV.getName() << "\n";
41-
outs() << "----------------------------\n";
42-
return GVCount;
43-
}
44-
4531
void llvm::reduceGlobalsInitializersDeltaPass(TestRunner &Test) {
4632
outs() << "*** Reducing GVs initializers...\n";
47-
int GVCount = countGVs(Test.getProgram());
48-
runDeltaPass(Test, GVCount, extractGVsFromModule);
33+
runDeltaPass(Test, extractGVsFromModule);
4934
}

llvm/tools/llvm-reduce/deltas/ReduceGlobalVars.cpp

+1-15
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,7 @@ static void extractGVsFromModule(Oracle &O, Module &Program) {
5757
GV->eraseFromParent();
5858
}
5959

60-
/// Counts the amount of GVs and displays their
61-
/// respective name & index
62-
static int countGVs(Module &Program) {
63-
// TODO: Silence index with --quiet flag
64-
outs() << "----------------------------\n";
65-
outs() << "GlobalVariable Index Reference:\n";
66-
int GVCount = 0;
67-
for (auto &GV : Program.globals())
68-
outs() << "\t" << ++GVCount << ": " << GV.getName() << "\n";
69-
outs() << "----------------------------\n";
70-
return GVCount;
71-
}
72-
7360
void llvm::reduceGlobalsDeltaPass(TestRunner &Test) {
7461
outs() << "*** Reducing GVs...\n";
75-
int GVCount = countGVs(Test.getProgram());
76-
runDeltaPass(Test, GVCount, extractGVsFromModule);
62+
runDeltaPass(Test, extractGVsFromModule);
7763
}

llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp

+1-16
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,7 @@ static void extractInstrFromModule(Oracle &O, Module &Program) {
4949
I->eraseFromParent();
5050
}
5151

52-
/// Counts the amount of basic blocks and prints their name & respective index
53-
static unsigned countInstructions(Module &Program) {
54-
// TODO: Silence index with --quiet flag
55-
outs() << "----------------------------\n";
56-
int InstCount = 0;
57-
for (auto &F : Program)
58-
for (auto &BB : F)
59-
// Well-formed blocks have terminators, which we cannot remove.
60-
InstCount += BB.getInstList().size() - 1;
61-
outs() << "Number of instructions: " << InstCount << "\n";
62-
63-
return InstCount;
64-
}
65-
6652
void llvm::reduceInstructionsDeltaPass(TestRunner &Test) {
6753
outs() << "*** Reducing Instructions...\n";
68-
unsigned InstCount = countInstructions(Test.getProgram());
69-
runDeltaPass(Test, InstCount, extractInstrFromModule);
54+
runDeltaPass(Test, extractInstrFromModule);
7055
}

0 commit comments

Comments
 (0)