[PATCH] D120781: [IRLinker] materialize Functions before moving any
Duncan P. N. Exon Smith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 1 16:20:03 PST 2022
dexonsmith added a comment.
Thanks for working on this; it's pretty hairy.
> This confuses BitcodeReader, which cannot disambiguate whether a
> blockaddress is referring to a function which has not yet been parsed
> ("materialized") or is simply empty because its body was spliced out.
Another way to solve this would be to mark the function somehow (either intrusively, somehow, or by adding it to a set / map). Can you contrast with that approach?
================
Comment at: llvm/lib/Linker/IRMover.cpp:1522-1526
+ for (GlobalValue *GV : Worklist)
+ if (auto *F = dyn_cast<Function>(GV))
+ if (!F->isDeclaration())
+ if (Error E = F->materialize())
+ return E;
----------------
Can `materialize()` add things to the Worklist? If so, I don't think the ranged-based for is safe.
I also worry if it's sufficient; can the worklist loop below add new functions to the worklist, which haven't been materialized ahead of time?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120781/new/
https://reviews.llvm.org/D120781
More information about the llvm-commits
mailing list