Implement LoongArch::scanSectionImpl, following the pattern established for x86, PPC64, SystemZ, AArch64. This merges the getRelExpr and TLS handling for SHF_ALLOC sections into the target-specific scanner, enabling devirtualization and eliminating abstraction overhead. - Inline relocation classification into scanSectionImpl with a switch on relocation type, replacing the generic rs.scan() path. - Use processR_PC/processR_PLT_PC for common PC-relative and PLT relocations. - Inline TLS handling: IE->LE optimization for _PC_ variants only (not _PCADD_ or absolute), TLSDESC->IE/LE for non-extreme code model, GD/LD flag setting without going through generic handleTlsRelocation. - Remove adjustTlsExpr by inlining its logic into scanSectionImpl. - Remove LoongArch-specific code from Relocations.cpp: handleTlsRelocation, execOptimizeInLoongArch, and the sort condition. - Simplify getRelExpr to only handle relocations needed by relocateNonAlloc, scanEhSection, and the extreme code model fallback in relocateAlloc.
The LLVM Compiler Infrastructure
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.
Getting the Source Code and Building LLVM
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.
Getting in touch
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.