[llvm] 4fee756 - Delete copy-ctor of MachineFrameInfo.
Amara Emerson via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 5 23:24:50 PDT 2021
Author: Amara Emerson
Date: 2021-08-05T23:24:37-07:00
New Revision: 4fee756c75af4bb6367508626ceb5ba12bd04eb8
URL: https://github.com/llvm/llvm-project/commit/4fee756c75af4bb6367508626ceb5ba12bd04eb8
DIFF: https://github.com/llvm/llvm-project/commit/4fee756c75af4bb6367508626ceb5ba12bd04eb8.diff
LOG: Delete copy-ctor of MachineFrameInfo.
I just hit a nasty bug when writing a unit test after calling MF->getFrameInfo()
without declaring the variable as a reference.
Deleting the copy-constructor also showed a place in the ARM backend which was
doing the same thing, albeit it didn't impact correctness there from the looks of it.
Added:
Modified:
llvm/include/llvm/CodeGen/MachineFrameInfo.h
llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/MachineFrameInfo.h b/llvm/include/llvm/CodeGen/MachineFrameInfo.h
index 28a59703dc608..5df468102a8a3 100644
--- a/llvm/include/llvm/CodeGen/MachineFrameInfo.h
+++ b/llvm/include/llvm/CodeGen/MachineFrameInfo.h
@@ -342,6 +342,8 @@ class MachineFrameInfo {
: StackAlignment(assumeAligned(StackAlignment)),
StackRealignable(StackRealignable), ForcedRealign(ForcedRealign) {}
+ MachineFrameInfo(const MachineFrameInfo &) = delete;
+
/// Return true if there are any stack objects in this function.
bool hasStackObjects() const { return !Objects.empty(); }
diff --git a/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp b/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
index ea41442857f37..9f2aec690d41e 100644
--- a/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
+++ b/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
@@ -1121,7 +1121,7 @@ static bool ValidateMVEStore(MachineInstr *MI, MachineLoop *ML) {
return false;
int FI = GetFrameIndex(MI->memoperands().front());
- MachineFrameInfo FrameInfo = MI->getParent()->getParent()->getFrameInfo();
+ auto &FrameInfo = MI->getParent()->getParent()->getFrameInfo();
if (FI == -1 || !FrameInfo.isSpillSlotObjectIndex(FI))
return false;
More information about the llvm-commits
mailing list