From 4d37bbc429f61ea0f60233e258ebcb1dfc031513 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 23 Feb 2022 16:32:40 +0100 Subject: [PATCH] [Bitcode] Store function type IDs rather than function types This resolves one of the type ID propagation TODOs. --- llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 0433b8f..2547046 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> ContainedTypeIDs; - DenseMap FunctionTypes; + DenseMap FunctionTypeIDs; BitcodeReaderValueList ValueList; Optional MDLoader; std::vector ComdatList; @@ -3503,7 +3503,7 @@ Error BitcodeReader::parseFunctionRecord(ArrayRef Record) { assert(Func->getFunctionType() == FTy && "Incorrect fully specified type provided for function"); - FunctionTypes[Func] = cast(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; -- 2.7.4