Added Delta IR Reduction Tool
authorDiego Trevino Ferrer <diegof30@gmail.com>
Wed, 7 Aug 2019 21:37:11 +0000 (21:37 +0000)
committerDiego Trevino Ferrer <diegof30@gmail.com>
Wed, 7 Aug 2019 21:37:11 +0000 (21:37 +0000)
commitb80c4c82d6d4682d2cb177cdffd1aa951322d26b
treee3d328ea48a8565a842c34d8693815fc86e9d7e1
parente0eed65e068ea053ab6a394c07c2a6da96ab7796
Added Delta IR Reduction Tool

Summary: Tool parses input IR file, and runs the delta debugging algorithm to reduce the functions inside the input file.

Reviewers: alexshap, chandlerc

Subscribers: mgorny, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D63672

> llvm-svn: 368071

llvm-svn: 368214
14 files changed:
llvm/docs/BugpointRedesign.md [new file with mode: 0644]
llvm/test/Reduce/Inputs/remove-funcs.sh [new file with mode: 0755]
llvm/test/Reduce/remove-funcs.ll [new file with mode: 0644]
llvm/tools/LLVMBuild.txt
llvm/tools/llvm-reduce/CMakeLists.txt [new file with mode: 0644]
llvm/tools/llvm-reduce/DeltaManager.h [new file with mode: 0644]
llvm/tools/llvm-reduce/LLVMBuild.txt [new file with mode: 0644]
llvm/tools/llvm-reduce/TestRunner.cpp [new file with mode: 0644]
llvm/tools/llvm-reduce/TestRunner.h [new file with mode: 0644]
llvm/tools/llvm-reduce/deltas/Delta.cpp [new file with mode: 0644]
llvm/tools/llvm-reduce/deltas/Delta.h [new file with mode: 0644]
llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp [new file with mode: 0644]
llvm/tools/llvm-reduce/deltas/ReduceFunctions.h [new file with mode: 0644]
llvm/tools/llvm-reduce/llvm-reduce.cpp [new file with mode: 0644]