blob: c8c17900886cc98a2d3d78eec62de2a8d33dae8a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//=====-- PPCSubtarget.h - Define Subtarget for the PPC -------*- 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 declares the PowerPC specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef POWERPCSUBTARGET_H
15#define POWERPCSUBTARGET_H
16
17#include "llvm/Target/TargetInstrItineraries.h"
18#include "llvm/Target/TargetSubtarget.h"
19
20#include <string>
21
22// GCC #defines PPC on Linux but we use it as our namespace name
23#undef PPC
24
25namespace llvm {
26
27namespace PPC {
28 // -m directive values.
29 enum {
30 DIR_32,
31 DIR_601,
32 DIR_602,
33 DIR_603,
34 DIR_7400,
35 DIR_750,
36 DIR_970,
37 DIR_64
38 };
39}
40
41class Module;
42class GlobalValue;
43class TargetMachine;
44
45class PPCSubtarget : public TargetSubtarget {
46public:
47 enum AsmWriterFlavorTy {
48 OldMnemonic, NewMnemonic, Unset
49 };
50protected:
51 const TargetMachine &TM;
52
53 /// stackAlignment - The minimum alignment known to hold of the stack frame on
54 /// entry to the function and which must be maintained by every function.
55 unsigned StackAlignment;
56
57 /// Selected instruction itineraries (one entry per itinerary class.)
58 InstrItineraryData InstrItins;
59
60 /// Which cpu directive was used.
61 unsigned DarwinDirective;
62
63 /// AsmFlavor - Which PPC asm dialect to use.
64 AsmWriterFlavorTy AsmFlavor;
65
66 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
67 bool IsGigaProcessor;
68 bool Has64BitSupport;
69 bool Use64BitRegs;
70 bool IsPPC64;
71 bool HasAltivec;
72 bool HasFSQRT;
73 bool HasSTFIWX;
74 bool IsDarwin;
75 bool HasLazyResolverStubs;
76public:
77 /// This constructor initializes the data members to match that
78 /// of the specified module.
79 ///
80 PPCSubtarget(const TargetMachine &TM, const Module &M,
81 const std::string &FS, bool is64Bit);
82
83 /// ParseSubtargetFeatures - Parses features string setting specified
84 /// subtarget options. Definition of function is auto generated by tblgen.
85 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
86
87 /// SetJITMode - This is called to inform the subtarget info that we are
88 /// producing code for the JIT.
89 void SetJITMode();
90
91 /// getStackAlignment - Returns the minimum alignment known to hold of the
92 /// stack frame on entry to the function and which must be maintained by every
93 /// function for this subtarget.
94 unsigned getStackAlignment() const { return StackAlignment; }
95
96 /// getDarwinDirective - Returns the -m directive specified for the cpu.
97 ///
98 unsigned getDarwinDirective() const { return DarwinDirective; }
99
100 /// getInstrItins - Return the instruction itineraies based on subtarget
101 /// selection.
102 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
103
104 /// getTargetDataString - Return the pointer size and type alignment
105 /// properties of this subtarget.
106 const char *getTargetDataString() const {
Dale Johannesen4c39f712007-08-03 20:20:50 +0000107 return isPPC64() ? "E-p:64:64-f64:32:64-i64:32:64-f128:64:128"
108 : "E-p:32:32-f64:32:64-i64:32:64-f128:64:128";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 }
110
111 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
112 ///
113 bool isPPC64() const { return IsPPC64; }
114
115 /// has64BitSupport - Return true if the selected CPU supports 64-bit
116 /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
117 bool has64BitSupport() const { return Has64BitSupport; }
118
119 /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
120 /// registers in 32-bit mode when possible. This can only true if
121 /// has64BitSupport() returns true.
122 bool use64BitRegs() const { return Use64BitRegs; }
123
124 /// hasLazyResolverStub - Return true if accesses to the specified global have
125 /// to go through a dyld lazy resolution stub. This means that an extra load
126 /// is required to get the address of the global.
127 bool hasLazyResolverStub(const GlobalValue *GV) const;
128
129 // Specific obvious features.
130 bool hasFSQRT() const { return HasFSQRT; }
131 bool hasSTFIWX() const { return HasSTFIWX; }
132 bool hasAltivec() const { return HasAltivec; }
133 bool isGigaProcessor() const { return IsGigaProcessor; }
134
135 bool isDarwin() const { return IsDarwin; }
136
137 bool isMachoABI() const { return IsDarwin || IsPPC64; }
138 bool isELF32_ABI() const { return !IsDarwin && !IsPPC64; }
139
140 unsigned getAsmFlavor() const {
141 return AsmFlavor != Unset ? unsigned(AsmFlavor) : 0;
142 }
143};
144} // End llvm namespace
145
146#endif