[llvm] db603a0 - [MC] Move ELF-specific handleAddSubRelocations to ELFObjectWriter::recordRelocation
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 19:08:12 PDT 2025
Author: Fangrui Song
Date: 2025-03-29T19:08:07-07:00
New Revision: db603a09dabefc6847423c8968578ce6d54a7a2d
URL: https://github.com/llvm/llvm-project/commit/db603a09dabefc6847423c8968578ce6d54a7a2d
DIFF: https://github.com/llvm/llvm-project/commit/db603a09dabefc6847423c8968578ce6d54a7a2d.diff
LOG: [MC] Move ELF-specific handleAddSubRelocations to ELFObjectWriter::recordRelocation
Added:
Modified:
llvm/lib/MC/ELFObjectWriter.cpp
llvm/lib/MC/MCAssembler.cpp
llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
Removed:
################################################################################
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp
index 22af6d9e9ad0a..f3445daf73ac1 100644
--- a/llvm/lib/MC/ELFObjectWriter.cpp
+++ b/llvm/lib/MC/ELFObjectWriter.cpp
@@ -1377,6 +1377,12 @@ void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
const MCTargetOptions *TO = Ctx.getTargetOptions();
if (auto *RefB = Target.getSubSym()) {
+ // When there is no relocation specifier, a linker relaxation target may
+ // emit ADD/SUB relocations for A-B+C.
+ if (Target.getSymA() && Backend.handleAddSubRelocations(
+ Asm, *Fragment, Fixup, Target, FixedValue))
+ return;
+
const auto &SymB = cast<MCSymbolELF>(*RefB);
if (SymB.isUndefined()) {
Ctx.reportError(Fixup.getLoc(),
diff --git a/llvm/lib/MC/MCAssembler.cpp b/llvm/lib/MC/MCAssembler.cpp
index 1c79af412a4d7..835fa8af4cf8f 100644
--- a/llvm/lib/MC/MCAssembler.cpp
+++ b/llvm/lib/MC/MCAssembler.cpp
@@ -234,13 +234,6 @@ bool MCAssembler::evaluateFixup(const MCFixup &Fixup, const MCFragment *DF,
}
}
- // A linker relaxation target may emit ADD/SUB relocations for A-B+C. Let
- // recordRelocation handle non-VK_None cases like A at plt-B+C.
- if (!IsResolved && Target.getSymA() && Target.getSubSym() &&
- Target.getRefKind() == 0 &&
- getBackend().handleAddSubRelocations(*this, *DF, Fixup, Target, Value))
- return true;
-
return IsResolved;
}
diff --git a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
index 260b0d0e31761..c83a18746e060 100644
--- a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
+++ b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchAsmBackend.cpp
@@ -452,6 +452,8 @@ bool LoongArchAsmBackend::handleAddSubRelocations(const MCAssembler &Asm,
const MCFixup &Fixup,
const MCValue &Target,
uint64_t &FixedValue) const {
+ assert(Target.getRefKind() == 0 &&
+ "relocatable SymA-SymB cannot have relocation specifier");
std::pair<MCFixupKind, MCFixupKind> FK;
uint64_t FixedValueA, FixedValueB;
const MCSymbol &SA = Target.getSymA()->getSymbol();
diff --git a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
index 0cedbd9b8eb8d..b5c66cc1e83f5 100644
--- a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
+++ b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
@@ -590,6 +590,8 @@ bool RISCVAsmBackend::handleAddSubRelocations(const MCAssembler &Asm,
const MCFixup &Fixup,
const MCValue &Target,
uint64_t &FixedValue) const {
+ assert(Target.getRefKind() == 0 &&
+ "relocatable SymA-SymB cannot have relocation specifier");
uint64_t FixedValueA, FixedValueB;
unsigned TA = 0, TB = 0;
switch (Fixup.getKind()) {
More information about the llvm-commits
mailing list