[lld][WebAssembly] Fix symbol type for __memory_base/__table_base. (#178773) When linking PIC code as non-PIC we internally define `__memory_base` and `__table_base`. However we were defining these incorrectly as data symbols and not global symbols (as in Wasm globals). This happened to work incidentally as long as there was a live reference to the symbol. This is because the live reference would cause a GOT entry to be created for these symbol and then they could be referenced via via `R_WASM_GLOBAL_INDEX_LEB` or `R_WASM_GLOBAL_INDEX_I32`. However, when no live reference existed there could still be references from debug sections, and in that case the relocation code was crashing. Fixes: #174676
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.