blob: dbe98a68dbecd392e32c16c3f267fc566602e3b1 [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;
Chris Lattner8488a282010-11-14 21:12:33 +000028 class AsmPrinter;
Chris Lattner1e431382010-11-15 04:16:32 +000029 class MCInst;
30 class MCCodeEmitter;
31 class MCContext;
32 class TargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
Chris Lattner276fd912010-11-15 03:13:19 +000034 FunctionPass *createPPCBranchSelectionPass();
35 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
36 FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
37 JITCodeEmitter &MCE);
Chris Lattner1e431382010-11-15 04:16:32 +000038 MCCodeEmitter *createPPCMCCodeEmitter(const Target &, TargetMachine &TM,
39 MCContext &Ctx);
Chris Lattner276fd912010-11-15 03:13:19 +000040
41 void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
42 AsmPrinter &AP);
43
44 extern Target ThePPC32Target;
45 extern Target ThePPC64Target;
46
Chris Lattner16dff4a2010-11-14 23:42:06 +000047 namespace PPCII {
48
49 /// Target Operand Flag enum.
50 enum TOF {
51 //===------------------------------------------------------------------===//
52 // PPC Specific MachineOperand flags.
53 MO_NO_FLAG,
54
55 /// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the
56 /// reference is actually to the "FOO$stub" symbol. This is used for calls
57 /// and jumps to external functions on Tiger and earlier.
Chris Lattner276fd912010-11-15 03:13:19 +000058 MO_DARWIN_STUB = 1,
Chris Lattner16dff4a2010-11-14 23:42:06 +000059
Chris Lattner276fd912010-11-15 03:13:19 +000060 /// MO_LO16, MO_HA16 - lo16(symbol) and ha16(symbol)
61 MO_LO16 = 4, MO_HA16 = 8,
Chris Lattner90e852d2010-11-15 02:46:57 +000062
Chris Lattner276fd912010-11-15 03:13:19 +000063 /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to
64 /// the function's picbase, e.g. lo16(symbol-picbase).
65 MO_PIC_FLAG = 16,
66
67 /// MO_NLP_FLAG - If this bit is set, the symbol reference is actually to
68 /// the non_lazy_ptr for the global, e.g. lo16(symbol$non_lazy_ptr-picbase).
69 MO_NLP_FLAG = 32,
Chris Lattner90e852d2010-11-15 02:46:57 +000070
Chris Lattner276fd912010-11-15 03:13:19 +000071 /// MO_NLP_HIDDEN_FLAG - If this bit is set, the symbol reference is to a
72 /// symbol with hidden visibility. This causes a different kind of
73 /// non-lazy-pointer to be generated.
74 MO_NLP_HIDDEN_FLAG = 64
Chris Lattner16dff4a2010-11-14 23:42:06 +000075 };
76 } // end namespace PPCII
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078} // end namespace llvm;
79
80// Defines symbolic names for PowerPC registers. This defines a mapping from
81// register name to register number.
82//
83#include "PPCGenRegisterNames.inc"
84
85// Defines symbolic names for the PowerPC instructions.
86//
87#include "PPCGenInstrNames.inc"
88
89#endif