[NFCI][BitcodeReader]Read real GUID from VI as opposed to storing it in map #107735
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently,
ValueIdToValueInfoMap
[1] storesstd::tuple<ValueInfo, GlobalValue::GUID /* original GUID */, GlobalValue::GUID /* real GUID*/ >
. This change updates the stored value type tostd::pair<ValueInfo, GlobalValue::GUID /* original GUID */>
, and reads real GUID from ValueInfo.When an entry is inserted into
ValueIdToValueInfoMap
, ValueInfo is created or inserted using real GUID [2]. ValueInfo keeps a pointer to GlobalValueMap [3], using eitherGUID
or{GUID, Name}
[4] when reading per-module summaries to create a combined summary.[1] owned by per module-summary bitcode reader
llvm-project/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
Lines 947 to 950 in caebb45
[2] first, second, third
[3]
llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
Lines 1427 to 1431 in caebb45
[4]
llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
Line 1631 in caebb45
and
llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
Line 1621 in caebb45