[llvm] 364d178 - Sink MachineFunction private method out of line
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 13 15:37:04 PST 2019
Author: Reid Kleckner
Date: 2019-11-13T15:36:58-08:00
New Revision: 364d1785a6e3f9b149cef29849e653abe5548cc2
URL: https://github.com/llvm/llvm-project/commit/364d1785a6e3f9b149cef29849e653abe5548cc2
DIFF: https://github.com/llvm/llvm-project/commit/364d1785a6e3f9b149cef29849e653abe5548cc2.diff
LOG: Sink MachineFunction private method out of line
This method is private and only called from this file and doesn't need
to be inline. Saves a TargetMachine.h include in MachineFunction.h, a
popular header. The include was introduced in 98603a8153086 despite the
forward decl of LLVMTargetMachine.
Added:
Modified:
llvm/include/llvm/CodeGen/MachineFunction.h
llvm/lib/CodeGen/MachineFunction.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/MachineFunction.h b/llvm/include/llvm/CodeGen/MachineFunction.h
index c5a6a6eacf0c..57038d239fa2 100644
--- a/llvm/include/llvm/CodeGen/MachineFunction.h
+++ b/llvm/include/llvm/CodeGen/MachineFunction.h
@@ -36,7 +36,6 @@
#include "llvm/Support/Compiler.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/Recycler.h"
-#include "llvm/Target/TargetMachine.h"
#include <cassert>
#include <cstdint>
#include <memory>
@@ -403,14 +402,7 @@ class MachineFunction {
/// A helper function that returns call site info for a give call
/// instruction if debug entry value support is enabled.
- CallSiteInfoMap::iterator getCallSiteInfo(const MachineInstr *MI) {
- assert(MI->isCall() &&
- "Call site info refers only to call instructions!");
-
- if (!Target.Options.EnableDebugEntryValues)
- return CallSitesInfo.end();
- return CallSitesInfo.find(MI);
- }
+ CallSiteInfoMap::iterator getCallSiteInfo(const MachineInstr *MI);
// Callbacks for insertion and removal.
void handleInsertion(MachineInstr &MI);
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp
index 115aad3880f7..b40f0b46bc12 100644
--- a/llvm/lib/CodeGen/MachineFunction.cpp
+++ b/llvm/lib/CodeGen/MachineFunction.cpp
@@ -830,6 +830,15 @@ try_next:;
return FilterID;
}
+MachineFunction::CallSiteInfoMap::iterator
+MachineFunction::getCallSiteInfo(const MachineInstr *MI) {
+ assert(MI->isCall() && "Call site info refers only to call instructions!");
+
+ if (!Target.Options.EnableDebugEntryValues)
+ return CallSitesInfo.end();
+ return CallSitesInfo.find(MI);
+}
+
void MachineFunction::moveCallSiteInfo(const MachineInstr *Old,
const MachineInstr *New) {
assert(New->isCall() && "Call site info refers only to call instructions!");
More information about the llvm-commits
mailing list