blob: 7242f3aa845831300d07b9840a35cd3c9625758c [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 Lattnerb46443a2010-11-15 08:49:58 +000018#include <string>
19
Chris Lattneraf53a872006-11-04 05:27:39 +000020// GCC #defines PPC on Linux but we use it as our namespace name
21#undef PPC
22
Misha Brukman5dfe3a92004-06-21 16:55:25 +000023namespace llvm {
Chris Lattneraf53a872006-11-04 05:27:39 +000024 class PPCTargetMachine;
Chris Lattneraf53a872006-11-04 05:27:39 +000025 class FunctionPass;
David Greene71847812009-07-14 20:18:05 +000026 class formatted_raw_ostream;
Chris Lattner8d63ba82010-11-14 21:09:28 +000027 class JITCodeEmitter;
28 class Target;
Chris Lattnera7217c82010-11-14 21:12:33 +000029 class MachineInstr;
Chris Lattnera7217c82010-11-14 21:12:33 +000030 class AsmPrinter;
Chris Lattner5ffe38e2010-11-15 04:16:32 +000031 class MCInst;
32 class MCCodeEmitter;
33 class MCContext;
34 class TargetMachine;
Chris Lattnerb46443a2010-11-15 08:49:58 +000035 class TargetAsmBackend;
Chris Lattneraf53a872006-11-04 05:27:39 +000036
Chris Lattner6d2ff122010-11-15 03:13:19 +000037 FunctionPass *createPPCBranchSelectionPass();
38 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
39 FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
40 JITCodeEmitter &MCE);
Chris Lattner5ffe38e2010-11-15 04:16:32 +000041 MCCodeEmitter *createPPCMCCodeEmitter(const Target &, TargetMachine &TM,
42 MCContext &Ctx);
Chris Lattnerb46443a2010-11-15 08:49:58 +000043 TargetAsmBackend *createPPCAsmBackend(const Target &, const std::string &);
Chris Lattner6d2ff122010-11-15 03:13:19 +000044
45 void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
46 AsmPrinter &AP);
47
48 extern Target ThePPC32Target;
49 extern Target ThePPC64Target;
50
Chris Lattnerb9082582010-11-14 23:42:06 +000051 namespace PPCII {
52
53 /// Target Operand Flag enum.
54 enum TOF {
55 //===------------------------------------------------------------------===//
56 // PPC Specific MachineOperand flags.
57 MO_NO_FLAG,
58
59 /// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the
60 /// reference is actually to the "FOO$stub" symbol. This is used for calls
61 /// and jumps to external functions on Tiger and earlier.
Chris Lattner6d2ff122010-11-15 03:13:19 +000062 MO_DARWIN_STUB = 1,
Chris Lattnerb9082582010-11-14 23:42:06 +000063
Chris Lattner6d2ff122010-11-15 03:13:19 +000064 /// MO_LO16, MO_HA16 - lo16(symbol) and ha16(symbol)
65 MO_LO16 = 4, MO_HA16 = 8,
Chris Lattner1e61e692010-11-15 02:46:57 +000066
Chris Lattner6d2ff122010-11-15 03:13:19 +000067 /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to
68 /// the function's picbase, e.g. lo16(symbol-picbase).
69 MO_PIC_FLAG = 16,
70
71 /// MO_NLP_FLAG - If this bit is set, the symbol reference is actually to
72 /// the non_lazy_ptr for the global, e.g. lo16(symbol$non_lazy_ptr-picbase).
73 MO_NLP_FLAG = 32,
Chris Lattner1e61e692010-11-15 02:46:57 +000074
Chris Lattner6d2ff122010-11-15 03:13:19 +000075 /// MO_NLP_HIDDEN_FLAG - If this bit is set, the symbol reference is to a
76 /// symbol with hidden visibility. This causes a different kind of
77 /// non-lazy-pointer to be generated.
78 MO_NLP_HIDDEN_FLAG = 64
Chris Lattnerb9082582010-11-14 23:42:06 +000079 };
80 } // end namespace PPCII
81
Misha Brukman5dfe3a92004-06-21 16:55:25 +000082} // end namespace llvm;
83
Misha Brukman5dfe3a92004-06-21 16:55:25 +000084// Defines symbolic names for PowerPC registers. This defines a mapping from
85// register name to register number.
86//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000087#include "PPCGenRegisterNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000088
89// Defines symbolic names for the PowerPC instructions.
90//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000091#include "PPCGenInstrNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000092
93#endif