2016-11-02 07:40:28 +08:00
|
|
|
//===-- RISCV.td - Describe the RISCV Target Machine -------*- tablegen -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
2017-10-19 22:29:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RISC-V subtarget features and instruction predicates.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-11-02 07:40:28 +08:00
|
|
|
|
2017-10-19 22:29:03 +08:00
|
|
|
def Feature64Bit : SubtargetFeature<"64bit", "HasRV64", "true",
|
|
|
|
"Implements RV64">;
|
2016-11-02 07:40:28 +08:00
|
|
|
|
2017-10-19 22:29:03 +08:00
|
|
|
def RV64 : HwMode<"+64bit">;
|
|
|
|
def RV32 : HwMode<"-64bit">;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register file, instruction descriptions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "RISCVRegisterInfo.td"
|
|
|
|
include "RISCVInstrInfo.td"
|
2016-11-02 07:40:28 +08:00
|
|
|
|
2017-10-19 22:29:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RISC-V processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-11-02 07:40:28 +08:00
|
|
|
|
|
|
|
def : ProcessorModel<"generic-rv32", NoSchedModel, []>;
|
|
|
|
|
|
|
|
def : ProcessorModel<"generic-rv64", NoSchedModel, [Feature64Bit]>;
|
|
|
|
|
2017-10-19 22:29:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Define the RISC-V target.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def RISCVInstrInfo : InstrInfo;
|
|
|
|
|
2017-08-08 22:32:35 +08:00
|
|
|
def RISCVAsmParser : AsmParser {
|
|
|
|
let ShouldEmitMatchRegisterAltName = 1;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:40:28 +08:00
|
|
|
def RISCV : Target {
|
|
|
|
let InstructionSet = RISCVInstrInfo;
|
2017-08-08 22:32:35 +08:00
|
|
|
let AssemblyParsers = [RISCVAsmParser];
|
2016-11-02 07:40:28 +08:00
|
|
|
}
|