2013-05-06 16:15:19 +00:00
|
|
|
//===-- SystemZ.td - Describe the SystemZ target machine -----*- tblgen -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2013-07-19 16:09:03 +00:00
|
|
|
// SystemZ supported processors and features
|
2013-05-06 16:15:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-07-19 16:09:03 +00:00
|
|
|
include "SystemZProcessors.td"
|
2013-05-06 16:15:19 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register file description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "SystemZRegisterInfo.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Calling convention description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "SystemZCallingConv.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "SystemZOperators.td"
|
|
|
|
include "SystemZOperands.td"
|
|
|
|
include "SystemZPatterns.td"
|
|
|
|
include "SystemZInstrFormats.td"
|
|
|
|
include "SystemZInstrInfo.td"
|
|
|
|
include "SystemZInstrFP.td"
|
|
|
|
|
|
|
|
def SystemZInstrInfo : InstrInfo {}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Assembly parser
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def SystemZAsmParser : AsmParser {
|
|
|
|
let ShouldEmitMatchRegisterName = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Top-level target declaration
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def SystemZ : Target {
|
|
|
|
let InstructionSet = SystemZInstrInfo;
|
|
|
|
let AssemblyParsers = [SystemZAsmParser];
|
|
|
|
}
|