blob: 460d8e1744e62070bf67268a77ed724903a09415 [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 Lattneraf53a872006-11-04 05:27:39 +000018// GCC #defines PPC on Linux but we use it as our namespace name
19#undef PPC
20
Misha Brukman5dfe3a92004-06-21 16:55:25 +000021namespace llvm {
Chris Lattneraf53a872006-11-04 05:27:39 +000022 class PPCTargetMachine;
Chris Lattneraf53a872006-11-04 05:27:39 +000023 class FunctionPass;
David Greene71847812009-07-14 20:18:05 +000024 class formatted_raw_ostream;
Chris Lattner8d63ba82010-11-14 21:09:28 +000025 class JITCodeEmitter;
26 class Target;
Chris Lattnera7217c82010-11-14 21:12:33 +000027 class MachineInstr;
28 class MCInst;
29 class AsmPrinter;
Chris Lattneraf53a872006-11-04 05:27:39 +000030
Chris Lattner6d2ff122010-11-15 03:13:19 +000031 FunctionPass *createPPCBranchSelectionPass();
32 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
33 FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
34 JITCodeEmitter &MCE);
35
36 void LowerPPCMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
37 AsmPrinter &AP);
38
39 extern Target ThePPC32Target;
40 extern Target ThePPC64Target;
41
Chris Lattnerb9082582010-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 Lattner6d2ff122010-11-15 03:13:19 +000053 MO_DARWIN_STUB = 1,
Chris Lattnerb9082582010-11-14 23:42:06 +000054
Chris Lattner6d2ff122010-11-15 03:13:19 +000055 /// MO_LO16, MO_HA16 - lo16(symbol) and ha16(symbol)
56 MO_LO16 = 4, MO_HA16 = 8,
Chris Lattner1e61e692010-11-15 02:46:57 +000057
Chris Lattner6d2ff122010-11-15 03:13:19 +000058 /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to
59 /// the function's picbase, e.g. lo16(symbol-picbase).
60 MO_PIC_FLAG = 16,
61
62 /// MO_NLP_FLAG - If this bit is set, the symbol reference is actually to
63 /// the non_lazy_ptr for the global, e.g. lo16(symbol$non_lazy_ptr-picbase).
64 MO_NLP_FLAG = 32,
Chris Lattner1e61e692010-11-15 02:46:57 +000065
Chris Lattner6d2ff122010-11-15 03:13:19 +000066 /// MO_NLP_HIDDEN_FLAG - If this bit is set, the symbol reference is to a
67 /// symbol with hidden visibility. This causes a different kind of
68 /// non-lazy-pointer to be generated.
69 MO_NLP_HIDDEN_FLAG = 64
Chris Lattnerb9082582010-11-14 23:42:06 +000070 };
71 } // end namespace PPCII
72
Misha Brukman5dfe3a92004-06-21 16:55:25 +000073} // end namespace llvm;
74
Misha Brukman5dfe3a92004-06-21 16:55:25 +000075// Defines symbolic names for PowerPC registers. This defines a mapping from
76// register name to register number.
77//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000078#include "PPCGenRegisterNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000079
80// Defines symbolic names for the PowerPC instructions.
81//
Chris Lattner4c7b43b2005-10-14 23:37:35 +000082#include "PPCGenInstrNames.inc"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000083
84#endif