2010-11-15 16:49:58 +08:00
|
|
|
//===-- PPCAsmBackend.cpp - PPC Assembler Backend -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-26 03:53:23 +08:00
|
|
|
#include "MCTargetDesc/PPCMCTargetDesc.h"
|
|
|
|
#include "MCTargetDesc/PPCFixupKinds.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2011-08-02 23:51:38 +08:00
|
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
2012-03-26 14:58:25 +08:00
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
2010-12-17 00:08:33 +08:00
|
|
|
#include "llvm/MC/MCMachObjectWriter.h"
|
2010-11-15 16:49:58 +08:00
|
|
|
#include "llvm/MC/MCSectionMachO.h"
|
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2011-06-25 07:44:37 +08:00
|
|
|
#include "llvm/MC/MCValue.h"
|
2010-11-27 12:38:36 +08:00
|
|
|
#include "llvm/Object/MachOFormat.h"
|
2011-08-02 23:51:38 +08:00
|
|
|
#include "llvm/Support/ELF.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2010-11-15 16:49:58 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-08-02 23:51:38 +08:00
|
|
|
static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
|
|
|
|
switch (Kind) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown fixup kind!");
|
|
|
|
case FK_Data_1:
|
|
|
|
case FK_Data_2:
|
|
|
|
case FK_Data_4:
|
2012-10-25 20:27:42 +08:00
|
|
|
case FK_Data_8:
|
|
|
|
case PPC::fixup_ppc_toc:
|
2011-08-02 23:51:38 +08:00
|
|
|
return Value;
|
2012-10-25 20:27:42 +08:00
|
|
|
case PPC::fixup_ppc_lo14:
|
|
|
|
case PPC::fixup_ppc_toc16_ds:
|
|
|
|
return (Value & 0xffff) << 2;
|
2011-08-02 23:51:38 +08:00
|
|
|
case PPC::fixup_ppc_brcond14:
|
2012-10-25 20:27:42 +08:00
|
|
|
return Value & 0xfffc;
|
2011-08-02 23:51:38 +08:00
|
|
|
case PPC::fixup_ppc_br24:
|
|
|
|
return Value & 0x3fffffc;
|
|
|
|
#if 0
|
|
|
|
case PPC::fixup_ppc_hi16:
|
|
|
|
return (Value >> 16) & 0xffff;
|
|
|
|
#endif
|
|
|
|
case PPC::fixup_ppc_ha16:
|
|
|
|
return ((Value >> 16) + ((Value & 0x8000) ? 1 : 0)) & 0xffff;
|
|
|
|
case PPC::fixup_ppc_lo16:
|
2012-10-25 20:27:42 +08:00
|
|
|
case PPC::fixup_ppc_toc16:
|
2011-08-02 23:51:38 +08:00
|
|
|
return Value & 0xffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 16:49:58 +08:00
|
|
|
namespace {
|
2010-12-17 00:09:19 +08:00
|
|
|
class PPCMachObjectWriter : public MCMachObjectTargetWriter {
|
2010-12-17 01:21:02 +08:00
|
|
|
public:
|
|
|
|
PPCMachObjectWriter(bool Is64Bit, uint32_t CPUType,
|
|
|
|
uint32_t CPUSubtype)
|
|
|
|
: MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
|
2011-06-25 07:44:37 +08:00
|
|
|
|
|
|
|
void RecordRelocation(MachObjectWriter *Writer,
|
|
|
|
const MCAssembler &Asm, const MCAsmLayout &Layout,
|
|
|
|
const MCFragment *Fragment, const MCFixup &Fixup,
|
2012-11-24 23:23:49 +08:00
|
|
|
MCValue Target, uint64_t &FixedValue) {
|
|
|
|
llvm_unreachable("Relocation emission for MachO/PPC unimplemented!");
|
|
|
|
}
|
2010-12-17 00:09:19 +08:00
|
|
|
};
|
|
|
|
|
2011-07-26 07:24:55 +08:00
|
|
|
class PPCAsmBackend : public MCAsmBackend {
|
2010-12-17 00:08:43 +08:00
|
|
|
const Target &TheTarget;
|
|
|
|
public:
|
2011-07-26 07:24:55 +08:00
|
|
|
PPCAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
|
2010-12-16 11:20:06 +08:00
|
|
|
|
2010-12-17 00:08:43 +08:00
|
|
|
unsigned getNumFixupKinds() const { return PPC::NumTargetFixupKinds; }
|
|
|
|
|
|
|
|
const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
|
|
|
|
const static MCFixupKindInfo Infos[PPC::NumTargetFixupKinds] = {
|
|
|
|
// name offset bits flags
|
|
|
|
{ "fixup_ppc_br24", 6, 24, MCFixupKindInfo::FKF_IsPCRel },
|
|
|
|
{ "fixup_ppc_brcond14", 16, 14, MCFixupKindInfo::FKF_IsPCRel },
|
|
|
|
{ "fixup_ppc_lo16", 16, 16, 0 },
|
|
|
|
{ "fixup_ppc_ha16", 16, 16, 0 },
|
2012-10-25 20:27:42 +08:00
|
|
|
{ "fixup_ppc_lo14", 16, 14, 0 },
|
|
|
|
{ "fixup_ppc_toc", 0, 64, 0 },
|
|
|
|
{ "fixup_ppc_toc16", 16, 16, 0 },
|
|
|
|
{ "fixup_ppc_toc16_ds", 16, 14, 0 }
|
2010-12-17 00:08:43 +08:00
|
|
|
};
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2010-12-17 00:08:43 +08:00
|
|
|
if (Kind < FirstTargetFixupKind)
|
2011-07-26 07:24:55 +08:00
|
|
|
return MCAsmBackend::getFixupKindInfo(Kind);
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2010-12-17 00:08:43 +08:00
|
|
|
assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
|
|
|
|
"Invalid kind!");
|
|
|
|
return Infos[Kind - FirstTargetFixupKind];
|
|
|
|
}
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2012-11-24 21:18:17 +08:00
|
|
|
void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
|
|
|
|
uint64_t Value) const {
|
|
|
|
Value = adjustFixupValue(Fixup.getKind(), Value);
|
|
|
|
if (!Value) return; // Doesn't change encoding.
|
|
|
|
|
|
|
|
unsigned Offset = Fixup.getOffset();
|
|
|
|
|
|
|
|
// For each byte of the fragment that the fixup touches, mask in the bits
|
|
|
|
// from the fixup value. The Value has been "split up" into the appropriate
|
|
|
|
// bitfields above.
|
|
|
|
for (unsigned i = 0; i != 4; ++i)
|
|
|
|
Data[Offset + i] |= uint8_t((Value >> ((4 - i - 1)*8)) & 0xff);
|
|
|
|
}
|
|
|
|
|
2012-01-19 02:52:16 +08:00
|
|
|
bool mayNeedRelaxation(const MCInst &Inst) const {
|
2010-12-17 00:08:43 +08:00
|
|
|
// FIXME.
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-06 08:47:03 +08:00
|
|
|
|
|
|
|
bool fixupNeedsRelaxation(const MCFixup &Fixup,
|
|
|
|
uint64_t Value,
|
|
|
|
const MCInstFragment *DF,
|
|
|
|
const MCAsmLayout &Layout) const {
|
|
|
|
// FIXME.
|
2012-02-07 10:50:20 +08:00
|
|
|
llvm_unreachable("relaxInstruction() unimplemented");
|
2011-12-06 08:47:03 +08:00
|
|
|
}
|
|
|
|
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2012-01-19 02:52:16 +08:00
|
|
|
void relaxInstruction(const MCInst &Inst, MCInst &Res) const {
|
2010-12-17 00:08:43 +08:00
|
|
|
// FIXME.
|
2012-02-07 10:50:20 +08:00
|
|
|
llvm_unreachable("relaxInstruction() unimplemented");
|
2010-12-17 00:08:43 +08:00
|
|
|
}
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2012-01-19 02:52:16 +08:00
|
|
|
bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
|
2010-12-17 00:08:43 +08:00
|
|
|
// FIXME: Zero fill for now. That's not right, but at least will get the
|
|
|
|
// section size right.
|
|
|
|
for (uint64_t i = 0; i != Count; ++i)
|
|
|
|
OW->Write8(0);
|
|
|
|
return true;
|
2012-01-19 02:52:20 +08:00
|
|
|
}
|
|
|
|
|
2010-12-17 00:08:43 +08:00
|
|
|
unsigned getPointerSize() const {
|
|
|
|
StringRef Name = TheTarget.getName();
|
|
|
|
if (Name == "ppc64") return 8;
|
|
|
|
assert(Name == "ppc32" && "Unknown target name!");
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
};
|
2010-11-15 16:49:58 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME: This should be in a separate file.
|
|
|
|
namespace {
|
|
|
|
class DarwinPPCAsmBackend : public PPCAsmBackend {
|
|
|
|
public:
|
2010-12-17 10:06:08 +08:00
|
|
|
DarwinPPCAsmBackend(const Target &T) : PPCAsmBackend(T) { }
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2010-11-15 16:49:58 +08:00
|
|
|
MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
|
|
|
|
bool is64 = getPointerSize() == 8;
|
2010-12-17 01:21:02 +08:00
|
|
|
return createMachObjectWriter(new PPCMachObjectWriter(
|
|
|
|
/*Is64Bit=*/is64,
|
|
|
|
(is64 ? object::mach::CTM_PowerPC64 :
|
|
|
|
object::mach::CTM_PowerPC),
|
|
|
|
object::mach::CSPPC_ALL),
|
|
|
|
OS, /*IsLittleEndian=*/false);
|
2010-11-15 16:49:58 +08:00
|
|
|
}
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2010-11-15 16:49:58 +08:00
|
|
|
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2011-08-02 23:51:38 +08:00
|
|
|
|
|
|
|
class ELFPPCAsmBackend : public PPCAsmBackend {
|
2011-12-22 01:00:36 +08:00
|
|
|
uint8_t OSABI;
|
2011-08-02 23:51:38 +08:00
|
|
|
public:
|
2011-12-22 01:00:36 +08:00
|
|
|
ELFPPCAsmBackend(const Target &T, uint8_t OSABI) :
|
|
|
|
PPCAsmBackend(T), OSABI(OSABI) { }
|
2012-01-19 02:52:20 +08:00
|
|
|
|
|
|
|
|
2011-08-02 23:51:38 +08:00
|
|
|
MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
|
|
|
|
bool is64 = getPointerSize() == 8;
|
2011-12-23 02:38:06 +08:00
|
|
|
return createPPCELFObjectWriter(OS, is64, OSABI);
|
2011-08-02 23:51:38 +08:00
|
|
|
}
|
2012-01-19 02:52:20 +08:00
|
|
|
|
2011-08-02 23:51:38 +08:00
|
|
|
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-11-15 16:49:58 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-09-19 00:08:49 +08:00
|
|
|
MCAsmBackend *llvm::createPPCAsmBackend(const Target &T, StringRef TT, StringRef CPU) {
|
2011-04-20 05:14:45 +08:00
|
|
|
if (Triple(TT).isOSDarwin())
|
2010-11-15 16:49:58 +08:00
|
|
|
return new DarwinPPCAsmBackend(T);
|
2011-04-20 05:14:45 +08:00
|
|
|
|
2011-12-22 01:00:36 +08:00
|
|
|
uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
|
|
|
|
return new ELFPPCAsmBackend(T, OSABI);
|
2010-11-15 16:49:58 +08:00
|
|
|
}
|