Skip to content

Commit a01780f

Browse files
author
Colin LeMahieu
committed
[MC] Allow backends to decide relaxation for unresolved fixups.
Differential Revision: http://reviews.llvm.org/D8217 llvm-svn: 238659
1 parent 2ea204e commit a01780f

File tree

3 files changed

+34
-24
lines changed

3 files changed

+34
-24
lines changed

llvm/include/llvm/MC/MCAsmBackend.h

+6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ class MCAsmBackend {
9797

9898
/// Target specific predicate for whether a given fixup requires the
9999
/// associated instruction to be relaxed.
100+
virtual bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
101+
uint64_t Value,
102+
const MCRelaxableFragment *DF,
103+
const MCAsmLayout &Layout) const;
104+
105+
/// Simple predicate for targets where !Resolved implies requiring relaxation
100106
virtual bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
101107
const MCRelaxableFragment *DF,
102108
const MCAsmLayout &Layout) const = 0;

llvm/lib/MC/MCAsmBackend.cpp

+25-19
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,33 @@ MCAsmBackend::MCAsmBackend() : HasDataInCodeSupport(false) {}
1616

1717
MCAsmBackend::~MCAsmBackend() {}
1818

19-
const MCFixupKindInfo &
20-
MCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
19+
const MCFixupKindInfo &MCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
2120
static const MCFixupKindInfo Builtins[] = {
22-
{ "FK_Data_1", 0, 8, 0 },
23-
{ "FK_Data_2", 0, 16, 0 },
24-
{ "FK_Data_4", 0, 32, 0 },
25-
{ "FK_Data_8", 0, 64, 0 },
26-
{ "FK_PCRel_1", 0, 8, MCFixupKindInfo::FKF_IsPCRel },
27-
{ "FK_PCRel_2", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
28-
{ "FK_PCRel_4", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
29-
{ "FK_PCRel_8", 0, 64, MCFixupKindInfo::FKF_IsPCRel },
30-
{ "FK_GPRel_1", 0, 8, 0 },
31-
{ "FK_GPRel_2", 0, 16, 0 },
32-
{ "FK_GPRel_4", 0, 32, 0 },
33-
{ "FK_GPRel_8", 0, 64, 0 },
34-
{ "FK_SecRel_1", 0, 8, 0 },
35-
{ "FK_SecRel_2", 0, 16, 0 },
36-
{ "FK_SecRel_4", 0, 32, 0 },
37-
{ "FK_SecRel_8", 0, 64, 0 }
38-
};
21+
{"FK_Data_1", 0, 8, 0},
22+
{"FK_Data_2", 0, 16, 0},
23+
{"FK_Data_4", 0, 32, 0},
24+
{"FK_Data_8", 0, 64, 0},
25+
{"FK_PCRel_1", 0, 8, MCFixupKindInfo::FKF_IsPCRel},
26+
{"FK_PCRel_2", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
27+
{"FK_PCRel_4", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
28+
{"FK_PCRel_8", 0, 64, MCFixupKindInfo::FKF_IsPCRel},
29+
{"FK_GPRel_1", 0, 8, 0},
30+
{"FK_GPRel_2", 0, 16, 0},
31+
{"FK_GPRel_4", 0, 32, 0},
32+
{"FK_GPRel_8", 0, 64, 0},
33+
{"FK_SecRel_1", 0, 8, 0},
34+
{"FK_SecRel_2", 0, 16, 0},
35+
{"FK_SecRel_4", 0, 32, 0},
36+
{"FK_SecRel_8", 0, 64, 0}};
3937

4038
assert((size_t)Kind <= array_lengthof(Builtins) && "Unknown fixup kind");
4139
return Builtins[Kind];
4240
}
41+
42+
bool MCAsmBackend::fixupNeedsRelaxationAdvanced(
43+
const MCFixup &Fixup, bool Resolved, uint64_t Value,
44+
const MCRelaxableFragment *DF, const MCAsmLayout &Layout) const {
45+
if (!Resolved)
46+
return true;
47+
return fixupNeedsRelaxation(Fixup, Value, DF, Layout);
48+
}

llvm/lib/MC/MCAssembler.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -895,13 +895,11 @@ void MCAssembler::Finish() {
895895
bool MCAssembler::fixupNeedsRelaxation(const MCFixup &Fixup,
896896
const MCRelaxableFragment *DF,
897897
const MCAsmLayout &Layout) const {
898-
// If we cannot resolve the fixup value, it requires relaxation.
899898
MCValue Target;
900899
uint64_t Value;
901-
if (!evaluateFixup(Layout, Fixup, DF, Target, Value))
902-
return true;
903-
904-
return getBackend().fixupNeedsRelaxation(Fixup, Value, DF, Layout);
900+
bool Resolved = evaluateFixup(Layout, Fixup, DF, Target, Value);
901+
return getBackend().fixupNeedsRelaxationAdvanced(Fixup, Resolved, Value, DF,
902+
Layout);
905903
}
906904

907905
bool MCAssembler::fragmentNeedsRelaxation(const MCRelaxableFragment *F,

0 commit comments

Comments
 (0)