mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 22:08:57 -04:00

to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
102 lines
3.7 KiB
C++
102 lines
3.7 KiB
C++
//===-- RISCVMCTargetDesc.cpp - RISCV Target Descriptions -----------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// This file provides RISCV-specific target descriptions.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "RISCVMCTargetDesc.h"
|
|
#include "InstPrinter/RISCVInstPrinter.h"
|
|
#include "RISCVELFStreamer.h"
|
|
#include "RISCVMCAsmInfo.h"
|
|
#include "RISCVTargetStreamer.h"
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
#include "llvm/MC/MCInstrInfo.h"
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#define GET_INSTRINFO_MC_DESC
|
|
#include "RISCVGenInstrInfo.inc"
|
|
|
|
#define GET_REGINFO_MC_DESC
|
|
#include "RISCVGenRegisterInfo.inc"
|
|
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
#include "RISCVGenSubtargetInfo.inc"
|
|
|
|
using namespace llvm;
|
|
|
|
static MCInstrInfo *createRISCVMCInstrInfo() {
|
|
MCInstrInfo *X = new MCInstrInfo();
|
|
InitRISCVMCInstrInfo(X);
|
|
return X;
|
|
}
|
|
|
|
static MCRegisterInfo *createRISCVMCRegisterInfo(const Triple &TT) {
|
|
MCRegisterInfo *X = new MCRegisterInfo();
|
|
InitRISCVMCRegisterInfo(X, RISCV::X1);
|
|
return X;
|
|
}
|
|
|
|
static MCAsmInfo *createRISCVMCAsmInfo(const MCRegisterInfo &MRI,
|
|
const Triple &TT) {
|
|
return new RISCVMCAsmInfo(TT);
|
|
}
|
|
|
|
static MCSubtargetInfo *createRISCVMCSubtargetInfo(const Triple &TT,
|
|
StringRef CPU, StringRef FS) {
|
|
std::string CPUName = CPU;
|
|
if (CPUName.empty())
|
|
CPUName = TT.isArch64Bit() ? "generic-rv64" : "generic-rv32";
|
|
return createRISCVMCSubtargetInfoImpl(TT, CPUName, FS);
|
|
}
|
|
|
|
static MCInstPrinter *createRISCVMCInstPrinter(const Triple &T,
|
|
unsigned SyntaxVariant,
|
|
const MCAsmInfo &MAI,
|
|
const MCInstrInfo &MII,
|
|
const MCRegisterInfo &MRI) {
|
|
return new RISCVInstPrinter(MAI, MII, MRI);
|
|
}
|
|
|
|
static MCTargetStreamer *
|
|
createRISCVObjectTargetStreamer(MCStreamer &S, const MCSubtargetInfo &STI) {
|
|
const Triple &TT = STI.getTargetTriple();
|
|
if (TT.isOSBinFormatELF())
|
|
return new RISCVTargetELFStreamer(S, STI);
|
|
return nullptr;
|
|
}
|
|
|
|
static MCTargetStreamer *createRISCVAsmTargetStreamer(MCStreamer &S,
|
|
formatted_raw_ostream &OS,
|
|
MCInstPrinter *InstPrint,
|
|
bool isVerboseAsm) {
|
|
return new RISCVTargetAsmStreamer(S, OS);
|
|
}
|
|
|
|
extern "C" void LLVMInitializeRISCVTargetMC() {
|
|
for (Target *T : {&getTheRISCV32Target(), &getTheRISCV64Target()}) {
|
|
TargetRegistry::RegisterMCAsmInfo(*T, createRISCVMCAsmInfo);
|
|
TargetRegistry::RegisterMCInstrInfo(*T, createRISCVMCInstrInfo);
|
|
TargetRegistry::RegisterMCRegInfo(*T, createRISCVMCRegisterInfo);
|
|
TargetRegistry::RegisterMCAsmBackend(*T, createRISCVAsmBackend);
|
|
TargetRegistry::RegisterMCCodeEmitter(*T, createRISCVMCCodeEmitter);
|
|
TargetRegistry::RegisterMCInstPrinter(*T, createRISCVMCInstPrinter);
|
|
TargetRegistry::RegisterMCSubtargetInfo(*T, createRISCVMCSubtargetInfo);
|
|
TargetRegistry::RegisterObjectTargetStreamer(
|
|
*T, createRISCVObjectTargetStreamer);
|
|
|
|
// Register the asm target streamer.
|
|
TargetRegistry::RegisterAsmTargetStreamer(*T, createRISCVAsmTargetStreamer);
|
|
}
|
|
}
|