]> granicus.if.org Git - llvm/commit
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)
commitc2ab705011f2e30aa8ca0b706db65979a336e714
tree30192d22022c483e8ae4ca45659d6b33f6de6f93
parentb5de9a3fcc87a3146ff04d6060c5a98c4ce6ed81
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@368214 91177308-0d34-0410-b5e6-96231b3b80d8
14 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.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]