|
| 1 | +//===- llvm-reduce.cpp - The LLVM Delta Reduction utility -----------------===// |
| 2 | +// |
| 3 | +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | +// See https://llvm.org/LICENSE.txt for license information. |
| 5 | +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | +// |
| 7 | +//===----------------------------------------------------------------------===// |
| 8 | +// |
| 9 | +// This file contains the implementation for the Delta Debugging Algorithm: |
| 10 | +// it splits a given set of Targets (i.e. Functions, Instructions, BBs, etc.) |
| 11 | +// into chunks and tries to reduce the number chunks that are interesting. |
| 12 | +// |
| 13 | +//===----------------------------------------------------------------------===// |
| 14 | + |
| 15 | +#ifndef LLVM_TOOLS_LLVMREDUCE_LLVMREDUCE_DELTA_H |
| 16 | +#define LLVM_TOOLS_LLVMREDUCE_LLVMREDUCE_DELTA_H |
| 17 | + |
| 18 | +#include "../TestRunner.h" |
| 19 | +#include "llvm/IR/Verifier.h" |
| 20 | +#include "llvm/Support/FileSystem.h" |
| 21 | +#include "llvm/Support/Path.h" |
| 22 | +#include "llvm/Support/ScopedPrinter.h" |
| 23 | +#include "llvm/Support/ToolOutputFile.h" |
| 24 | +#include <fstream> |
| 25 | +#include <set> |
| 26 | +#include <vector> |
| 27 | + |
| 28 | +using namespace llvm; |
| 29 | + |
| 30 | +struct Chunk { |
| 31 | + int begin; |
| 32 | + int end; |
| 33 | + |
| 34 | + /// Operator when populating CurrentChunks in Generic Delta Pass |
| 35 | + friend bool operator!=(const Chunk &C1, const Chunk &C2) { |
| 36 | + return C1.begin != C2.begin && C1.end != C2.end; |
| 37 | + } |
| 38 | + |
| 39 | + /// Operator used for sets |
| 40 | + friend bool operator<(const Chunk &C1, const Chunk &C2) { |
| 41 | + return C1.begin < C2.begin; |
| 42 | + } |
| 43 | +}; |
| 44 | + |
| 45 | +/// Writes IR code to the given Filepath |
| 46 | +inline bool writeProgramToFile(StringRef Filepath, int FD, const Module &M) { |
| 47 | + ToolOutputFile Out(Filepath, FD); |
| 48 | + M.print(Out.os(), /*AnnotationWriter=*/nullptr); |
| 49 | + Out.os().close(); |
| 50 | + |
| 51 | + if (!Out.os().has_error()) { |
| 52 | + Out.keep(); |
| 53 | + return false; |
| 54 | + } |
| 55 | + return true; |
| 56 | +} |
| 57 | + |
| 58 | +/// Creates a temporary (and unique) file inside the tmp folder and outputs |
| 59 | +/// the module inside it. |
| 60 | +inline SmallString<128> createTmpFile(Module *M, StringRef TmpDir) { |
| 61 | + SmallString<128> UniqueFilepath; |
| 62 | + int UniqueFD; |
| 63 | + |
| 64 | + std::error_code EC = sys::fs::createUniqueFile(TmpDir + "/tmp-%%%.ll", |
| 65 | + UniqueFD, UniqueFilepath); |
| 66 | + if (EC) { |
| 67 | + errs() << "Error making unique filename: " << EC.message() << "!\n"; |
| 68 | + exit(1); |
| 69 | + } |
| 70 | + |
| 71 | + if (writeProgramToFile(UniqueFilepath, UniqueFD, *M)) { |
| 72 | + errs() << "Error emitting bitcode to file '" << UniqueFilepath << "'!\n"; |
| 73 | + exit(1); |
| 74 | + } |
| 75 | + return UniqueFilepath; |
| 76 | +} |
| 77 | + |
| 78 | +/// Prints the Chunk Indexes with the following format: [start, end], if |
| 79 | +/// chunk is at minimum size (1), then it just displays [start]. |
| 80 | +inline void printChunks(std::vector<Chunk> Chunks, bool Oneline = false) { |
| 81 | + for (auto C : Chunks) { |
| 82 | + if (!Oneline) |
| 83 | + outs() << '\t'; |
| 84 | + outs() << "[" << C.begin; |
| 85 | + if (C.end - C.begin != 0) |
| 86 | + outs() << "," << C.end; |
| 87 | + outs() << "]"; |
| 88 | + if (!Oneline) |
| 89 | + outs() << '\n'; |
| 90 | + } |
| 91 | +} |
| 92 | + |
| 93 | +/// Counts the amount of lines for a given file |
| 94 | +inline unsigned getLines(StringRef Filepath) { |
| 95 | + unsigned Lines = 0; |
| 96 | + std::string CurrLine; |
| 97 | + std::ifstream FileStream(Filepath); |
| 98 | + |
| 99 | + while (std::getline(FileStream, CurrLine)) |
| 100 | + ++Lines; |
| 101 | + |
| 102 | + return Lines; |
| 103 | +} |
| 104 | + |
| 105 | +/// Splits Chunks in half and prints them. |
| 106 | +/// If unable to split (when chunk size is 1) returns false. |
| 107 | +inline bool increaseGranularity(std::vector<Chunk> &Chunks) { |
| 108 | + outs() << "Increasing granularity..."; |
| 109 | + std::vector<Chunk> NewChunks; |
| 110 | + bool SplitOne = false; |
| 111 | + |
| 112 | + for (auto &C : Chunks) { |
| 113 | + if (C.end - C.begin == 0) |
| 114 | + NewChunks.push_back(C); |
| 115 | + else { |
| 116 | + int Half = (C.begin + C.end) / 2; |
| 117 | + NewChunks.push_back({C.begin, Half}); |
| 118 | + NewChunks.push_back({Half + 1, C.end}); |
| 119 | + SplitOne = true; |
| 120 | + } |
| 121 | + } |
| 122 | + if (SplitOne) { |
| 123 | + Chunks = NewChunks; |
| 124 | + outs() << "Success! New Chunks:\n"; |
| 125 | + printChunks(Chunks); |
| 126 | + } |
| 127 | + return SplitOne; |
| 128 | +} |
| 129 | + |
| 130 | +namespace llvm { |
| 131 | + |
| 132 | +/// This class implements the Delta Debugging algorithm, it receives a set of |
| 133 | +/// Targets (e.g. Functions, Instructions, Basic Blocks, etc.) and splits them |
| 134 | +/// in half; these chunks of targets are then tested while ignoring one chunk, |
| 135 | +/// if a chunk is proven to be uninteresting (i.e. fails the test) it is |
| 136 | +/// removed from consideration. Otherwise, the algorithm will attempt to split |
| 137 | +/// the Chunks in half and start the process again, until it can't split chunks |
| 138 | +/// anymore. |
| 139 | +/// |
| 140 | +/// The class is intended to be called statically by the DeltaManager class |
| 141 | +/// alongside a specialized delta pass (e.g. RemoveFunctions) passed as a |
| 142 | +/// template. |
| 143 | +/// This specialized pass implements two functions: |
| 144 | +/// * getTargetCount, which returns the amount of targets (e.g. Functions) |
| 145 | +/// there are in the Module. |
| 146 | +/// * extractChunksFromModule, which clones the given Module and modifies it |
| 147 | +/// so it only contains Chunk Targets. |
| 148 | +/// |
| 149 | +/// Other implementations of the Delta Debugging algorithm can be found in the |
| 150 | +/// CReduce, Delta, and Lithium projects. |
| 151 | +template <class P> class Delta { |
| 152 | +public: |
| 153 | + /// Runs the Delta Debugging algorithm, splits the code into chunks and |
| 154 | + /// reduces the amount of chunks that are considered interesting by the |
| 155 | + /// given test. |
| 156 | + static void run(TestRunner &Test) { |
| 157 | + int TargetCount = P::getTargetCount(Test.getProgram()); |
| 158 | + std::vector<Chunk> Chunks = {{1, TargetCount}}; |
| 159 | + std::set<Chunk> UninterestingChunks; |
| 160 | + std::unique_ptr<Module> ReducedProgram; |
| 161 | + |
| 162 | + if (Test.run(Test.getReducedFilepath())) |
| 163 | + increaseGranularity(Chunks); |
| 164 | + else { |
| 165 | + outs() << "Error: input file isnt interesting\n"; |
| 166 | + exit(1); |
| 167 | + } |
| 168 | + |
| 169 | + do { |
| 170 | + UninterestingChunks = {}; |
| 171 | + for (int I = Chunks.size() - 1; I >= 0; --I) { |
| 172 | + std::vector<Chunk> CurrentChunks; |
| 173 | + |
| 174 | + for (auto C : Chunks) |
| 175 | + if (!UninterestingChunks.count(C) && C != Chunks[I]) |
| 176 | + CurrentChunks.push_back(C); |
| 177 | + |
| 178 | + // Generate Module with only Targets inside Current Chunks |
| 179 | + std::unique_ptr<Module> CurrentProgram = |
| 180 | + P::extractChunksFromModule(CurrentChunks, Test.getProgram()); |
| 181 | + // Write Module to tmp file |
| 182 | + SmallString<128> CurrentFilepath = |
| 183 | + createTmpFile(CurrentProgram.get(), Test.getTmpDir()); |
| 184 | + |
| 185 | + outs() << "Testing with: "; |
| 186 | + printChunks(CurrentChunks, /*Oneline=*/true); |
| 187 | + outs() << " | " << sys::path::filename(CurrentFilepath); |
| 188 | + |
| 189 | + // Current Chunks aren't interesting |
| 190 | + if (!Test.run(CurrentFilepath)) { |
| 191 | + outs() << "\n"; |
| 192 | + continue; |
| 193 | + } |
| 194 | + |
| 195 | + // We only care about interesting chunks if they reduce the testcase |
| 196 | + if (getLines(CurrentFilepath) < getLines(Test.getReducedFilepath())) { |
| 197 | + UninterestingChunks.insert(Chunks[I]); |
| 198 | + Test.setReducedFilepath(CurrentFilepath); |
| 199 | + ReducedProgram = std::move(CurrentProgram); |
| 200 | + outs() << " **** SUCCESS | lines: " << getLines(CurrentFilepath); |
| 201 | + } |
| 202 | + outs() << "\n"; |
| 203 | + } |
| 204 | + // Delete uninteresting chunks |
| 205 | + auto UnwantedChunks = Chunks.end(); |
| 206 | + UnwantedChunks = std::remove_if(Chunks.begin(), Chunks.end(), |
| 207 | + [UninterestingChunks](const Chunk &C) { |
| 208 | + return UninterestingChunks.count(C); |
| 209 | + }); |
| 210 | + Chunks.erase(UnwantedChunks, Chunks.end()); |
| 211 | + } while (!UninterestingChunks.empty() || increaseGranularity(Chunks)); |
| 212 | + |
| 213 | + // If we reduced the testcase replace it |
| 214 | + if (ReducedProgram) |
| 215 | + Test.setProgram(std::move(ReducedProgram)); |
| 216 | + outs() << "Couldn't increase anymore.\n"; |
| 217 | + } |
| 218 | +}; |
| 219 | + |
| 220 | +} // namespace llvm |
| 221 | + |
| 222 | +#endif |
0 commit comments