]> granicus.if.org Git - llvm/commit
Added Delta IR Reduction Tool
authorDiego Trevino Ferrer <diegof30@gmail.com>
Wed, 7 Aug 2019 00:00:52 +0000 (00:00 +0000)
committerDiego Trevino Ferrer <diegof30@gmail.com>
Wed, 7 Aug 2019 00:00:52 +0000 (00:00 +0000)
commita78c448d9377f342e514caa895ccf2064214494e
tree88385a7322de3627fb158c50fc71a9f319241ee5
parentdd45e41e43c5c88bbcb6b8982ac3e6ff4608da07
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@368112 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]