blob: b4644a18506b382a518175c547f81004d2d9c83e [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
21namespace llvm {
22 class PPCTargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023 class FunctionPass;
David Greene302008d2009-07-14 20:18:05 +000024 class formatted_raw_ostream;
Chris Lattner6d949832010-11-14 21:09:28 +000025 class JITCodeEmitter;
26 class Target;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
28FunctionPass *createPPCBranchSelectionPass();
29FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000030FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000031 JITCodeEmitter &MCE);
Daniel Dunbar0b0441e2009-07-18 23:03:22 +000032
33extern Target ThePPC32Target;
34extern Target ThePPC64Target;
35
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036} // end namespace llvm;
37
38// Defines symbolic names for PowerPC registers. This defines a mapping from
39// register name to register number.
40//
41#include "PPCGenRegisterNames.inc"
42
43// Defines symbolic names for the PowerPC instructions.
44//
45#include "PPCGenInstrNames.inc"
46
47#endif