From e038552c8ae99abe129837255273a992f72c6d9c Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sun, 1 Feb 2015 10:11:22 +0000 Subject: [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. llvm-svn: 227721 --- llvm/lib/Target/TargetMachine.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'llvm/lib/Target/TargetMachine.cpp') diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index a8c877f848a..1e5bfb24729 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -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()); } -- cgit v1.2.3