[llvm-jitlink] Make -show-addrs work without -check, fix fallout. (#175491) Ensures that the address scraping passes are added to the JIT linker pipeline if either of the -check or -show-addrs are passed. Prior to this commit we only considered -check, so passing -show-addrs on its own was printing an empty (unpopulated) symbol table. This change exposed bugs in RuntimeDyldChecker's `MemoryRegionInfo` type, aned llvm-jitlink's symbol printing code: - `MemoryRegionInfo` was assuming that zero-sized symbols wouldn't be defined and was using Size == 0 as a proxy for "region info uninitialized". This was triggering assertions for valid LinkGraphs containing zero-sized symbols. - llvm-jitlink's symbol printing code was assuming that all defined symbols contained content, and was not correctly handling zero-fill / absolute symbols. This triggered assertions about requesting content addresses for non-content symbols. This commit fixes the issues above, and adds both a generic testcase for the -show-addrs option, and an ELF-specific testcase with a zero-sized symbol to check that the option works for such symbols.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.