]> granicus.if.org Git - llvm/commit
Added Delta IR Reduction Tool
authorDiego Trevino Ferrer <diegof30@gmail.com>
Thu, 8 Aug 2019 22:16:33 +0000 (22:16 +0000)
committerDiego Trevino Ferrer <diegof30@gmail.com>
Thu, 8 Aug 2019 22:16:33 +0000 (22:16 +0000)
commit8afd81dda1c7e09ce2d97fe46fa3d755dfacd293
tree60789530d24fa8b44fd91c3652894075a193f125
parent03bcb7174100e6d296fffbd2951fc08da3387845
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368358 91177308-0d34-0410-b5e6-96231b3b80d8
15 files changed:
docs/BugpointRedesign.md [new file with mode: 0644]
test/CMakeLists.txt
test/Reduce/Inputs/remove-funcs.py [new file with mode: 0755]
test/Reduce/remove-funcs.ll [new file with mode: 0644]
tools/LLVMBuild.txt
tools/llvm-reduce/CMakeLists.txt [new file with mode: 0644]
tools/llvm-reduce/DeltaManager.h [new file with mode: 0644]
tools/llvm-reduce/LLVMBuild.txt [new file with mode: 0644]
tools/llvm-reduce/TestRunner.cpp [new file with mode: 0644]
tools/llvm-reduce/TestRunner.h [new file with mode: 0644]
tools/llvm-reduce/deltas/Delta.cpp [new file with mode: 0644]
tools/llvm-reduce/deltas/Delta.h [new file with mode: 0644]
tools/llvm-reduce/deltas/ReduceFunctions.cpp [new file with mode: 0644]
tools/llvm-reduce/deltas/ReduceFunctions.h [new file with mode: 0644]
tools/llvm-reduce/llvm-reduce.cpp [new file with mode: 0644]