mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135219 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- AlphaMCTargetDesc.cpp - Alpha 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 Alpha specific target descriptions.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "AlphaMCTargetDesc.h"
 | 
						|
#include "AlphaMCAsmInfo.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 "AlphaGenInstrInfo.inc"
 | 
						|
 | 
						|
#define GET_SUBTARGETINFO_MC_DESC
 | 
						|
#include "AlphaGenSubtargetInfo.inc"
 | 
						|
 | 
						|
#define GET_REGINFO_MC_DESC
 | 
						|
#include "AlphaGenRegisterInfo.inc"
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
 | 
						|
static MCInstrInfo *createAlphaMCInstrInfo() {
 | 
						|
  MCInstrInfo *X = new MCInstrInfo();
 | 
						|
  InitAlphaMCInstrInfo(X);
 | 
						|
  return X;
 | 
						|
}
 | 
						|
 | 
						|
extern "C" void LLVMInitializeAlphaMCInstrInfo() {
 | 
						|
  TargetRegistry::RegisterMCInstrInfo(TheAlphaTarget, createAlphaMCInstrInfo);
 | 
						|
}
 | 
						|
 | 
						|
static MCSubtargetInfo *createAlphaMCSubtargetInfo(StringRef TT, StringRef CPU,
 | 
						|
                                                   StringRef FS) {
 | 
						|
  MCSubtargetInfo *X = new MCSubtargetInfo();
 | 
						|
  InitAlphaMCSubtargetInfo(X, TT, CPU, FS);
 | 
						|
  return X;
 | 
						|
}
 | 
						|
 | 
						|
extern "C" void LLVMInitializeAlphaMCSubtargetInfo() {
 | 
						|
  TargetRegistry::RegisterMCSubtargetInfo(TheAlphaTarget,
 | 
						|
                                          createAlphaMCSubtargetInfo);
 | 
						|
}
 | 
						|
 | 
						|
extern "C" void LLVMInitializeAlphaMCAsmInfo() {
 | 
						|
  RegisterMCAsmInfo<AlphaMCAsmInfo> X(TheAlphaTarget);
 | 
						|
}
 |