2012-02-18 12:03:15 +00:00
|
|
|
//===-- SparcMCTargetDesc.cpp - Sparc Target Descriptions -----------------===//
|
2011-07-14 20:59:42 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides Sparc specific target descriptions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SparcMCTargetDesc.h"
|
2011-07-14 23:50:31 +00:00
|
|
|
#include "SparcMCAsmInfo.h"
|
2013-12-26 01:49:59 +00:00
|
|
|
#include "SparcTargetStreamer.h"
|
|
|
|
#include "InstPrinter/SparcInstPrinter.h"
|
2011-08-23 20:15:21 +00:00
|
|
|
#include "llvm/MC/MCCodeGenInfo.h"
|
2011-07-14 20:59:42 +00:00
|
|
|
#include "llvm/MC/MCInstrInfo.h"
|
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2012-02-05 07:21:30 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2011-07-14 20:59:42 +00:00
|
|
|
|
|
|
|
#define GET_INSTRINFO_MC_DESC
|
|
|
|
#include "SparcGenInstrInfo.inc"
|
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
|
|
#include "SparcGenSubtargetInfo.inc"
|
|
|
|
|
|
|
|
#define GET_REGINFO_MC_DESC
|
|
|
|
#include "SparcGenRegisterInfo.inc"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2011-07-14 23:50:31 +00:00
|
|
|
static MCInstrInfo *createSparcMCInstrInfo() {
|
2011-07-14 20:59:42 +00:00
|
|
|
MCInstrInfo *X = new MCInstrInfo();
|
|
|
|
InitSparcMCInstrInfo(X);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2011-07-18 20:57:22 +00:00
|
|
|
static MCRegisterInfo *createSparcMCRegisterInfo(StringRef TT) {
|
|
|
|
MCRegisterInfo *X = new MCRegisterInfo();
|
|
|
|
InitSparcMCRegisterInfo(X, SP::I7);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2011-07-14 23:50:31 +00:00
|
|
|
static MCSubtargetInfo *createSparcMCSubtargetInfo(StringRef TT, StringRef CPU,
|
|
|
|
StringRef FS) {
|
2011-07-14 20:59:42 +00:00
|
|
|
MCSubtargetInfo *X = new MCSubtargetInfo();
|
|
|
|
InitSparcMCSubtargetInfo(X, TT, CPU, FS);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2013-04-13 19:02:23 +00:00
|
|
|
// Code models. Some only make sense for 64-bit code.
|
|
|
|
//
|
|
|
|
// SunCC Reloc CodeModel Constraints
|
|
|
|
// abs32 Static Small text+data+bss linked below 2^32 bytes
|
|
|
|
// abs44 Static Medium text+data+bss linked below 2^44 bytes
|
|
|
|
// abs64 Static Large text smaller than 2^31 bytes
|
|
|
|
// pic13 PIC_ Small GOT < 2^13 bytes
|
|
|
|
// pic32 PIC_ Medium GOT < 2^32 bytes
|
|
|
|
//
|
|
|
|
// All code models require that the text segment is smaller than 2GB.
|
|
|
|
|
2011-07-23 00:01:04 +00:00
|
|
|
static MCCodeGenInfo *createSparcMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL) {
|
2011-07-19 06:37:02 +00:00
|
|
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
2013-04-13 19:02:23 +00:00
|
|
|
|
|
|
|
// The default 32-bit code model is abs32/pic32.
|
|
|
|
if (CM == CodeModel::Default)
|
|
|
|
CM = RM == Reloc::PIC_ ? CodeModel::Medium : CodeModel::Small;
|
|
|
|
|
2011-11-16 08:38:26 +00:00
|
|
|
X->InitMCCodeGenInfo(RM, CM, OL);
|
2011-07-19 06:37:02 +00:00
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2013-04-13 19:02:23 +00:00
|
|
|
static MCCodeGenInfo *createSparcV9MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
|
|
|
CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL) {
|
|
|
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
|
|
|
|
|
|
|
// The default 64-bit code model is abs44/pic32.
|
|
|
|
if (CM == CodeModel::Default)
|
|
|
|
CM = CodeModel::Medium;
|
|
|
|
|
|
|
|
X->InitMCCodeGenInfo(RM, CM, OL);
|
|
|
|
return X;
|
|
|
|
}
|
2013-12-26 01:49:59 +00:00
|
|
|
|
2014-01-06 01:22:54 +00:00
|
|
|
static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
|
|
|
|
MCContext &Context, MCAsmBackend &MAB,
|
|
|
|
raw_ostream &OS, MCCodeEmitter *Emitter,
|
|
|
|
bool RelaxAll, bool NoExecStack) {
|
|
|
|
SparcTargetELFStreamer *S = new SparcTargetELFStreamer();
|
|
|
|
return createELFStreamer(Context, S, MAB, OS, Emitter, RelaxAll, NoExecStack);
|
|
|
|
}
|
|
|
|
|
2013-12-26 01:49:59 +00:00
|
|
|
static MCStreamer *
|
|
|
|
createMCAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
|
|
|
|
bool isVerboseAsm, bool useLoc, bool useCFI,
|
|
|
|
bool useDwarfDirectory, MCInstPrinter *InstPrint,
|
|
|
|
MCCodeEmitter *CE, MCAsmBackend *TAB, bool ShowInst) {
|
|
|
|
SparcTargetAsmStreamer *S = new SparcTargetAsmStreamer(OS);
|
|
|
|
|
|
|
|
return llvm::createAsmStreamer(Ctx, S, OS, isVerboseAsm, useLoc, useCFI,
|
|
|
|
useDwarfDirectory, InstPrint, CE, TAB,
|
|
|
|
ShowInst);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MCInstPrinter *createSparcMCInstPrinter(const Target &T,
|
|
|
|
unsigned SyntaxVariant,
|
|
|
|
const MCAsmInfo &MAI,
|
|
|
|
const MCInstrInfo &MII,
|
|
|
|
const MCRegisterInfo &MRI,
|
|
|
|
const MCSubtargetInfo &STI) {
|
|
|
|
return new SparcInstPrinter(MAI, MII, MRI);
|
|
|
|
}
|
|
|
|
|
2011-07-22 21:58:54 +00:00
|
|
|
extern "C" void LLVMInitializeSparcTargetMC() {
|
|
|
|
// Register the MC asm info.
|
|
|
|
RegisterMCAsmInfo<SparcELFMCAsmInfo> X(TheSparcTarget);
|
|
|
|
RegisterMCAsmInfo<SparcELFMCAsmInfo> Y(TheSparcV9Target);
|
|
|
|
|
|
|
|
// Register the MC codegen info.
|
2011-07-19 06:37:02 +00:00
|
|
|
TargetRegistry::RegisterMCCodeGenInfo(TheSparcTarget,
|
|
|
|
createSparcMCCodeGenInfo);
|
|
|
|
TargetRegistry::RegisterMCCodeGenInfo(TheSparcV9Target,
|
2013-04-13 19:02:23 +00:00
|
|
|
createSparcV9MCCodeGenInfo);
|
2011-07-19 06:37:02 +00:00
|
|
|
|
2011-07-22 21:58:54 +00:00
|
|
|
// Register the MC instruction info.
|
|
|
|
TargetRegistry::RegisterMCInstrInfo(TheSparcTarget, createSparcMCInstrInfo);
|
2014-01-04 11:30:13 +00:00
|
|
|
TargetRegistry::RegisterMCInstrInfo(TheSparcV9Target, createSparcMCInstrInfo);
|
2011-07-22 21:58:54 +00:00
|
|
|
|
|
|
|
// Register the MC register info.
|
|
|
|
TargetRegistry::RegisterMCRegInfo(TheSparcTarget, createSparcMCRegisterInfo);
|
2014-01-04 11:30:13 +00:00
|
|
|
TargetRegistry::RegisterMCRegInfo(TheSparcV9Target,
|
|
|
|
createSparcMCRegisterInfo);
|
2011-07-22 21:58:54 +00:00
|
|
|
|
|
|
|
// Register the MC subtarget info.
|
|
|
|
TargetRegistry::RegisterMCSubtargetInfo(TheSparcTarget,
|
|
|
|
createSparcMCSubtargetInfo);
|
2014-01-04 11:30:13 +00:00
|
|
|
TargetRegistry::RegisterMCSubtargetInfo(TheSparcV9Target,
|
|
|
|
createSparcMCSubtargetInfo);
|
2013-12-26 01:49:59 +00:00
|
|
|
|
2014-01-05 02:13:48 +00:00
|
|
|
// Register the MC Code Emitter.
|
|
|
|
TargetRegistry::RegisterMCCodeEmitter(TheSparcTarget,
|
|
|
|
createSparcMCCodeEmitter);
|
|
|
|
TargetRegistry::RegisterMCCodeEmitter(TheSparcV9Target,
|
|
|
|
createSparcMCCodeEmitter);
|
|
|
|
|
|
|
|
//Register the asm backend.
|
|
|
|
TargetRegistry::RegisterMCAsmBackend(TheSparcTarget,
|
|
|
|
createSparcAsmBackend);
|
|
|
|
TargetRegistry::RegisterMCAsmBackend(TheSparcV9Target,
|
|
|
|
createSparcAsmBackend);
|
|
|
|
|
2014-01-06 01:22:54 +00:00
|
|
|
// Register the object streamer.
|
|
|
|
TargetRegistry::RegisterMCObjectStreamer(TheSparcTarget,
|
|
|
|
createMCStreamer);
|
|
|
|
TargetRegistry::RegisterMCObjectStreamer(TheSparcV9Target,
|
|
|
|
createMCStreamer);
|
|
|
|
|
|
|
|
// Register the asm streamer.
|
2013-12-26 01:49:59 +00:00
|
|
|
TargetRegistry::RegisterAsmStreamer(TheSparcTarget,
|
|
|
|
createMCAsmStreamer);
|
|
|
|
TargetRegistry::RegisterAsmStreamer(TheSparcV9Target,
|
|
|
|
createMCAsmStreamer);
|
|
|
|
|
|
|
|
// Register the MCInstPrinter
|
|
|
|
TargetRegistry::RegisterMCInstPrinter(TheSparcTarget,
|
|
|
|
createSparcMCInstPrinter);
|
|
|
|
TargetRegistry::RegisterMCInstPrinter(TheSparcV9Target,
|
|
|
|
createSparcMCInstPrinter);
|
2011-07-22 21:58:54 +00:00
|
|
|
}
|