2004-08-10 21:24:44 +00:00
|
|
|
//===- PowerPC.td - Describe the PowerPC Target Machine ----*- tablegen -*-===//
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Get the target-independent interfaces which we are implementing...
|
|
|
|
//
|
|
|
|
include "../Target.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-07-27 23:29:16 +00:00
|
|
|
include "PowerPCRegisterInfo.td"
|
|
|
|
include "PowerPCInstrInfo.td"
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
def PowerPCInstrInfo : InstrInfo {
|
|
|
|
let PHIInst = PHI;
|
|
|
|
|
2004-08-10 21:24:44 +00:00
|
|
|
let TSFlagsFields = ["ArgCount", "Arg0Type", "Arg1Type", "Arg2Type",
|
|
|
|
"Arg3Type", "Arg4Type", "VMX", "PPC64"];
|
2004-06-21 16:55:25 +00:00
|
|
|
let TSFlagsShifts = [ 0, 3, 8, 13, 18, 23, 28, 29 ];
|
|
|
|
}
|