2011-07-14 20:59:42 +00:00
|
|
|
//===-- SPUMCTargetDesc.cpp - Cell SPU Target Descriptions -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides Cell SPU specific target descriptions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SPUMCTargetDesc.h"
|
2011-07-14 23:50:31 +00:00
|
|
|
#include "SPUMCAsmInfo.h"
|
2011-07-14 20:59:42 +00:00
|
|
|
#include "llvm/MC/MCInstrInfo.h"
|
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
|
|
|
|
#define GET_INSTRINFO_MC_DESC
|
|
|
|
#include "SPUGenInstrInfo.inc"
|
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
|
|
#include "SPUGenSubtargetInfo.inc"
|
|
|
|
|
|
|
|
#define GET_REGINFO_MC_DESC
|
|
|
|
#include "SPUGenRegisterInfo.inc"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2011-07-14 23:50:31 +00:00
|
|
|
static MCInstrInfo *createSPUMCInstrInfo() {
|
2011-07-14 20:59:42 +00:00
|
|
|
MCInstrInfo *X = new MCInstrInfo();
|
|
|
|
InitSPUMCInstrInfo(X);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCellSPUMCInstrInfo() {
|
|
|
|
TargetRegistry::RegisterMCInstrInfo(TheCellSPUTarget, createSPUMCInstrInfo);
|
|
|
|
}
|
|
|
|
|
2011-07-18 20:57:22 +00:00
|
|
|
static MCRegisterInfo *createCellSPUMCRegisterInfo(StringRef TT) {
|
|
|
|
MCRegisterInfo *X = new MCRegisterInfo();
|
|
|
|
InitSPUMCRegisterInfo(X, SPU::R0);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCellSPUMCRegisterInfo() {
|
|
|
|
TargetRegistry::RegisterMCRegInfo(TheCellSPUTarget,
|
|
|
|
createCellSPUMCRegisterInfo);
|
|
|
|
}
|
|
|
|
|
2011-07-14 23:50:31 +00:00
|
|
|
static MCSubtargetInfo *createSPUMCSubtargetInfo(StringRef TT, StringRef CPU,
|
|
|
|
StringRef FS) {
|
2011-07-14 20:59:42 +00:00
|
|
|
MCSubtargetInfo *X = new MCSubtargetInfo();
|
|
|
|
InitSPUMCSubtargetInfo(X, TT, CPU, FS);
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCellSPUMCSubtargetInfo() {
|
|
|
|
TargetRegistry::RegisterMCSubtargetInfo(TheCellSPUTarget,
|
|
|
|
createSPUMCSubtargetInfo);
|
|
|
|
}
|
2011-07-14 23:50:31 +00:00
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCellSPUMCAsmInfo() {
|
|
|
|
RegisterMCAsmInfo<SPULinuxMCAsmInfo> X(TheCellSPUTarget);
|
|
|
|
}
|