1 //===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the entry points for global functions defined in the LLVM
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_POWERPC_H
16 #define LLVM_TARGET_POWERPC_H
18 // GCC #defines PPC on Linux but we use it as our namespace name
21 #include "llvm/Target/TargetMachine.h"
24 class PPCTargetMachine
;
26 class formatted_raw_ostream
;
28 FunctionPass
*createPPCBranchSelectionPass();
29 FunctionPass
*createPPCISelDag(PPCTargetMachine
&TM
);
30 FunctionPass
*createPPCJITCodeEmitterPass(PPCTargetMachine
&TM
,
33 extern Target ThePPC32Target
;
34 extern Target ThePPC64Target
;
36 } // end namespace llvm;
38 // Defines symbolic names for PowerPC registers. This defines a mapping from
39 // register name to register number.
41 #include "PPCGenRegisterNames.inc"
43 // Defines symbolic names for the PowerPC instructions.
45 #include "PPCGenInstrNames.inc"