2017-02-09 06:23:19 +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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2017-02-09 06:23:19 +08:00
|
|
|
#include "llvm/ADT/None.h"
|
2013-07-15 12:27:47 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2017-10-24 14:16:03 +08:00
|
|
|
#include "llvm/MC/MCCodePadder.h"
|
2018-05-22 03:20:29 +08:00
|
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
2012-03-26 14:58:25 +08:00
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
2018-05-22 03:20:29 +08:00
|
|
|
#include "llvm/MC/MCMachObjectWriter.h"
|
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
|
|
|
#include "llvm/MC/MCWasmObjectWriter.h"
|
|
|
|
#include "llvm/MC/MCWinCOFFObjectWriter.h"
|
2017-02-09 06:23:19 +08:00
|
|
|
#include <cassert>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
|
2010-02-22 05:53:53 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2018-05-22 01:57:19 +08:00
|
|
|
MCAsmBackend::MCAsmBackend(support::endianness Endian)
|
|
|
|
: CodePadder(new MCCodePadder()), Endian(Endian) {}
|
2010-02-22 05:53:53 +08:00
|
|
|
|
2017-02-09 06:23:19 +08:00
|
|
|
MCAsmBackend::~MCAsmBackend() = default;
|
2018-05-22 03:20:29 +08:00
|
|
|
|
|
|
|
std::unique_ptr<MCObjectWriter>
|
|
|
|
MCAsmBackend::createObjectWriter(raw_pwrite_stream &OS) const {
|
|
|
|
auto TW = createObjectTargetWriter();
|
|
|
|
switch (TW->getFormat()) {
|
|
|
|
case Triple::ELF:
|
|
|
|
return createELFObjectWriter(cast<MCELFObjectTargetWriter>(std::move(TW)), OS,
|
|
|
|
Endian == support::little);
|
|
|
|
case Triple::MachO:
|
|
|
|
return createMachObjectWriter(cast<MCMachObjectTargetWriter>(std::move(TW)),
|
|
|
|
OS, Endian == support::little);
|
|
|
|
case Triple::COFF:
|
|
|
|
return createWinCOFFObjectWriter(
|
|
|
|
cast<MCWinCOFFObjectTargetWriter>(std::move(TW)), OS);
|
|
|
|
case Triple::Wasm:
|
|
|
|
return createWasmObjectWriter(cast<MCWasmObjectTargetWriter>(std::move(TW)),
|
|
|
|
OS);
|
|
|
|
default:
|
|
|
|
llvm_unreachable("unexpected object format");
|
|
|
|
}
|
|
|
|
}
|
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,
|
2018-05-18 14:42:21 +08:00
|
|
|
const MCRelaxableFragment *DF, const MCAsmLayout &Layout,
|
|
|
|
const bool WasForced) const {
|
2015-05-31 02:42:22 +08:00
|
|
|
if (!Resolved)
|
|
|
|
return true;
|
|
|
|
return fixupNeedsRelaxation(Fixup, Value, DF, Layout);
|
|
|
|
}
|
2017-10-24 14:16:03 +08:00
|
|
|
|
|
|
|
void MCAsmBackend::handleCodePaddingBasicBlockStart(
|
|
|
|
MCObjectStreamer *OS, const MCCodePaddingContext &Context) {
|
|
|
|
CodePadder->handleBasicBlockStart(OS, Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCAsmBackend::handleCodePaddingBasicBlockEnd(
|
|
|
|
const MCCodePaddingContext &Context) {
|
|
|
|
CodePadder->handleBasicBlockEnd(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCAsmBackend::handleCodePaddingInstructionBegin(const MCInst &Inst) {
|
|
|
|
CodePadder->handleInstructionBegin(Inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCAsmBackend::handleCodePaddingInstructionEnd(const MCInst &Inst) {
|
|
|
|
CodePadder->handleInstructionEnd(Inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCAsmBackend::relaxFragment(MCPaddingFragment *PF, MCAsmLayout &Layout) {
|
|
|
|
return CodePadder->relaxFragment(PF, Layout);
|
2018-05-18 14:42:21 +08:00
|
|
|
}
|