[llvm] d6fbffa - [MC] evaluateAsRelocatable: remove the Fixup argument
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 15 14:46:32 PDT 2025
Author: Fangrui Song
Date: 2025-03-15T14:46:27-07:00
New Revision: d6fbffa23c84e622735b3e880fd800985c1c0072
URL: https://github.com/llvm/llvm-project/commit/d6fbffa23c84e622735b3e880fd800985c1c0072
DIFF: https://github.com/llvm/llvm-project/commit/d6fbffa23c84e622735b3e880fd800985c1c0072.diff
LOG: [MC] evaluateAsRelocatable: remove the Fixup argument
Commit 752b91bd821ad8a23e004b6cd631ae4f6984ae8b added the argument for
PowerPC to evaluate @l/@ha as constant in 2014. However, this is not
needed and has been cleaned up by
commit 8560da28c69de481f3ad147722577e87b902facb.
Mips also had an inappropriate use, which has been fixed by
79d84a878e83990c235da8710273a98bf835c915
Added:
Modified:
llvm/include/llvm/MC/MCExpr.h
llvm/lib/MC/MCExpr.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/MC/MCExpr.h b/llvm/include/llvm/MC/MCExpr.h
index 2017b34b246cb..f6ec0ab52877e 100644
--- a/llvm/include/llvm/MC/MCExpr.h
+++ b/llvm/include/llvm/MC/MCExpr.h
@@ -63,7 +63,6 @@ class MCExpr {
}
bool evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
- const MCFixup *Fixup,
const SectionAddrMap *Addrs, bool InSet) const;
unsigned getSubclassData() const { return SubclassData; }
diff --git a/llvm/lib/MC/MCExpr.cpp b/llvm/lib/MC/MCExpr.cpp
index db3b441f4cced..a4dba8eb46243 100644
--- a/llvm/lib/MC/MCExpr.cpp
+++ b/llvm/lib/MC/MCExpr.cpp
@@ -285,8 +285,7 @@ bool MCExpr::evaluateAsAbsolute(int64_t &Res, const MCAssembler *Asm,
return true;
}
- bool IsRelocatable =
- evaluateAsRelocatableImpl(Value, Asm, nullptr, Addrs, InSet);
+ bool IsRelocatable = evaluateAsRelocatableImpl(Value, Asm, Addrs, InSet);
// Record the current value.
Res = Value.getConstant();
@@ -496,11 +495,11 @@ static bool evaluateSymbolicAdd(const MCAssembler *Asm,
bool MCExpr::evaluateAsRelocatable(MCValue &Res, const MCAssembler *Asm,
const MCFixup *Fixup) const {
- return evaluateAsRelocatableImpl(Res, Asm, Fixup, nullptr, false);
+ return evaluateAsRelocatableImpl(Res, Asm, nullptr, false);
}
bool MCExpr::evaluateAsValue(MCValue &Res, const MCAssembler &Asm) const {
- return evaluateAsRelocatableImpl(Res, &Asm, nullptr, nullptr, true);
+ return evaluateAsRelocatableImpl(Res, &Asm, nullptr, true);
}
static bool canExpand(const MCSymbol &Sym, bool InSet) {
@@ -520,13 +519,13 @@ static bool canExpand(const MCSymbol &Sym, bool InSet) {
}
bool MCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
- const MCFixup *Fixup,
const SectionAddrMap *Addrs,
bool InSet) const {
++stats::MCExprEvaluate;
switch (getKind()) {
case Target:
- return cast<MCTargetExpr>(this)->evaluateAsRelocatableImpl(Res, Asm, Fixup);
+ return cast<MCTargetExpr>(this)->evaluateAsRelocatableImpl(Res, Asm,
+ nullptr);
case Constant:
Res = MCValue::get(cast<MCConstantExpr>(this)->getValue());
@@ -542,8 +541,8 @@ bool MCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
if (Sym.isVariable() && (Kind == MCSymbolRefExpr::VK_None || Layout) &&
canExpand(Sym, InSet)) {
bool IsMachO = SRE->hasSubsectionsViaSymbols();
- if (Sym.getVariableValue()->evaluateAsRelocatableImpl(
- Res, Asm, Fixup, Addrs, InSet || IsMachO)) {
+ if (Sym.getVariableValue()->evaluateAsRelocatableImpl(Res, Asm, Addrs,
+ InSet || IsMachO)) {
if (Kind != MCSymbolRefExpr::VK_None) {
if (Res.isAbsolute()) {
Res = MCValue::get(SRE, nullptr, 0);
@@ -588,8 +587,7 @@ bool MCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
const MCUnaryExpr *AUE = cast<MCUnaryExpr>(this);
MCValue Value;
- if (!AUE->getSubExpr()->evaluateAsRelocatableImpl(Value, Asm, Fixup, Addrs,
- InSet))
+ if (!AUE->getSubExpr()->evaluateAsRelocatableImpl(Value, Asm, Addrs, InSet))
return false;
switch (AUE->getOpcode()) {
@@ -624,9 +622,9 @@ bool MCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
const MCBinaryExpr *ABE = cast<MCBinaryExpr>(this);
MCValue LHSValue, RHSValue;
- if (!ABE->getLHS()->evaluateAsRelocatableImpl(LHSValue, Asm, Fixup, Addrs,
+ if (!ABE->getLHS()->evaluateAsRelocatableImpl(LHSValue, Asm, Addrs,
InSet) ||
- !ABE->getRHS()->evaluateAsRelocatableImpl(RHSValue, Asm, Fixup, Addrs,
+ !ABE->getRHS()->evaluateAsRelocatableImpl(RHSValue, Asm, Addrs,
InSet)) {
// Check if both are Target Expressions, see if we can compare them.
if (const MCTargetExpr *L = dyn_cast<MCTargetExpr>(ABE->getLHS())) {
More information about the llvm-commits
mailing list