blob: b9f64839cefb90eda8e948ccfafb9f660fcef648 [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
Nate Begeman7a4fe9b2004-08-11 07:40:04 +000018#include <iosfwd>
19
Chris Lattneraf53a872006-11-04 05:27:39 +000020
21// GCC #defines PPC on Linux but we use it as our namespace name
22#undef PPC
23
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024namespace llvm {
Chris Lattneraf53a872006-11-04 05:27:39 +000025 class PPCTargetMachine;
Chris Lattneraf53a872006-11-04 05:27:39 +000026 class FunctionPass;
27 class MachineCodeEmitter;
28
Misha Brukman999d9cf2004-07-27 18:33:06 +000029FunctionPass *createPPCBranchSelectionPass();
Evan Chengc4c62572006-03-13 23:20:37 +000030FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Chris Lattner4da1c822006-09-20 17:12:19 +000031FunctionPass *createPPCAsmPrinterPass(std::ostream &OS,
32 PPCTargetMachine &TM);
Nate Begemaneb883af2006-08-23 21:08:52 +000033FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
34 MachineCodeEmitter &MCE);
Misha Brukman5dfe3a92004-06-21 16:55:25 +000035} // end namespace llvm;
36
Misha Brukman5dfe3a92004-06-21 16:55:25 +000037// Defines symbolic names for PowerPC registers. This defines a mapping from
38// register name to register number.
39//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000040#include "PPCGenRegisterNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000041
42// Defines symbolic names for the PowerPC instructions.
43//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000044#include "PPCGenInstrNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000045
46#endif