diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2019-03-04 13:34:56 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2019-03-04 13:34:56 +0000 |
commit | 3437142aadc9ba4d638d3f068b5b9b6d52a7748e (patch) | |
tree | e69c97935a9f7d75aefb70050a2db33ee656893f | |
parent | 6023d5990d063ddf6df37bb54d9bd1d1752a3138 (diff) | |
download | bcm5719-llvm-3437142aadc9ba4d638d3f068b5b9b6d52a7748e.tar.gz bcm5719-llvm-3437142aadc9ba4d638d3f068b5b9b6d52a7748e.zip |
[MCA] Remove unused methods. NFC
llvm-svn: 355314
-rw-r--r-- | llvm/include/llvm/MCA/HardwareUnits/LSUnit.h | 1 | ||||
-rw-r--r-- | llvm/include/llvm/MCA/HardwareUnits/Scheduler.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h b/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h index 5ed2b5bc814..c9e1cc3cdc4 100644 --- a/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h +++ b/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h @@ -143,7 +143,6 @@ class LSUnit : public HardwareUnit { void assignLQSlot(unsigned Index); void assignSQSlot(unsigned Index); - bool isReadyNoAlias(unsigned Index) const; // An instruction that both 'mayStore' and 'HasUnmodeledSideEffects' is // conservatively treated as a store barrier. It forces older store to be diff --git a/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h b/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h index fc618a77d70..dc6722c4e85 100644 --- a/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h +++ b/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h @@ -225,9 +225,6 @@ public: /// resources are not available. InstRef select(); - bool arePipelinesFullyUsed() const { - return !Resources->getAvailableProcResUnits(); - } bool isReadySetEmpty() const { return ReadySet.empty(); } bool isWaitSetEmpty() const { return WaitSet.empty(); } |