mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
16859aa242
Force all creators of `MCSubtargetInfo` to immediately initialize it, merging the default constructor and the initializer into an initializing constructor. Besides cleaning up the code a little, this makes it clear that the initializer is never called again later. Out-of-tree backends need a trivial change: instead of calling: auto *X = new MCSubtargetInfo(); InitXYZMCSubtargetInfo(X, ...); return X; they should call: return createXYZMCSubtargetInfoImpl(...); There's no real functionality change here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241957 91177308-0d34-0410-b5e6-96231b3b80d8
96 lines
3.2 KiB
C++
96 lines
3.2 KiB
C++
//===-- NVPTXMCTargetDesc.cpp - NVPTX 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 NVPTX specific target descriptions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "NVPTXMCTargetDesc.h"
|
|
#include "InstPrinter/NVPTXInstPrinter.h"
|
|
#include "NVPTXMCAsmInfo.h"
|
|
#include "llvm/MC/MCCodeGenInfo.h"
|
|
#include "llvm/MC/MCInstrInfo.h"
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
using namespace llvm;
|
|
|
|
#define GET_INSTRINFO_MC_DESC
|
|
#include "NVPTXGenInstrInfo.inc"
|
|
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
#include "NVPTXGenSubtargetInfo.inc"
|
|
|
|
#define GET_REGINFO_MC_DESC
|
|
#include "NVPTXGenRegisterInfo.inc"
|
|
|
|
static MCInstrInfo *createNVPTXMCInstrInfo() {
|
|
MCInstrInfo *X = new MCInstrInfo();
|
|
InitNVPTXMCInstrInfo(X);
|
|
return X;
|
|
}
|
|
|
|
static MCRegisterInfo *createNVPTXMCRegisterInfo(const Triple &TT) {
|
|
MCRegisterInfo *X = new MCRegisterInfo();
|
|
// PTX does not have a return address register.
|
|
InitNVPTXMCRegisterInfo(X, 0);
|
|
return X;
|
|
}
|
|
|
|
static MCSubtargetInfo *
|
|
createNVPTXMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) {
|
|
return createNVPTXMCSubtargetInfoImpl(TT, CPU, FS);
|
|
}
|
|
|
|
static MCCodeGenInfo *createNVPTXMCCodeGenInfo(const Triple &TT,
|
|
Reloc::Model RM,
|
|
CodeModel::Model CM,
|
|
CodeGenOpt::Level OL) {
|
|
MCCodeGenInfo *X = new MCCodeGenInfo();
|
|
|
|
// The default relocation model is used regardless of what the client has
|
|
// specified, as it is the only relocation model currently supported.
|
|
X->initMCCodeGenInfo(Reloc::Default, CM, OL);
|
|
return X;
|
|
}
|
|
|
|
static MCInstPrinter *createNVPTXMCInstPrinter(const Triple &T,
|
|
unsigned SyntaxVariant,
|
|
const MCAsmInfo &MAI,
|
|
const MCInstrInfo &MII,
|
|
const MCRegisterInfo &MRI) {
|
|
if (SyntaxVariant == 0)
|
|
return new NVPTXInstPrinter(MAI, MII, MRI);
|
|
return nullptr;
|
|
}
|
|
|
|
// Force static initialization.
|
|
extern "C" void LLVMInitializeNVPTXTargetMC() {
|
|
for (Target *T : {&TheNVPTXTarget32, &TheNVPTXTarget64}) {
|
|
// Register the MC asm info.
|
|
RegisterMCAsmInfo<NVPTXMCAsmInfo> X(*T);
|
|
|
|
// Register the MC codegen info.
|
|
TargetRegistry::RegisterMCCodeGenInfo(*T, createNVPTXMCCodeGenInfo);
|
|
|
|
// Register the MC instruction info.
|
|
TargetRegistry::RegisterMCInstrInfo(*T, createNVPTXMCInstrInfo);
|
|
|
|
// Register the MC register info.
|
|
TargetRegistry::RegisterMCRegInfo(*T, createNVPTXMCRegisterInfo);
|
|
|
|
// Register the MC subtarget info.
|
|
TargetRegistry::RegisterMCSubtargetInfo(*T, createNVPTXMCSubtargetInfo);
|
|
|
|
// Register the MCInstPrinter.
|
|
TargetRegistry::RegisterMCInstPrinter(*T, createNVPTXMCInstPrinter);
|
|
}
|
|
}
|