[llvm] 8370ac8 - [TableGen] Remove push_back from loop. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 22:02:26 PST 2025
Author: Craig Topper
Date: 2025-03-07T22:01:15-08:00
New Revision: 8370ac88af288f5afa1028267a85a3456a38e810
URL: https://github.com/llvm/llvm-project/commit/8370ac88af288f5afa1028267a85a3456a38e810
DIFF: https://github.com/llvm/llvm-project/commit/8370ac88af288f5afa1028267a85a3456a38e810.diff
LOG: [TableGen] Remove push_back from loop. NFC
We can initialize the vector to the right size and then assign
over some entries in the loop.
Added:
Modified:
llvm/utils/TableGen/DecoderEmitter.cpp
Removed:
################################################################################
diff --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index 1a5867265dd4d..1f3e28d7066e8 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -1604,16 +1604,14 @@ bool FilterChooser::filterProcessor(bool AllowMixed, bool Greedy) {
// (MIXED) ------ . ----> (MIXED)
// (FILTERED)---- . ----> (FILTERED)
- std::vector<bitAttr_t> bitAttrs;
+ std::vector<bitAttr_t> bitAttrs(BitWidth, ATTR_NONE);
// FILTERED bit positions provide no entropy and are not worthy of pursuing.
// Filter::recurse() set either BIT_TRUE or BIT_FALSE for each position.
for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex)
if (FilterBitValues[BitIndex] == BIT_TRUE ||
FilterBitValues[BitIndex] == BIT_FALSE)
- bitAttrs.push_back(ATTR_FILTERED);
- else
- bitAttrs.push_back(ATTR_NONE);
+ bitAttrs[BitIndex] = ATTR_FILTERED;
for (const auto &OpcPair : Opcodes) {
insn_t insn;
More information about the llvm-commits
mailing list