add a new value for the command line optn
[oota-llvm.git] / lib / Target / X86 / X86Subtarget.h
1 //=====---- X86Subtarget.h - Define Subtarget for the X86 -----*- C++ -*--====//
2 //
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
19 #include <string>
20
21 namespace llvm {
22 class Module;
23
24 class X86Subtarget : public TargetSubtarget {
25 public:
26   enum AsmWriterFlavorTy {
27     att, intel, unset
28   };
29
30 protected:
31   enum X86SSEEnum {
32     NoMMXSSE, MMX, SSE1, SSE2, SSE3
33   };
34
35   enum X863DNowEnum {
36     NoThreeDNow, ThreeDNow, ThreeDNowA
37   };
38
39   /// AsmFlavor - Which x86 asm dialect to use.
40   AsmWriterFlavorTy AsmFlavor;
41
42   /// X86SSELevel - MMX, SSE1, SSE2, SSE3, or none supported.
43   X86SSEEnum X86SSELevel;
44
45   /// X863DNowLevel - 3DNow or 3DNow Athlon, or none supported.
46   X863DNowEnum X863DNowLevel;
47   
48   /// Is64Bit - True if the processor supports Em64T.
49   bool Is64Bit;
50
51   /// 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.
53   unsigned stackAlignment;
54
55   /// Min. memset / memcpy size that is turned into rep/movs, rep/stos ops.
56   unsigned MinRepStrSizeThreshold;
57
58 public:
59   enum {
60     isELF, isCygwin, isDarwin, isWindows
61   } TargetType;
62     
63   /// This constructor initializes the data members to match that
64   /// of the specified module.
65   ///
66   X86Subtarget(const Module &M, const std::string &FS);
67
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.
71   unsigned getStackAlignment() const { return stackAlignment; }
72
73   /// 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  
79   /// 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
85   bool hasMMX() const { return X86SSELevel >= MMX; }
86   bool hasSSE1() const { return X86SSELevel >= SSE1; }
87   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; }
91   
92   bool isFlavorAtt() const { return AsmFlavor == att; }
93   bool isFlavorIntel() const { return AsmFlavor == intel; }
94
95   bool isTargetDarwin() const { return TargetType == isDarwin; }
96   bool isTargetELF() const { return TargetType == isELF; }
97 };
98 } // End llvm namespace
99
100 #endif