[PM] Port TTI to the new pass manager, introducing a TargetIRAnalysis to

produce it.

This adds a function to the TargetMachine that produces this analysis
via a callback for each function. This in turn faves the way to produce
a *different* TTI per-function with the correct subtarget cached.

I've also done the necessary wiring in the opt tool to thread the target
machine down and make it available to the pass registry so that we can
construct this analysis from a target machine when available.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2015-02-01 10:11:22 +00:00
parent 270f7a2669
commit 7724e8efa2
11 changed files with 150 additions and 14 deletions

View File

@@ -172,6 +172,13 @@ void TargetMachine::setDataSections(bool V) {
Options.DataSections = V;
}
TargetIRAnalysis TargetMachine::getTargetIRAnalysis() {
// While targets are free to just override getTTI and rely on this analysis,
// it would be more efficient to override and provide an analysis that could
// directly construct that target's TTI without the virtual call.
return TargetIRAnalysis([this](Function &) { return getTTI(); });
}
TargetTransformInfo TargetMachine::getTTI() {
return TargetTransformInfo(getDataLayout());
}