blob: 24e2710a15c9bd13945c67c2125a2eba47acf1b2 [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
Chris Lattneraf53a872006-11-04 05:27:39 +000018// GCC #defines PPC on Linux but we use it as our namespace name
19#undef PPC
20
Misha Brukman5dfe3a92004-06-21 16:55:25 +000021namespace llvm {
Chris Lattneraf53a872006-11-04 05:27:39 +000022 class PPCTargetMachine;
Chris Lattneraf53a872006-11-04 05:27:39 +000023 class FunctionPass;
David Greene71847812009-07-14 20:18:05 +000024 class formatted_raw_ostream;
Chris Lattner8d63ba82010-11-14 21:09:28 +000025 class JITCodeEmitter;
26 class Target;
Chris Lattnera7217c82010-11-14 21:12:33 +000027 class MachineInstr;
28 class MCInst;
29 class AsmPrinter;
Chris Lattneraf53a872006-11-04 05:27:39 +000030
Misha Brukman999d9cf2004-07-27 18:33:06 +000031FunctionPass *createPPCBranchSelectionPass();
Evan Chengc4c62572006-03-13 23:20:37 +000032FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000033FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +000034 JITCodeEmitter &MCE);
Daniel Dunbar4cb1e132009-07-18 23:03:22 +000035
Chris Lattnera7217c82010-11-14 21:12:33 +000036void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
37 AsmPrinter &AP);
38
Daniel Dunbar4cb1e132009-07-18 23:03:22 +000039extern Target ThePPC32Target;
40extern Target ThePPC64Target;
41
Misha Brukman5dfe3a92004-06-21 16:55:25 +000042} // end namespace llvm;
43
Misha Brukman5dfe3a92004-06-21 16:55:25 +000044// Defines symbolic names for PowerPC registers. This defines a mapping from
45// register name to register number.
46//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000047#include "PPCGenRegisterNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000048
49// Defines symbolic names for the PowerPC instructions.
50//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000051#include "PPCGenInstrNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000052
53#endif