2011-07-26 07:24:55 +08:00
|
|
|
//===-- MCAsmBackend.cpp - Target MC Assembly Backend ----------------------==//
|
2010-02-22 05:53:53 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-26 07:24:55 +08:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2013-07-15 12:27:47 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-03-26 14:58:25 +08:00
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
2010-02-22 05:53:53 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2016-04-22 07:00:17 +08:00
|
|
|
MCAsmBackend::MCAsmBackend() {}
|
2010-02-22 05:53:53 +08:00
|
|
|
|
2012-10-02 06:20:54 +08:00
|
|
|
MCAsmBackend::~MCAsmBackend() {}
|
2010-12-16 11:20:06 +08:00
|
|
|
|
2016-01-20 07:05:27 +08:00
|
|
|
Optional<MCFixupKind> MCAsmBackend::getFixupKind(StringRef Name) const {
|
|
|
|
return None;
|
2015-11-12 21:33:00 +08:00
|
|
|
}
|
|
|
|
|
2015-05-31 02:42:22 +08:00
|
|
|
const MCFixupKindInfo &MCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
|
2010-12-16 11:20:06 +08:00
|
|
|
static const MCFixupKindInfo Builtins[] = {
|
2015-05-31 02:42:22 +08:00
|
|
|
{"FK_Data_1", 0, 8, 0},
|
|
|
|
{"FK_Data_2", 0, 16, 0},
|
|
|
|
{"FK_Data_4", 0, 32, 0},
|
|
|
|
{"FK_Data_8", 0, 64, 0},
|
|
|
|
{"FK_PCRel_1", 0, 8, MCFixupKindInfo::FKF_IsPCRel},
|
|
|
|
{"FK_PCRel_2", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
|
|
|
|
{"FK_PCRel_4", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
|
|
|
|
{"FK_PCRel_8", 0, 64, MCFixupKindInfo::FKF_IsPCRel},
|
|
|
|
{"FK_GPRel_1", 0, 8, 0},
|
|
|
|
{"FK_GPRel_2", 0, 16, 0},
|
|
|
|
{"FK_GPRel_4", 0, 32, 0},
|
|
|
|
{"FK_GPRel_8", 0, 64, 0},
|
2016-08-23 00:18:42 +08:00
|
|
|
{"FK_DTPRel_4", 0, 32, 0},
|
|
|
|
{"FK_DTPRel_8", 0, 64, 0},
|
|
|
|
{"FK_TPRel_4", 0, 32, 0},
|
|
|
|
{"FK_TPRel_8", 0, 64, 0},
|
2015-05-31 02:42:22 +08:00
|
|
|
{"FK_SecRel_1", 0, 8, 0},
|
|
|
|
{"FK_SecRel_2", 0, 16, 0},
|
|
|
|
{"FK_SecRel_4", 0, 32, 0},
|
|
|
|
{"FK_SecRel_8", 0, 64, 0}};
|
2012-05-11 09:41:30 +08:00
|
|
|
|
2013-07-15 12:27:47 +08:00
|
|
|
assert((size_t)Kind <= array_lengthof(Builtins) && "Unknown fixup kind");
|
2010-12-16 11:20:06 +08:00
|
|
|
return Builtins[Kind];
|
|
|
|
}
|
2015-05-31 02:42:22 +08:00
|
|
|
|
|
|
|
bool MCAsmBackend::fixupNeedsRelaxationAdvanced(
|
|
|
|
const MCFixup &Fixup, bool Resolved, uint64_t Value,
|
|
|
|
const MCRelaxableFragment *DF, const MCAsmLayout &Layout) const {
|
|
|
|
if (!Resolved)
|
|
|
|
return true;
|
|
|
|
return fixupNeedsRelaxation(Fixup, Value, DF, Layout);
|
|
|
|
}
|