blob: e3c071c4479a546c8d5558c2763ae2fd21716664 [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
Misha Brukmane05203f2004-06-21 16:55:25 +000021namespace llvm {
Chris Lattner6be72602006-11-04 05:27:39 +000022 class PPCTargetMachine;
Chris Lattner6be72602006-11-04 05:27:39 +000023 class FunctionPass;
David Greenea31f96c2009-07-14 20:18:05 +000024 class formatted_raw_ostream;
Chris Lattner0927edf2010-11-14 21:09:28 +000025 class JITCodeEmitter;
26 class Target;
Chris Lattner5c1b0cd2010-11-14 21:12:33 +000027 class MachineInstr;
28 class MCInst;
29 class AsmPrinter;
Chris Lattner6be72602006-11-04 05:27:39 +000030
Misha Brukmanef8cf022004-07-27 18:33:06 +000031FunctionPass *createPPCBranchSelectionPass();
Evan Cheng2dd2c652006-03-13 23:20:37 +000032FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Bruno Cardoso Lopesa194c3a2009-05-30 20:51:52 +000033FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
Bruno Cardoso Lopes5661ea62009-07-06 05:09:34 +000034 JITCodeEmitter &MCE);
Daniel Dunbar67038c12009-07-18 23:03:22 +000035
Chris Lattner5c1b0cd2010-11-14 21:12:33 +000036void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
37 AsmPrinter &AP);
38
Daniel Dunbar67038c12009-07-18 23:03:22 +000039extern Target ThePPC32Target;
40extern Target ThePPC64Target;
41
Chris Lattnerdf8e17d2010-11-14 23:42:06 +000042 namespace PPCII {
43
44 /// Target Operand Flag enum.
45 enum TOF {
46 //===------------------------------------------------------------------===//
47 // PPC Specific MachineOperand flags.
48 MO_NO_FLAG,
49
50 /// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the
51 /// reference is actually to the "FOO$stub" symbol. This is used for calls
52 /// and jumps to external functions on Tiger and earlier.
53 MO_DARWIN_STUB
54
55 };
56 } // end namespace PPCII
57
Misha Brukmane05203f2004-06-21 16:55:25 +000058} // end namespace llvm;
59
Misha Brukmane05203f2004-06-21 16:55:25 +000060// Defines symbolic names for PowerPC registers. This defines a mapping from
61// register name to register number.
62//
Chris Lattner0921e3b2005-10-14 23:37:35 +000063#include "PPCGenRegisterNames.inc"
Misha Brukmane05203f2004-06-21 16:55:25 +000064
65// Defines symbolic names for the PowerPC instructions.
66//
Chris Lattner0921e3b2005-10-14 23:37:35 +000067#include "PPCGenInstrNames.inc"
Misha Brukmane05203f2004-06-21 16:55:25 +000068
69#endif