Separate LoopTraversal, ReachingDefAnalysis and BreakFalseDeps into their own files.
authorMarina Yatsina <marina.yatsina@intel.com>
Mon, 22 Jan 2018 10:06:50 +0000 (10:06 +0000)
committerMarina Yatsina <marina.yatsina@intel.com>
Mon, 22 Jan 2018 10:06:50 +0000 (10:06 +0000)
commit0bf841ac2a7039afc2a5589c0735abbc5e263ac6
treea43d2060bce676b98692eab9321947b4d85d591f
parent3d8efa4f0c3cb8fdcd5e052c081786f2b9aaaf8b
Separate LoopTraversal, ReachingDefAnalysis and BreakFalseDeps into their own files.

This is the one of multiple patches that fix bugzilla https://bugs.llvm.org/show_bug.cgi?id=33869
Most of the patches are intended at refactoring the existent code.

Additional relevant reviews:
https://reviews.llvm.org/D40330
https://reviews.llvm.org/D40331
https://reviews.llvm.org/D40332
https://reviews.llvm.org/D40334

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

Change-Id: Ie5f8eb34d98cfdfae23a3072eb69b5794f0e2d56
llvm-svn: 323095
llvm/include/llvm/CodeGen/ExecutionDomainFix.h
llvm/include/llvm/CodeGen/LoopTraversal.h [new file with mode: 0644]
llvm/include/llvm/CodeGen/Passes.h
llvm/include/llvm/CodeGen/ReachingDefAnalysis.h [new file with mode: 0644]
llvm/lib/CodeGen/BreakFalseDeps.cpp [new file with mode: 0644]
llvm/lib/CodeGen/CMakeLists.txt
llvm/lib/CodeGen/ExecutionDomainFix.cpp
llvm/lib/CodeGen/LoopTraversal.cpp [new file with mode: 0644]
llvm/lib/CodeGen/ReachingDefAnalysis.cpp [new file with mode: 0644]
llvm/lib/Target/ARM/ARMTargetMachine.cpp
llvm/lib/Target/X86/X86TargetMachine.cpp