2012-02-18 12:03:15 +00:00
|
|
|
//===-- Hexagon.td - Describe the Hexagon Target Machine --*- tablegen -*--===//
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-02-18 12:03:15 +00:00
|
|
|
// This is the top level entry point for the Hexagon target.
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Hexagon Subtarget features.
|
2012-02-18 12:03:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
// Hexagon Archtectures
|
|
|
|
def ArchV2 : SubtargetFeature<"v2", "HexagonArchVersion", "V2",
|
|
|
|
"Hexagon v2">;
|
|
|
|
def ArchV3 : SubtargetFeature<"v3", "HexagonArchVersion", "V3",
|
|
|
|
"Hexagon v3">;
|
|
|
|
def ArchV4 : SubtargetFeature<"v4", "HexagonArchVersion", "V4",
|
|
|
|
"Hexagon v4">;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File, Calling Conv, Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "HexagonSchedule.td"
|
|
|
|
include "HexagonRegisterInfo.td"
|
|
|
|
include "HexagonCallingConv.td"
|
|
|
|
include "HexagonInstrInfo.td"
|
|
|
|
include "HexagonIntrinsics.td"
|
|
|
|
include "HexagonIntrinsicsDerived.td"
|
|
|
|
|
2012-04-12 17:55:53 +00:00
|
|
|
def HexagonInstrInfo : InstrInfo;
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Hexagon processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Proc<string Name, ProcessorItineraries Itin,
|
|
|
|
list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, Itin, Features>;
|
|
|
|
|
|
|
|
def : Proc<"hexagonv2", HexagonItineraries, [ArchV2]>;
|
|
|
|
def : Proc<"hexagonv3", HexagonItineraries, [ArchV2, ArchV3]>;
|
|
|
|
def : Proc<"hexagonv4", HexagonItinerariesV4, [ArchV2, ArchV3, ArchV4]>;
|
|
|
|
|
2012-04-12 17:55:53 +00:00
|
|
|
// Hexagon Uses the MC printer for assembler output, so make sure the TableGen
|
|
|
|
// AsmWriter bits get associated with the correct class.
|
|
|
|
def HexagonAsmWriter : AsmWriter {
|
|
|
|
string AsmWriterClassName = "InstPrinter";
|
|
|
|
bit isMCAsmWriter = 1;
|
|
|
|
}
|
|
|
|
|
2011-12-12 21:14:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Declare the target which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def Hexagon : Target {
|
|
|
|
// Pull in Instruction Info:
|
|
|
|
let InstructionSet = HexagonInstrInfo;
|
2012-04-12 17:55:53 +00:00
|
|
|
|
|
|
|
let AssemblyWriters = [HexagonAsmWriter];
|
2011-12-12 21:14:40 +00:00
|
|
|
}
|