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"
|
2010-02-21 21:53:53 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-07-25 23:24:55 +00:00
|
|
|
MCAsmBackend::MCAsmBackend()
|
2010-12-17 02:06:08 +00:00
|
|
|
: HasReliableSymbolDifference(false)
|
2010-02-21 21:53:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-07-25 23:24:55 +00:00
|
|
|
MCAsmBackend::~MCAsmBackend() {
|
2010-02-21 21:53:53 +00:00
|
|
|
}
|
2010-12-16 03:20:06 +00:00
|
|
|
|
|
|
|
const MCFixupKindInfo &
|
2011-07-25 23:24:55 +00:00
|
|
|
MCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
|
2010-12-16 03:20:06 +00:00
|
|
|
static const MCFixupKindInfo Builtins[] = {
|
2011-11-23 22:18:04 +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 },
|
2010-12-16 03:20:06 +00:00
|
|
|
{ "FK_PCRel_2", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
|
2010-12-27 00:36:05 +00:00
|
|
|
{ "FK_PCRel_4", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
|
2011-11-23 22:18:04 +00:00
|
|
|
{ "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 }
|
2010-12-16 03:20:06 +00:00
|
|
|
};
|
|
|
|
|
2010-12-28 13:52:52 +00:00
|
|
|
assert((size_t)Kind <= sizeof(Builtins) / sizeof(Builtins[0]) &&
|
2010-12-16 03:20:06 +00:00
|
|
|
"Unknown fixup kind");
|
|
|
|
return Builtins[Kind];
|
|
|
|
}
|