blob: 6d8974f2e08968672afd0764e7903d7b5d5095ac [file] [log] [blame]
Chris Lattner1911fd42006-09-04 04:14:57 +00001//===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the entry points for global functions defined in the LLVM
11// PowerPC back-end.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner1911fd42006-09-04 04:14:57 +000015#ifndef LLVM_TARGET_POWERPC_H
16#define LLVM_TARGET_POWERPC_H
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017
Chris Lattneraf53a872006-11-04 05:27:39 +000018// GCC #defines PPC on Linux but we use it as our namespace name
19#undef PPC
20
Bill Wendling98a366d2009-04-29 23:29:43 +000021#include "llvm/Target/TargetMachine.h"
22
Misha Brukman5dfe3a92004-06-21 16:55:25 +000023namespace llvm {
Chris Lattneraf53a872006-11-04 05:27:39 +000024 class PPCTargetMachine;
Chris Lattneraf53a872006-11-04 05:27:39 +000025 class FunctionPass;
26 class MachineCodeEmitter;
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +000027 class ObjectCodeEmitter;
David Greene71847812009-07-14 20:18:05 +000028 class formatted_raw_ostream;
Chris Lattneraf53a872006-11-04 05:27:39 +000029
Misha Brukman999d9cf2004-07-27 18:33:06 +000030FunctionPass *createPPCBranchSelectionPass();
Evan Chengc4c62572006-03-13 23:20:37 +000031FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
David Greene71847812009-07-14 20:18:05 +000032FunctionPass *createPPCAsmPrinterPass(formatted_raw_ostream &OS,
Daniel Dunbar51b198a2009-07-15 20:24:03 +000033 TargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000034 bool Verbose);
Nate Begemaneb883af2006-08-23 21:08:52 +000035FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
36 MachineCodeEmitter &MCE);
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000037FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +000038 JITCodeEmitter &MCE);
39FunctionPass *createPPCObjectCodeEmitterPass(PPCTargetMachine &TM,
40 ObjectCodeEmitter &OCE);
Daniel Dunbar4cb1e132009-07-18 23:03:22 +000041
42extern Target ThePPC32Target;
43extern Target ThePPC64Target;
44
Misha Brukman5dfe3a92004-06-21 16:55:25 +000045} // end namespace llvm;
46
Misha Brukman5dfe3a92004-06-21 16:55:25 +000047// Defines symbolic names for PowerPC registers. This defines a mapping from
48// register name to register number.
49//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000050#include "PPCGenRegisterNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000051
52// Defines symbolic names for the PowerPC instructions.
53//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000054#include "PPCGenInstrNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000055
56#endif