[llvm] r345151 - IR: Optimize FunctionType::get to perform one hash lookup instead of two, NFCI
Krasimir Georgiev via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 24 08:18:51 PDT 2018
Author: krasimir
Date: Wed Oct 24 08:18:51 2018
New Revision: 345151
URL: http://llvm.org/viewvc/llvm-project?rev=345151&view=rev
Log:
IR: Optimize FunctionType::get to perform one hash lookup instead of two, NFCI
Summary: This function was performing two hash lookups when a new function type was requested: first checking if it exists and second to insert it. This patch updates the function to perform a single hash lookup in this case by updating the value in the hash table in-place in case the function type was not there before.
Reviewers: bkramer
Reviewed By: bkramer
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D53471
Modified:
llvm/trunk/lib/IR/Type.cpp
Modified: llvm/trunk/lib/IR/Type.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Type.cpp?rev=345151&r1=345150&r2=345151&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Type.cpp (original)
+++ llvm/trunk/lib/IR/Type.cpp Wed Oct 24 08:18:51 2018
@@ -297,20 +297,26 @@ FunctionType::FunctionType(Type *Result,
FunctionType *FunctionType::get(Type *ReturnType,
ArrayRef<Type*> Params, bool isVarArg) {
LLVMContextImpl *pImpl = ReturnType->getContext().pImpl;
- FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
- auto I = pImpl->FunctionTypes.find_as(Key);
+ const FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
FunctionType *FT;
-
- if (I == pImpl->FunctionTypes.end()) {
+ // Since we only want to allocate a fresh function type in case none is found
+ // and we don't want to perform two lookups (one for checking if existent and
+ // one for inserting the newly allocated one), here we instead lookup based on
+ // Key and update the reference to the function type in-place to a newly
+ // allocated one if not found.
+ auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key);
+ if (Insertion.second) {
+ // The function type was not found. Allocate one and update FunctionTypes
+ // in-place.
FT = (FunctionType *)pImpl->TypeAllocator.Allocate(
sizeof(FunctionType) + sizeof(Type *) * (Params.size() + 1),
alignof(FunctionType));
new (FT) FunctionType(ReturnType, Params, isVarArg);
- pImpl->FunctionTypes.insert(FT);
+ *Insertion.first = FT;
} else {
- FT = *I;
+ // The function type was found. Just return it.
+ FT = *Insertion.first;
}
-
return FT;
}
More information about the llvm-commits
mailing list