diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2019-09-30 17:24:25 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2019-09-30 17:24:25 +0000 |
commit | 2730df2e164b9a1f98cebd2dd51f059650fcec27 (patch) | |
tree | 568724bebc98d00baa5edd71f2fff113b5b7e5e7 /llvm/lib/MCA/HardwareUnits/LSUnit.cpp | |
parent | ad888846585f2b69808fd1d041cf6818c21905da (diff) | |
download | bcm5719-llvm-2730df2e164b9a1f98cebd2dd51f059650fcec27.tar.gz bcm5719-llvm-2730df2e164b9a1f98cebd2dd51f059650fcec27.zip |
[MCA] Use references to LSUnitBase in class Scheduler and add helper methods to acquire/release LS queue entries. NFCI
llvm-svn: 373236
Diffstat (limited to 'llvm/lib/MCA/HardwareUnits/LSUnit.cpp')
-rw-r--r-- | llvm/lib/MCA/HardwareUnits/LSUnit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/MCA/HardwareUnits/LSUnit.cpp b/llvm/lib/MCA/HardwareUnits/LSUnit.cpp index 0465f53ed36..973bb908e41 100644 --- a/llvm/lib/MCA/HardwareUnits/LSUnit.cpp +++ b/llvm/lib/MCA/HardwareUnits/LSUnit.cpp @@ -72,9 +72,9 @@ unsigned LSUnit::dispatch(const InstRef &IR) { assert((Desc.MayLoad || Desc.MayStore) && "Not a memory operation!"); if (Desc.MayLoad) - assignLQSlot(); + acquireLQSlot(); if (Desc.MayStore) - assignSQSlot(); + acquireSQSlot(); if (Desc.MayStore) { // Always create a new group for store operations. @@ -173,13 +173,13 @@ void LSUnitBase::onInstructionExecuted(const InstRef &IR) { } if (IsALoad) { - UsedLQEntries--; + releaseLQSlot(); LLVM_DEBUG(dbgs() << "[LSUnit]: Instruction idx=" << IR.getSourceIndex() << " has been removed from the load queue.\n"); } if (IsAStore) { - UsedSQEntries--; + releaseSQSlot(); LLVM_DEBUG(dbgs() << "[LSUnit]: Instruction idx=" << IR.getSourceIndex() << " has been removed from the store queue.\n"); } |