blob: 00ec7474c9e39d95de39a16512a564a89da84efb [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//=====-- PPCSubtarget.h - Define Subtarget for the PPC -------*- C++ -*--====//
Nate Begeman8c00f8c2005-08-04 07:12:09 +00002//
3// 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.
Nate Begeman8c00f8c2005-08-04 07:12:09 +00007//
8//===----------------------------------------------------------------------===//
9//
Andrew Lenharth68fd4862005-09-29 21:11:57 +000010// This file declares the PowerPC specific subclass of TargetSubtarget.
Nate Begeman8c00f8c2005-08-04 07:12:09 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef POWERPCSUBTARGET_H
15#define POWERPCSUBTARGET_H
16
Jim Laskey6cee6302005-11-01 20:06:59 +000017#include "llvm/Target/TargetInstrItineraries.h"
Nate Begeman8c00f8c2005-08-04 07:12:09 +000018#include "llvm/Target/TargetSubtarget.h"
19
Jim Laskeyb1e11802005-09-01 21:38:21 +000020#include <string>
21
Nick Lewyckybd92d812007-01-19 04:36:02 +000022// GCC #defines PPC on Linux but we use it as our namespace name
23#undef PPC
24
Nate Begeman8c00f8c2005-08-04 07:12:09 +000025namespace llvm {
Jim Laskeyc35010d2006-12-12 20:57:08 +000026
27namespace PPC {
28 // -m directive values.
29 enum {
Dale Johannesendb01c8b2008-02-14 23:35:16 +000030 DIR_NONE,
Jim Laskeyc35010d2006-12-12 20:57:08 +000031 DIR_32,
32 DIR_601,
33 DIR_602,
34 DIR_603,
35 DIR_7400,
36 DIR_750,
37 DIR_970,
38 DIR_64
39 };
40}
41
Chris Lattner57fc62c2006-12-11 23:22:45 +000042class GlobalValue;
43class TargetMachine;
44
Nate Begeman8c00f8c2005-08-04 07:12:09 +000045class PPCSubtarget : public TargetSubtarget {
46protected:
47 /// stackAlignment - The minimum alignment known to hold of the stack frame on
48 /// entry to the function and which must be maintained by every function.
Chris Lattner3c304a32005-08-05 22:05:03 +000049 unsigned StackAlignment;
Jim Laskey6cee6302005-11-01 20:06:59 +000050
51 /// Selected instruction itineraries (one entry per itinerary class.)
52 InstrItineraryData InstrItins;
Jim Laskeyc35010d2006-12-12 20:57:08 +000053
54 /// Which cpu directive was used.
55 unsigned DarwinDirective;
Nate Begeman8c00f8c2005-08-04 07:12:09 +000056
57 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
Chris Lattner3c304a32005-08-05 22:05:03 +000058 bool IsGigaProcessor;
Chris Lattnera7a58542006-06-16 17:34:12 +000059 bool Has64BitSupport;
60 bool Use64BitRegs;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000061 bool IsPPC64;
Jim Laskey581a8f72005-10-26 17:30:34 +000062 bool HasAltivec;
Chris Lattner1e9de3e2005-09-02 18:33:05 +000063 bool HasFSQRT;
Chris Lattnerbf751e22006-02-28 07:08:22 +000064 bool HasSTFIWX;
Chris Lattner57fc62c2006-12-11 23:22:45 +000065 bool HasLazyResolverStubs;
Torok Edwin0e3a1a82010-08-04 20:47:44 +000066 bool IsJITCodeModel;
Chris Lattner564da5d2008-01-02 19:35:16 +000067
68 /// DarwinVers - Nonzero if this is a darwin platform. Otherwise, the numeric
69 /// version of the platform, e.g. 8 = 10.4 (Tiger), 9 = 10.5 (Leopard), etc.
70 unsigned char DarwinVers; // Is any darwin-ppc platform.
Nate Begeman8c00f8c2005-08-04 07:12:09 +000071public:
72 /// This constructor initializes the data members to match that
Daniel Dunbar3be03402009-08-02 22:11:08 +000073 /// of the specified triple.
Nate Begeman8c00f8c2005-08-04 07:12:09 +000074 ///
Daniel Dunbar3be03402009-08-02 22:11:08 +000075 PPCSubtarget(const std::string &TT, const std::string &FS, bool is64Bit);
Jim Laskey581a8f72005-10-26 17:30:34 +000076
77 /// ParseSubtargetFeatures - Parses features string setting specified
Jim Laskey2cbc2072005-10-26 18:07:50 +000078 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov41a02432009-05-23 19:50:50 +000079 std::string ParseSubtargetFeatures(const std::string &FS,
80 const std::string &CPU);
81
Chris Lattner57fc62c2006-12-11 23:22:45 +000082
83 /// SetJITMode - This is called to inform the subtarget info that we are
84 /// producing code for the JIT.
85 void SetJITMode();
Nate Begeman8c00f8c2005-08-04 07:12:09 +000086
87 /// getStackAlignment - Returns the minimum alignment known to hold of the
88 /// stack frame on entry to the function and which must be maintained by every
89 /// function for this subtarget.
Chris Lattner3c304a32005-08-05 22:05:03 +000090 unsigned getStackAlignment() const { return StackAlignment; }
Jim Laskey6cee6302005-11-01 20:06:59 +000091
Jim Laskeyc35010d2006-12-12 20:57:08 +000092 /// getDarwinDirective - Returns the -m directive specified for the cpu.
93 ///
94 unsigned getDarwinDirective() const { return DarwinDirective; }
95
Jim Laskey6cee6302005-11-01 20:06:59 +000096 /// getInstrItins - Return the instruction itineraies based on subtarget
97 /// selection.
Chris Lattner442b9a62006-12-11 21:42:55 +000098 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000099
100 /// getTargetDataString - Return the pointer size and type alignment
101 /// properties of this subtarget.
Chris Lattner94de9a82006-06-16 01:37:27 +0000102 const char *getTargetDataString() const {
Dale Johannesended2b202009-02-27 00:56:35 +0000103 // Note, the alignment values for f64 and i64 on ppc64 in Darwin
104 // documentation are wrong; these are correct (i.e. "what gcc does").
Chris Lattner59a91782009-11-07 19:07:32 +0000105 return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
106 : "E-p:32:32-f64:32:64-i64:32:64-f128:64:128-n32";
Chris Lattner94de9a82006-06-16 01:37:27 +0000107 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000108
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000109 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
110 ///
111 bool isPPC64() const { return IsPPC64; }
112
113 /// has64BitSupport - Return true if the selected CPU supports 64-bit
114 /// instructions, regardless of whether we are in 32-bit or 64-bit mode.
115 bool has64BitSupport() const { return Has64BitSupport; }
116
117 /// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
118 /// registers in 32-bit mode when possible. This can only true if
119 /// has64BitSupport() returns true.
120 bool use64BitRegs() const { return Use64BitRegs; }
121
Chris Lattner57fc62c2006-12-11 23:22:45 +0000122 /// hasLazyResolverStub - Return true if accesses to the specified global have
123 /// to go through a dyld lazy resolution stub. This means that an extra load
124 /// is required to get the address of the global.
Daniel Dunbar3be03402009-08-02 22:11:08 +0000125 bool hasLazyResolverStub(const GlobalValue *GV,
126 const TargetMachine &TM) const;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000127
Torok Edwin0e3a1a82010-08-04 20:47:44 +0000128 // isJITCodeModel - True if we're generating code for the JIT
129 bool isJITCodeModel() const { return IsJITCodeModel; }
130
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000131 // Specific obvious features.
Chris Lattner1e9de3e2005-09-02 18:33:05 +0000132 bool hasFSQRT() const { return HasFSQRT; }
Chris Lattnerbf751e22006-02-28 07:08:22 +0000133 bool hasSTFIWX() const { return HasSTFIWX; }
Jim Laskey581a8f72005-10-26 17:30:34 +0000134 bool hasAltivec() const { return HasAltivec; }
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000135 bool isGigaProcessor() const { return IsGigaProcessor; }
Bill Wendlingcb900992007-01-16 09:29:17 +0000136
Chris Lattner564da5d2008-01-02 19:35:16 +0000137 /// isDarwin - True if this is any darwin platform.
138 bool isDarwin() const { return DarwinVers != 0; }
139 /// isDarwin - True if this is darwin9 (leopard, 10.5) or above.
140 bool isDarwin9() const { return DarwinVers >= 9; }
Bill Wendlingcb900992007-01-16 09:29:17 +0000141
Rafael Espindola2f6fea92008-12-19 10:55:56 +0000142 /// getDarwinVers - Return the darwin version number, 8 = tiger, 9 = leopard.
143 unsigned getDarwinVers() const { return DarwinVers; }
144
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000145 bool isDarwinABI() const { return isDarwin(); }
146 bool isSVR4ABI() const { return !isDarwin(); }
147
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000148};
149} // End llvm namespace
150
151#endif