[llvm] 4d37bbc - [Bitcode] Store function type IDs rather than function types
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 23 07:36:28 PST 2022
Author: Nikita Popov
Date: 2022-02-23T16:36:20+01:00
New Revision: 4d37bbc429f61ea0f60233e258ebcb1dfc031513
URL: https://github.com/llvm/llvm-project/commit/4d37bbc429f61ea0f60233e258ebcb1dfc031513
DIFF: https://github.com/llvm/llvm-project/commit/4d37bbc429f61ea0f60233e258ebcb1dfc031513.diff
LOG: [Bitcode] Store function type IDs rather than function types
This resolves one of the type ID propagation TODOs.
Added:
Modified:
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index 0433b8fd215ba..2547046be5365 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -488,7 +488,7 @@ class BitcodeReader : public BitcodeReaderBase, public GVMaterializer {
/// types of a Type*. This is used during upgrades of typed pointer IR in
/// opaque pointer mode.
DenseMap<unsigned, SmallVector<unsigned, 1>> ContainedTypeIDs;
- DenseMap<Function *, FunctionType *> FunctionTypes;
+ DenseMap<Function *, unsigned> FunctionTypeIDs;
BitcodeReaderValueList ValueList;
Optional<MetadataLoader> MDLoader;
std::vector<Comdat *> ComdatList;
@@ -3503,7 +3503,7 @@ Error BitcodeReader::parseFunctionRecord(ArrayRef<uint64_t> Record) {
assert(Func->getFunctionType() == FTy &&
"Incorrect fully specified type provided for function");
- FunctionTypes[Func] = cast<FunctionType>(FTy);
+ FunctionTypeIDs[Func] = FTyID;
Func->setCallingConv(CC);
bool isProto = Record[2];
@@ -4092,14 +4092,14 @@ Error BitcodeReader::parseFunctionBody(Function *F) {
unsigned ModuleMDLoaderSize = MDLoader->size();
// Add all the function arguments to the value table.
-#ifndef NDEBUG
unsigned ArgNo = 0;
- FunctionType *FTy = FunctionTypes[F];
-#endif
+ unsigned FTyID = FunctionTypeIDs[F];
for (Argument &I : F->args()) {
- assert(I.getType() == FTy->getParamType(ArgNo++) &&
+ unsigned ArgTyID = getContainedTypeID(FTyID, ArgNo + 1);
+ assert(I.getType() == getTypeByID(ArgTyID) &&
"Incorrect fully specified type for Function Argument");
- ValueList.push_back(&I, TODOTypeID);
+ ValueList.push_back(&I, ArgTyID);
+ ++ArgNo;
}
unsigned NextValueNo = ValueList.size();
BasicBlock *CurBB = nullptr;
More information about the llvm-commits
mailing list