blob: b9f64839cefb90eda8e948ccfafb9f660fcef648 [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
18#include <iosfwd>
19
20
21// GCC #defines PPC on Linux but we use it as our namespace name
22#undef PPC
23
24namespace llvm {
25 class PPCTargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026 class FunctionPass;
27 class MachineCodeEmitter;
28
29FunctionPass *createPPCBranchSelectionPass();
30FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
31FunctionPass *createPPCAsmPrinterPass(std::ostream &OS,
32 PPCTargetMachine &TM);
33FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
34 MachineCodeEmitter &MCE);
35} // end namespace llvm;
36
37// Defines symbolic names for PowerPC registers. This defines a mapping from
38// register name to register number.
39//
40#include "PPCGenRegisterNames.inc"
41
42// Defines symbolic names for the PowerPC instructions.
43//
44#include "PPCGenInstrNames.inc"
45
46#endif