2013-02-05 13:24:56 +00:00
|
|
|
//===- AArch64.td - Describe the AArch64 Target Machine -------*- tblgen -*-==//
|
2013-01-31 12:12:40 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2013-02-14 16:17:01 +00:00
|
|
|
//
|
2013-01-31 12:12:40 +00:00
|
|
|
// This is the top level entry point for the AArch64 target.
|
2013-02-14 16:17:01 +00:00
|
|
|
//
|
2013-01-31 12:12:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AArch64 Subtarget features.
|
|
|
|
//
|
|
|
|
|
2013-10-31 09:32:11 +00:00
|
|
|
def FeatureFPARMv8 : SubtargetFeature<"fp-armv8", "HasFPARMv8", "true",
|
|
|
|
"Enable ARMv8 FP">;
|
|
|
|
|
2013-01-31 12:12:40 +00:00
|
|
|
def FeatureNEON : SubtargetFeature<"neon", "HasNEON", "true",
|
2013-10-31 09:32:11 +00:00
|
|
|
"Enable Advanced SIMD instructions", [FeatureFPARMv8]>;
|
2013-01-31 12:12:40 +00:00
|
|
|
|
|
|
|
def FeatureCrypto : SubtargetFeature<"crypto", "HasCrypto", "true",
|
|
|
|
"Enable cryptographic instructions">;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AArch64 Processors
|
|
|
|
//
|
|
|
|
|
|
|
|
include "AArch64Schedule.td"
|
|
|
|
|
2014-02-13 09:46:11 +00:00
|
|
|
class ProcNoItin<string Name, list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
|
2014-02-14 04:38:09 +00:00
|
|
|
def : Processor<"generic", GenericItineraries, [FeatureFPARMv8, FeatureNEON]>;
|
2013-01-31 12:12:40 +00:00
|
|
|
|
2014-03-06 16:04:00 +00:00
|
|
|
def ProcA53 : SubtargetFeature<"a53", "ARMProcFamily", "CortexA53",
|
|
|
|
"Cortex-A53 ARM processors",
|
|
|
|
[FeatureFPARMv8,
|
|
|
|
FeatureNEON,
|
|
|
|
FeatureCrypto]>;
|
|
|
|
|
|
|
|
def ProcA57 : SubtargetFeature<"a57", "ARMProcFamily", "CortexA57",
|
|
|
|
"Cortex-A57 ARM processors",
|
|
|
|
[FeatureFPARMv8,
|
|
|
|
FeatureNEON,
|
|
|
|
FeatureCrypto]>;
|
|
|
|
|
|
|
|
def : ProcessorModel<"cortex-a53", CortexA53Model, [ProcA53]>;
|
|
|
|
def : Processor<"cortex-a57", NoItineraries, [ProcA57]>;
|
2014-02-13 09:46:11 +00:00
|
|
|
|
2013-01-31 12:12:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AArch64RegisterInfo.td"
|
|
|
|
|
|
|
|
include "AArch64CallingConv.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AArch64InstrInfo.td"
|
|
|
|
|
|
|
|
def AArch64InstrInfo : InstrInfo;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Declare the target which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def AArch64 : Target {
|
|
|
|
let InstructionSet = AArch64InstrInfo;
|
|
|
|
}
|