blob: 78c970eab47b8a58c66063d46e28d77f72b74fca [file] [log] [blame]
Chris Lattner12e97302006-09-04 04:14:57 +00001//===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Misha Brukmane05203f2004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb4402432005-04-21 23:30:14 +00007//
Misha Brukmane05203f2004-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 Lattner12e97302006-09-04 04:14:57 +000015#ifndef LLVM_TARGET_POWERPC_H
16#define LLVM_TARGET_POWERPC_H
Misha Brukmane05203f2004-06-21 16:55:25 +000017
Chris Lattner6be72602006-11-04 05:27:39 +000018// GCC #defines PPC on Linux but we use it as our namespace name
19#undef PPC
20
Bill Wendling026e5d72009-04-29 23:29:43 +000021#include "llvm/Target/TargetMachine.h"
22
Misha Brukmane05203f2004-06-21 16:55:25 +000023namespace llvm {
Chris Lattner6be72602006-11-04 05:27:39 +000024 class PPCTargetMachine;
Chris Lattner6be72602006-11-04 05:27:39 +000025 class FunctionPass;
26 class MachineCodeEmitter;
Owen Anderson93719642008-08-21 00:14:44 +000027 class raw_ostream;
Chris Lattner6be72602006-11-04 05:27:39 +000028
Misha Brukmanef8cf022004-07-27 18:33:06 +000029FunctionPass *createPPCBranchSelectionPass();
Evan Cheng2dd2c652006-03-13 23:20:37 +000030FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Owen Anderson93719642008-08-21 00:14:44 +000031FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS,
Bill Wendlingc5437ea2009-02-24 08:30:20 +000032 PPCTargetMachine &TM,
Bill Wendling026e5d72009-04-29 23:29:43 +000033 CodeGenOpt::Level OptLevel, bool Verbose);
Nate Begeman3cb39212006-08-23 21:08:52 +000034FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
35 MachineCodeEmitter &MCE);
Misha Brukmane05203f2004-06-21 16:55:25 +000036} // end namespace llvm;
37
Misha Brukmane05203f2004-06-21 16:55:25 +000038// Defines symbolic names for PowerPC registers. This defines a mapping from
39// register name to register number.
40//
Chris Lattner0921e3b2005-10-14 23:37:35 +000041#include "PPCGenRegisterNames.inc"
Misha Brukmane05203f2004-06-21 16:55:25 +000042
43// Defines symbolic names for the PowerPC instructions.
44//
Chris Lattner0921e3b2005-10-14 23:37:35 +000045#include "PPCGenInstrNames.inc"
Misha Brukmane05203f2004-06-21 16:55:25 +000046
47#endif