2011-07-25 23:24:55 +00:00
|
|
|
//===-- MCAsmBackend.cpp - Target MC Assembly Backend ----------------------==//
|
2010-02-21 21:53:53 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-25 23:24:55 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2013-07-15 04:27:47 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-03-26 06:58:25 +00:00
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
2010-02-21 21:53:53 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-03-11 21:22:57 +00:00
|
|
|
MCAsmBackend::MCAsmBackend() : HasDataInCodeSupport(false) {}
|
2010-02-21 21:53:53 +00:00
|
|
|
|
2012-10-01 22:20:54 +00:00
|
|
|
MCAsmBackend::~MCAsmBackend() {}
|
2010-12-16 03:20:06 +00:00
|
|
|
|
2015-05-30 18:42:22 +00:00
|
|
|
const MCFixupKindInfo &MCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
|
2010-12-16 03:20:06 +00:00
|
|
|
static const MCFixupKindInfo Builtins[] = {
|
2015-05-30 18:42:22 +00: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},
|
|
|
|
{"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 01:41:30 +00:00
|
|
|
|
2013-07-15 04:27:47 +00:00
|
|
|
assert((size_t)Kind <= array_lengthof(Builtins) && "Unknown fixup kind");
|
2010-12-16 03:20:06 +00:00
|
|
|
return Builtins[Kind];
|
|
|
|
}
|
2015-05-30 18:42:22 +00: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);
|
|
|
|
}
|