Split TargetLowering into a CodeGen and a SelectionDAG part.
authorBenjamin Kramer <benny.kra@googlemail.com>
Fri, 11 Jan 2013 20:05:37 +0000 (20:05 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Fri, 11 Jan 2013 20:05:37 +0000 (20:05 +0000)
commit69e42dbd006c0afb732067ece7327988b1e24c01
tree15eda209bdbedb97aed6f16286c25e7d845f4432
parent3e40d927a775994d8f4c2d30695be69c248fa16c
Split TargetLowering into a CodeGen and a SelectionDAG part.

This fixes some of the cycles between libCodeGen and libSelectionDAG. It's still
a complete mess but as long as the edges consist of virtual call it doesn't
cause breakage. BasicTTI did static calls and thus broke some build
configurations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172246 91177308-0d34-0410-b5e6-96231b3b80d8
12 files changed:
include/llvm/CodeGen/Passes.h
include/llvm/Target/TargetLowering.h
lib/CodeGen/BasicTargetTransformInfo.cpp
lib/CodeGen/CMakeLists.txt
lib/CodeGen/DwarfEHPrepare.cpp
lib/CodeGen/IfConversion.cpp
lib/CodeGen/MachineBlockPlacement.cpp
lib/CodeGen/MachineLICM.cpp
lib/CodeGen/SelectionDAG/TargetLowering.cpp
lib/CodeGen/SjLjEHPrepare.cpp
lib/CodeGen/StackProtector.cpp
lib/CodeGen/TargetLoweringBase.cpp [new file with mode: 0644]