blob: 6fe5cef7718c2410a2672434d1f942619633bbda [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;
Chris Lattner8488a282010-11-14 21:12:33 +000027 class MachineInstr;
28 class MCInst;
29 class AsmPrinter;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030
31FunctionPass *createPPCBranchSelectionPass();
32FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000033FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000034 JITCodeEmitter &MCE);
Daniel Dunbar0b0441e2009-07-18 23:03:22 +000035
Chris Lattner8488a282010-11-14 21:12:33 +000036void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
37 AsmPrinter &AP);
38
Daniel Dunbar0b0441e2009-07-18 23:03:22 +000039extern Target ThePPC32Target;
40extern Target ThePPC64Target;
41
Chris Lattner16dff4a2010-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.
Chris Lattner90e852d2010-11-15 02:46:57 +000053 MO_DARWIN_STUB,
Chris Lattner16dff4a2010-11-14 23:42:06 +000054
Chris Lattner90e852d2010-11-15 02:46:57 +000055 /// MO_LO16 - On a symbol operand, this represents a relocation containing
56 /// lower 16 bit of the address.
57 MO_LO16,
58
59 /// MO_HA16 - On a symbol operand, this represents a relocation containing
60 /// higher 16 bit of the address.
61 MO_HA16,
62
63 /// MO_LO16_PIC - On a symbol operand, this represents a relocation
64 /// containing lower 16 bit of the address with the picbase subtracted.
65 MO_LO16_PIC,
66
67 /// MO_HA16_PIC - On a symbol operand, this represents a relocation
68 /// containing higher 16 bit of the address with the picbase subtracted.
69 MO_HA16_PIC
Chris Lattner16dff4a2010-11-14 23:42:06 +000070 };
71 } // end namespace PPCII
72
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073} // end namespace llvm;
74
75// Defines symbolic names for PowerPC registers. This defines a mapping from
76// register name to register number.
77//
78#include "PPCGenRegisterNames.inc"
79
80// Defines symbolic names for the PowerPC instructions.
81//
82#include "PPCGenInstrNames.inc"
83
84#endif