mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 06:30:16 +00:00
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
|
//===-- PPCMCTargetDesc.cpp - PowerPC 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 PowerPC specific target descriptions.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "PPCMCTargetDesc.h"
|
||
|
#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 "PPCGenInstrInfo.inc"
|
||
|
|
||
|
#define GET_SUBTARGETINFO_MC_DESC
|
||
|
#include "PPCGenSubtargetInfo.inc"
|
||
|
|
||
|
#define GET_REGINFO_MC_DESC
|
||
|
#include "PPCGenRegisterInfo.inc"
|
||
|
|
||
|
using namespace llvm;
|
||
|
|
||
|
MCInstrInfo *createPPCMCInstrInfo() {
|
||
|
MCInstrInfo *X = new MCInstrInfo();
|
||
|
InitPPCMCInstrInfo(X);
|
||
|
return X;
|
||
|
}
|
||
|
|
||
|
extern "C" void LLVMInitializePowerPCMCInstrInfo() {
|
||
|
TargetRegistry::RegisterMCInstrInfo(ThePPC32Target, createPPCMCInstrInfo);
|
||
|
TargetRegistry::RegisterMCInstrInfo(ThePPC64Target, createPPCMCInstrInfo);
|
||
|
}
|
||
|
|
||
|
|
||
|
MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
|
||
|
StringRef FS) {
|
||
|
MCSubtargetInfo *X = new MCSubtargetInfo();
|
||
|
InitPPCMCSubtargetInfo(X, TT, CPU, FS);
|
||
|
return X;
|
||
|
}
|
||
|
|
||
|
extern "C" void LLVMInitializePowerPCMCSubtargetInfo() {
|
||
|
TargetRegistry::RegisterMCSubtargetInfo(ThePPC32Target,
|
||
|
createPPCMCSubtargetInfo);
|
||
|
TargetRegistry::RegisterMCSubtargetInfo(ThePPC64Target,
|
||
|
createPPCMCSubtargetInfo);
|
||
|
}
|