aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-05-06 20:34:01 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-05-06 20:34:01 +0000
commita5d0b54ec156dd31a77a7994e9552a562cd2bf8c (patch)
tree2b9f8161dba3eb140f439bdc434f412bdb60ccd7 /lib
parent34dcc6fadca0a1117cdbd0e9b35c991a55b6e556 (diff)
downloadexternal_llvm-a5d0b54ec156dd31a77a7994e9552a562cd2bf8c.zip
external_llvm-a5d0b54ec156dd31a77a7994e9552a562cd2bf8c.tar.gz
external_llvm-a5d0b54ec156dd31a77a7994e9552a562cd2bf8c.tar.bz2
MC/X86: Error out if we see a non-constant FK_Data_1 or FK_Data_2 fixup, since
we don't currently support relaxing them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103195 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86AsmBackend.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/lib/Target/X86/X86AsmBackend.cpp b/lib/Target/X86/X86AsmBackend.cpp
index ba9c1d0..b72601a 100644
--- a/lib/Target/X86/X86AsmBackend.cpp
+++ b/lib/Target/X86/X86AsmBackend.cpp
@@ -12,6 +12,7 @@
#include "X86FixupKinds.h"
#include "llvm/ADT/Twine.h"
#include "llvm/MC/MCAssembler.h"
+#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCObjectWriter.h"
#include "llvm/MC/MCSectionELF.h"
#include "llvm/MC/MCSectionMachO.h"
@@ -88,9 +89,20 @@ static unsigned getRelaxedOpcode(unsigned Op) {
bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst,
const SmallVectorImpl<MCAsmFixup> &Fixups) const {
- // Check for a 1byte pcrel fixup, and enforce that we would know how to relax
- // this instruction.
for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
+ // We don't support relaxing anything else currently. Make sure we error out
+ // if we see a non-constant 1 or 2 byte fixup.
+ //
+ // FIXME: We should need to check this here, this is better checked in the
+ // object writer which should be verifying that any final relocations match
+ // the expected fixup. However, that code is more complicated and hasn't
+ // been written yet. See the FIXMEs in MachObjectWriter.cpp.
+ if ((Fixups[i].Kind == FK_Data_1 || Fixups[i].Kind == FK_Data_2) &&
+ !isa<MCConstantExpr>(Fixups[i].Value))
+ report_fatal_error("unexpected small fixup with a non-constant operand!");
+
+ // Check for a 1byte pcrel fixup, and enforce that we would know how to
+ // relax this instruction.
if (unsigned(Fixups[i].Kind) == X86::reloc_pcrel_1byte) {
assert(getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode());
return true;