Zhang via llvm-dev
2021-Apr-12 03:41 UTC
[llvm-dev] Unreferenced BlockAddress broke IR compilation?
Hi: I'm currently using 176249bd @ release/11.x for a downstream project that contains two passes. The first pass randomly introduces DeadBasicBlocks (BasicBlocks that are not branched to in any way). The second pass creates BlockAddress of all BasicBlocks in a function, put them into a GlobalVariable and patch br instructions to GEP+Load+indibr instructions. When the first pass didn't create deadBasicBlock, the transformed IR fully works as intended, however if deadbasicblock is introduced, all elements in the GV created in the second pass references to the same address in the compiled object file. Not sure if this is a bug on LLVM side or not -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20210412/802d4e13/attachment.html>
Arthur Eubanks via llvm-dev
2021-Apr-12 03:57 UTC
[llvm-dev] Unreferenced BlockAddress broke IR compilation?
Does https://reviews.llvm.org/rG90af134473331095adcf2c7e4a511ac35d9f2f4a help? On Sun, Apr 11, 2021 at 8:41 PM Zhang via llvm-dev <llvm-dev at lists.llvm.org> wrote:> Hi: > I'm currently using 176249bd @ release/11.x for a downstream project that > contains two passes. > The first pass randomly introduces DeadBasicBlocks (BasicBlocks that are > not branched to in any way). > The second pass creates BlockAddress of all BasicBlocks in a function, put > them into a GlobalVariable and patch br instructions to GEP+Load+indibr > instructions. > > When the first pass didn't create deadBasicBlock, the transformed IR fully > works as intended, however if deadbasicblock is introduced, all elements in > the GV created in the second pass references to the same address in the > compiled object file. > > Not sure if this is a bug on LLVM side or not > > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20210411/6f299472/attachment.html>