blob: f6c3469908b9b94e837747af670a4af5a335e972 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the entry points for global functions defined in the LLVM
11// PowerPC back-end.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_POWERPC_H
16#define LLVM_TARGET_POWERPC_H
17
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018// GCC #defines PPC on Linux but we use it as our namespace name
19#undef PPC
20
Bill Wendling5ed22ac2009-04-29 23:29:43 +000021#include "llvm/Target/TargetMachine.h"
22
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023namespace llvm {
24 class PPCTargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025 class FunctionPass;
26 class MachineCodeEmitter;
Owen Anderson847b99b2008-08-21 00:14:44 +000027 class raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028
29FunctionPass *createPPCBranchSelectionPass();
30FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Daniel Dunbarb10d2222009-07-01 01:48:54 +000031FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS, PPCTargetMachine &TM,
32 bool Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
34 MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000035FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
36 JITCodeEmitter &MCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037} // end namespace llvm;
38
39// Defines symbolic names for PowerPC registers. This defines a mapping from
40// register name to register number.
41//
42#include "PPCGenRegisterNames.inc"
43
44// Defines symbolic names for the PowerPC instructions.
45//
46#include "PPCGenInstrNames.inc"
47
48#endif