]> granicus.if.org Git - llvm/commit
Added Delta IR Reduction Tool
authorDiego Trevino Ferrer <diegof30@gmail.com>
Tue, 6 Aug 2019 18:59:11 +0000 (18:59 +0000)
committerDiego Trevino Ferrer <diegof30@gmail.com>
Tue, 6 Aug 2019 18:59:11 +0000 (18:59 +0000)
commitdab6850b77b05d401d5df6009b772e56b6b4371e
treeeb13cc2091845dfa8adf479f32a6bcd7f8664180
parent451b7ea33465054093c78df349653494c6fef15b
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368071 91177308-0d34-0410-b5e6-96231b3b80d8
13 files changed:
docs/BugpointRedesign.md [new file with mode: 0644]
test/Reduce/Inputs/remove-funcs.sh [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.h [new file with mode: 0644]
tools/llvm-reduce/deltas/RemoveFunctions.cpp [new file with mode: 0644]
tools/llvm-reduce/deltas/RemoveFunctions.h [new file with mode: 0644]
tools/llvm-reduce/llvm-reduce.cpp [new file with mode: 0644]