[llvm] [MCA] Avoid repeated hash lookups (NFC) (PR #129192)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 11:13:19 PST 2025
================
@@ -634,16 +634,14 @@ InstrBuilder::createInstrDescImpl(const MCInst &MCI,
bool IsVariadic = MCDesc.isVariadic();
if ((ID->IsRecyclable = !IsVariadic && !IsVariant)) {
auto DKey = std::make_pair(MCI.getOpcode(), SchedClassID);
- Descriptors[DKey] = std::move(ID);
- return *Descriptors[DKey];
+ return *(Descriptors[DKey] = std::move(ID));
----------------
kazutakahirata wrote:
I could use `insert_or_assign`, but that would be a bit mouthful though:
```
return *(Descriptors[DKey] = std::move(ID));
return *(Descriptors.insert_or_assign(DKey, std::move(ID)).first->second);
```
https://github.com/llvm/llvm-project/pull/129192
More information about the llvm-commits
mailing list