2005-10-15 01:37:35 +02:00
|
|
|
//===- PPC.td - Describe the PowerPC Target Machine --------*- tablegen -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-10-15 01:37:35 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This is the top level entry point for the PowerPC target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Get the target-independent interfaces which we are implementing.
|
|
|
|
//
|
2008-11-24 08:34:46 +01:00
|
|
|
include "llvm/Target/Target.td"
|
2005-10-15 01:37:35 +02:00
|
|
|
|
2005-10-19 21:51:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-10-22 10:04:24 +02:00
|
|
|
// PowerPC Subtarget features.
|
2005-10-19 21:51:16 +02:00
|
|
|
//
|
|
|
|
|
2006-12-12 21:57:08 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CPU Directives //
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def Directive601 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_601", "">;
|
|
|
|
def Directive602 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_602", "">;
|
|
|
|
def Directive603 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">;
|
|
|
|
def Directive604 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">;
|
|
|
|
def Directive620 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_603", "">;
|
|
|
|
def Directive7400: SubtargetFeature<"", "DarwinDirective", "PPC::DIR_7400", "">;
|
|
|
|
def Directive750 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_750", "">;
|
|
|
|
def Directive970 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_970", "">;
|
|
|
|
def Directive32 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_32", "">;
|
|
|
|
def Directive64 : SubtargetFeature<"", "DarwinDirective", "PPC::DIR_64", "">;
|
|
|
|
|
2006-06-16 19:34:12 +02:00
|
|
|
def Feature64Bit : SubtargetFeature<"64bit","Has64BitSupport", "true",
|
2005-10-23 07:28:51 +02:00
|
|
|
"Enable 64-bit instructions">;
|
2006-06-16 19:34:12 +02:00
|
|
|
def Feature64BitRegs : SubtargetFeature<"64bitregs","Use64BitRegs", "true",
|
|
|
|
"Enable 64-bit registers usage for ppc32 [beta]">;
|
2006-01-27 09:09:42 +01:00
|
|
|
def FeatureAltivec : SubtargetFeature<"altivec","HasAltivec", "true",
|
2005-10-23 07:28:51 +02:00
|
|
|
"Enable Altivec instructions">;
|
2006-01-27 09:09:42 +01:00
|
|
|
def FeatureGPUL : SubtargetFeature<"gpul","IsGigaProcessor", "true",
|
2005-10-23 07:28:51 +02:00
|
|
|
"Enable GPUL instructions">;
|
2006-01-27 09:09:42 +01:00
|
|
|
def FeatureFSqrt : SubtargetFeature<"fsqrt","HasFSQRT", "true",
|
2005-10-23 07:28:51 +02:00
|
|
|
"Enable the fsqrt instruction">;
|
2006-02-28 08:08:22 +01:00
|
|
|
def FeatureSTFIWX : SubtargetFeature<"stfiwx","HasSTFIWX", "true",
|
|
|
|
"Enable the stfiwx instruction">;
|
2005-10-19 21:51:16 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2005-10-24 00:08:13 +02:00
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "PPCRegisterInfo.td"
|
|
|
|
include "PPCSchedule.td"
|
|
|
|
include "PPCInstrInfo.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// PowerPC processors supported.
|
2005-10-19 21:51:16 +02:00
|
|
|
//
|
|
|
|
|
2006-12-12 21:57:08 +01:00
|
|
|
def : Processor<"generic", G3Itineraries, [Directive32]>;
|
|
|
|
def : Processor<"601", G3Itineraries, [Directive601]>;
|
|
|
|
def : Processor<"602", G3Itineraries, [Directive602]>;
|
|
|
|
def : Processor<"603", G3Itineraries, [Directive603]>;
|
|
|
|
def : Processor<"603e", G3Itineraries, [Directive603]>;
|
|
|
|
def : Processor<"603ev", G3Itineraries, [Directive603]>;
|
|
|
|
def : Processor<"604", G3Itineraries, [Directive604]>;
|
|
|
|
def : Processor<"604e", G3Itineraries, [Directive604]>;
|
|
|
|
def : Processor<"620", G3Itineraries, [Directive620]>;
|
|
|
|
def : Processor<"g3", G3Itineraries, [Directive7400]>;
|
|
|
|
def : Processor<"7400", G4Itineraries, [Directive7400, FeatureAltivec]>;
|
|
|
|
def : Processor<"g4", G4Itineraries, [Directive7400, FeatureAltivec]>;
|
|
|
|
def : Processor<"7450", G4PlusItineraries, [Directive7400, FeatureAltivec]>;
|
|
|
|
def : Processor<"g4+", G4PlusItineraries, [Directive750, FeatureAltivec]>;
|
|
|
|
def : Processor<"750", G4Itineraries, [Directive750, FeatureAltivec]>;
|
2005-10-19 21:51:16 +02:00
|
|
|
def : Processor<"970", G5Itineraries,
|
2006-12-12 21:57:08 +01:00
|
|
|
[Directive970, FeatureAltivec,
|
|
|
|
FeatureGPUL, FeatureFSqrt, FeatureSTFIWX,
|
2005-10-22 10:04:24 +02:00
|
|
|
Feature64Bit /*, Feature64BitRegs */]>;
|
2005-10-19 21:51:16 +02:00
|
|
|
def : Processor<"g5", G5Itineraries,
|
2006-12-12 21:57:08 +01:00
|
|
|
[Directive970, FeatureAltivec,
|
|
|
|
FeatureGPUL, FeatureFSqrt, FeatureSTFIWX,
|
|
|
|
Feature64Bit /*, Feature64BitRegs */]>;
|
|
|
|
def : Processor<"ppc", G3Itineraries, [Directive32]>;
|
|
|
|
def : Processor<"ppc64", G5Itineraries,
|
|
|
|
[Directive64, FeatureAltivec,
|
|
|
|
FeatureGPUL, FeatureFSqrt, FeatureSTFIWX,
|
2005-10-22 10:04:24 +02:00
|
|
|
Feature64Bit /*, Feature64BitRegs */]>;
|
2005-10-19 21:51:16 +02:00
|
|
|
|
|
|
|
|
2007-03-06 01:59:59 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Calling Conventions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "PPCCallingConv.td"
|
|
|
|
|
2006-03-12 10:13:49 +01:00
|
|
|
def PPCInstrInfo : InstrInfo {
|
|
|
|
let isLittleEndianEncoding = 1;
|
|
|
|
}
|
|
|
|
|
2010-11-15 04:53:53 +01:00
|
|
|
def PPCAsmWriter : AsmWriter {
|
|
|
|
string AsmWriterClassName = "InstPrinter";
|
|
|
|
bit isMCAsmWriter = 1;
|
|
|
|
}
|
2006-03-12 10:13:49 +01:00
|
|
|
|
2005-10-15 01:37:35 +02:00
|
|
|
def PPC : Target {
|
2006-03-12 10:13:49 +01:00
|
|
|
// Information about the instructions.
|
|
|
|
let InstructionSet = PPCInstrInfo;
|
2010-11-15 04:53:53 +01:00
|
|
|
|
|
|
|
let AssemblyWriters = [PPCAsmWriter];
|
2005-10-15 01:37:35 +02:00
|
|
|
}
|