blob: 84e5e296121423fd65c919590d40b0a193bba59b [file] [log] [blame]
Nate Begeman8c00f8c2005-08-04 07:12:09 +00001//=====---- X86Subtarget.h - Define Subtarget for the X86 -----*- C++ -*--====//
Nate Begemanfb5792f2005-07-12 01:41:54 +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//
10// This file declares the X86 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef X86SUBTARGET_H
15#define X86SUBTARGET_H
16
17#include "llvm/Target/TargetSubtarget.h"
18
Jim Laskeyb1e11802005-09-01 21:38:21 +000019#include <string>
20
Nate Begemanfb5792f2005-07-12 01:41:54 +000021namespace llvm {
22class Module;
23
24class X86Subtarget : public TargetSubtarget {
Jim Laskey05a059d2006-09-07 12:23:47 +000025public:
26 enum AsmWriterFlavorTy {
27 att, intel
28 };
29
Nate Begemanfb5792f2005-07-12 01:41:54 +000030protected:
Evan Cheng559806f2006-01-27 08:10:46 +000031 enum X86SSEEnum {
Chris Lattner259e97c2006-01-31 19:43:35 +000032 NoMMXSSE, MMX, SSE1, SSE2, SSE3
Evan Cheng559806f2006-01-27 08:10:46 +000033 };
34
35 enum X863DNowEnum {
36 NoThreeDNow, ThreeDNow, ThreeDNowA
37 };
38
Jim Laskey05a059d2006-09-07 12:23:47 +000039 /// AsmFlavor - Which x86 asm dialect to use.
40 AsmWriterFlavorTy AsmFlavor;
41
Chris Lattner259e97c2006-01-31 19:43:35 +000042 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, or none supported.
Evan Cheng559806f2006-01-27 08:10:46 +000043 X86SSEEnum X86SSELevel;
44
45 /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
46 X863DNowEnum X863DNowLevel;
Jim Laskey05a059d2006-09-07 12:23:47 +000047
Evan Cheng559806f2006-01-27 08:10:46 +000048 /// Is64Bit - True if the processor supports Em64T.
49 bool Is64Bit;
50
Chris Lattnerb151aca2005-07-12 02:36:10 +000051 /// stackAlignment - The minimum alignment known to hold of the stack frame on
52 /// entry to the function and which must be maintained by every function.
Nate Begemanfb5792f2005-07-12 01:41:54 +000053 unsigned stackAlignment;
Jeff Cohen9eb59ec2005-07-27 05:53:44 +000054
Evan Cheng18a84522006-02-16 00:21:07 +000055 /// Min. memset / memcpy size that is turned into rep/movs, rep/stos ops.
56 unsigned MinRepStrSizeThreshold;
57
Nate Begemanfb5792f2005-07-12 01:41:54 +000058public:
Chris Lattnere5600e52005-11-21 22:31:58 +000059 enum {
60 isELF, isCygwin, isDarwin, isWindows
61 } TargetType;
62
Jeff Cohen9eb59ec2005-07-27 05:53:44 +000063 /// This constructor initializes the data members to match that
Nate Begemanfb5792f2005-07-12 01:41:54 +000064 /// of the specified module.
65 ///
Jim Laskeyb1e11802005-09-01 21:38:21 +000066 X86Subtarget(const Module &M, const std::string &FS);
Chris Lattnerb151aca2005-07-12 02:36:10 +000067
68 /// getStackAlignment - Returns the minimum alignment known to hold of the
69 /// stack frame on entry to the function and which must be maintained by every
70 /// function for this subtarget.
Nate Begemanfb5792f2005-07-12 01:41:54 +000071 unsigned getStackAlignment() const { return stackAlignment; }
Jeff Cohen9eb59ec2005-07-27 05:53:44 +000072
Evan Cheng18a84522006-02-16 00:21:07 +000073 /// getMinRepStrSizeThreshold - Returns the minimum memset / memcpy size
74 /// required to turn the operation into a X86 rep/movs or rep/stos
75 /// instruction. This is only used if the src / dst alignment is not DWORD
76 /// aligned.
77 unsigned getMinRepStrSizeThreshold() const { return MinRepStrSizeThreshold; }
78
Evan Cheng97c7fc32006-01-26 09:53:06 +000079 /// ParseSubtargetFeatures - Parses features string setting specified
80 /// subtarget options. Definition of function is auto generated by tblgen.
81 void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
82
83 bool is64Bit() const { return Is64Bit; }
84
Evan Cheng559806f2006-01-27 08:10:46 +000085 bool hasMMX() const { return X86SSELevel >= MMX; }
Chris Lattner259e97c2006-01-31 19:43:35 +000086 bool hasSSE1() const { return X86SSELevel >= SSE1; }
Evan Cheng559806f2006-01-27 08:10:46 +000087 bool hasSSE2() const { return X86SSELevel >= SSE2; }
88 bool hasSSE3() const { return X86SSELevel >= SSE3; }
89 bool has3DNow() const { return X863DNowLevel >= ThreeDNow; }
90 bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
Jim Laskey05a059d2006-09-07 12:23:47 +000091
92 bool isFlavorAtt() const { return AsmFlavor == att; }
93 bool isFlavorIntel() const { return AsmFlavor == intel; }
Evan Cheng7ccced62006-02-18 00:15:05 +000094
95 bool isTargetDarwin() const { return TargetType == isDarwin; }
Chris Lattnerdd842e12006-09-04 04:08:58 +000096 bool isTargetELF() const { return TargetType == isELF; }
Nate Begemanfb5792f2005-07-12 01:41:54 +000097};
98} // End llvm namespace
99
100#endif