Skip to content

Commit a7e2133

Browse files
kazutakahiratatmsri
authored andcommitted
[ThinLTO] Add lookup to ImportListsTy (llvm#109036)
This is primarily to unblock Rust, which could potentially use ImportListsTy::operator[] on a module that's not in ListsImpl and cause concurrency problems. This patch fixes a regression in the sense that it restores ImportListsTy::lookup, which was available when ImportListsTy was just a plain DenseMap.
1 parent 19ff2ad commit a7e2133

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

llvm/include/llvm/Transforms/IPO/FunctionImport.h

+10-2
Original file line numberDiff line numberDiff line change
@@ -270,20 +270,28 @@ class FunctionImporter {
270270
// A map from destination modules to lists of imports.
271271
class ImportListsTy {
272272
public:
273-
ImportListsTy() = default;
274-
ImportListsTy(size_t Size) : ListsImpl(Size) {}
273+
ImportListsTy() : EmptyList(ImportIDs) {}
274+
ImportListsTy(size_t Size) : EmptyList(ImportIDs), ListsImpl(Size) {}
275275

276276
ImportMapTy &operator[](StringRef DestMod) {
277277
return ListsImpl.try_emplace(DestMod, ImportIDs).first->second;
278278
}
279279

280+
const ImportMapTy &lookup(StringRef DestMod) const {
281+
auto It = ListsImpl.find(DestMod);
282+
if (It != ListsImpl.end())
283+
return It->second;
284+
return EmptyList;
285+
}
286+
280287
size_t size() const { return ListsImpl.size(); }
281288

282289
using const_iterator = DenseMap<StringRef, ImportMapTy>::const_iterator;
283290
const_iterator begin() const { return ListsImpl.begin(); }
284291
const_iterator end() const { return ListsImpl.end(); }
285292

286293
private:
294+
ImportMapTy EmptyList;
287295
DenseMap<StringRef, ImportMapTy> ListsImpl;
288296
ImportIDTable ImportIDs;
289297
};

0 commit comments

Comments
 (0)