blob: 7bc2b803b5528a7e667c7c2d2635890c048b8ac3 [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//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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 {
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
Nate Begeman8c00f8c2005-08-04 07:12:09 +000041class Module;
Chris Lattner57fc62c2006-12-11 23:22:45 +000042class GlobalValue;
43class TargetMachine;
44
Nate Begeman8c00f8c2005-08-04 07:12:09 +000045class PPCSubtarget : public TargetSubtarget {
Bill Wendlingcb900992007-01-16 09:29:17 +000046public:
47 enum AsmWriterFlavorTy {
48 OldMnemonic, NewMnemonic, Unset
49 };
Nate Begeman8c00f8c2005-08-04 07:12:09 +000050protected:
Chris Lattner57fc62c2006-12-11 23:22:45 +000051 const TargetMachine &TM;
52
Nate Begeman8c00f8c2005-08-04 07:12:09 +000053 /// 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.
Chris Lattner3c304a32005-08-05 22:05:03 +000055 unsigned StackAlignment;
Jim Laskey6cee6302005-11-01 20:06:59 +000056
57 /// Selected instruction itineraries (one entry per itinerary class.)
58 InstrItineraryData InstrItins;
Jim Laskeyc35010d2006-12-12 20:57:08 +000059
60 /// Which cpu directive was used.
61 unsigned DarwinDirective;
Nate Begeman8c00f8c2005-08-04 07:12:09 +000062
Bill Wendlingcb900992007-01-16 09:29:17 +000063 /// AsmFlavor - Which PPC asm dialect to use.
64 AsmWriterFlavorTy AsmFlavor;
65
Nate Begeman8c00f8c2005-08-04 07:12:09 +000066 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
Chris Lattner3c304a32005-08-05 22:05:03 +000067 bool IsGigaProcessor;
Chris Lattnera7a58542006-06-16 17:34:12 +000068 bool Has64BitSupport;
69 bool Use64BitRegs;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000070 bool IsPPC64;
Jim Laskey581a8f72005-10-26 17:30:34 +000071 bool HasAltivec;
Chris Lattner1e9de3e2005-09-02 18:33:05 +000072 bool HasFSQRT;
Chris Lattnerbf751e22006-02-28 07:08:22 +000073 bool HasSTFIWX;
Chris Lattner3c304a32005-08-05 22:05:03 +000074 bool IsDarwin;
Chris Lattner57fc62c2006-12-11 23:22:45 +000075 bool HasLazyResolverStubs;
Nate Begeman8c00f8c2005-08-04 07:12:09 +000076public:
77 /// This constructor initializes the data members to match that
78 /// of the specified module.
79 ///
Chris Lattner57fc62c2006-12-11 23:22:45 +000080 PPCSubtarget(const TargetMachine &TM, const Module &M,
81 const std::string &FS, bool is64Bit);
Jim Laskey581a8f72005-10-26 17:30:34 +000082
83 /// ParseSubtargetFeatures - Parses features string setting specified
Jim Laskey2cbc2072005-10-26 18:07:50 +000084 /// subtarget options. Definition of function is auto generated by tblgen.
Jim Laskey581a8f72005-10-26 17:30:34 +000085 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
Chris Lattner57fc62c2006-12-11 23:22:45 +000086
87 /// SetJITMode - This is called to inform the subtarget info that we are
88 /// producing code for the JIT.
89 void SetJITMode();
Nate Begeman8c00f8c2005-08-04 07:12:09 +000090
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.
Chris Lattner3c304a32005-08-05 22:05:03 +000094 unsigned getStackAlignment() const { return StackAlignment; }
Jim Laskey6cee6302005-11-01 20:06:59 +000095
Jim Laskeyc35010d2006-12-12 20:57:08 +000096 /// getDarwinDirective - Returns the -m directive specified for the cpu.
97 ///
98 unsigned getDarwinDirective() const { return DarwinDirective; }
99
Jim Laskey6cee6302005-11-01 20:06:59 +0000100 /// getInstrItins - Return the instruction itineraies based on subtarget
101 /// selection.
Chris Lattner442b9a62006-12-11 21:42:55 +0000102 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000103
104 /// getTargetDataString - Return the pointer size and type alignment
105 /// properties of this subtarget.
Chris Lattner94de9a82006-06-16 01:37:27 +0000106 const char *getTargetDataString() const {
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000107 return isPPC64() ? "E-p:64:64-f64:32:64-i64:32:64"
108 : "E-p:32:32-f64:32:64-i64:32:64";
Chris Lattner94de9a82006-06-16 01:37:27 +0000109 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000110
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000111 /// 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
Chris Lattner57fc62c2006-12-11 23:22:45 +0000124 /// 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;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000128
129 // Specific obvious features.
Chris Lattner1e9de3e2005-09-02 18:33:05 +0000130 bool hasFSQRT() const { return HasFSQRT; }
Chris Lattnerbf751e22006-02-28 07:08:22 +0000131 bool hasSTFIWX() const { return HasSTFIWX; }
Jim Laskey581a8f72005-10-26 17:30:34 +0000132 bool hasAltivec() const { return HasAltivec; }
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000133 bool isGigaProcessor() const { return IsGigaProcessor; }
Bill Wendlingcb900992007-01-16 09:29:17 +0000134
Chris Lattner3c304a32005-08-05 22:05:03 +0000135 bool isDarwin() const { return IsDarwin; }
Bill Wendlingcb900992007-01-16 09:29:17 +0000136
137 unsigned getAsmFlavor() const {
138 return AsmFlavor != Unset ? unsigned(AsmFlavor) : 0;
139 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000140};
141} // End llvm namespace
142
143#endif