add a new isStoreToStackSlot method
[oota-llvm.git] / include / llvm / Target / SubtargetFeature.h
1 //===-- llvm/Target/SubtargetFeature.h - CPU characteristics ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Jim Laskey and is distributed under the 
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines and manages user or tool specified CPU characteristics.
11 // The intent is to be able to package specific features that should or should
12 // not be used on a specific target processor.  A tool, such as llc, could, as
13 // as example, gather chip info from the command line, a long with features
14 // that should be used on that chip.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_TARGET_SUBTARGETFEATURE_H
19 #define LLVM_TARGET_SUBTARGETFEATURE_H
20
21 #include <string>
22 #include <vector>
23 #include <iosfwd>
24 #include "llvm/Support/DataTypes.h"
25
26 namespace llvm {
27
28 //===----------------------------------------------------------------------===//
29 ///
30 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
31 /// CPU bit flags.
32 //
33 struct SubtargetFeatureKV {
34   const char *Key;                      // K-V key string
35   const char *Desc;                     // Help descriptor
36   uint32_t Value;                       // K-V integer value
37   
38   // Compare routine for std binary search
39   bool operator<(const SubtargetFeatureKV &S) const {
40     return strcmp(Key, S.Key) < 0;
41   }
42 };
43   
44 //===----------------------------------------------------------------------===//
45 ///
46 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
47 /// pointers.
48 //
49 struct SubtargetInfoKV {
50   const char *Key;                      // K-V key string
51   void *Value;                          // K-V pointer value
52   
53   // Compare routine for std binary search
54   bool operator<(const SubtargetInfoKV &S) const {
55     return strcmp(Key, S.Key) < 0;
56   }
57 };
58   
59 //===----------------------------------------------------------------------===//
60 ///
61 /// SubtargetFeatures - Manages the enabling and disabling of subtarget 
62 /// specific features.  Features are encoded as a string of the form
63 ///   "cpu,+attr1,+attr2,-attr3,...,+attrN"
64 /// A comma separates each feature from the next (all lowercase.)
65 /// The first feature is always the CPU subtype (eg. pentiumm).  If the CPU
66 /// value is "generic" then the CPU subtype should be generic for the target.
67 /// Each of the remaining features is prefixed with + or - indicating whether
68 /// that feature should be enabled or disabled contrary to the cpu
69 /// specification.
70 ///
71
72 class SubtargetFeatures {
73   std::vector<std::string> Features;    // Subtarget features as a vector
74 public:
75   SubtargetFeatures(const std::string &Initial = std::string());
76
77   /// Features string accessors.
78   std::string getString() const;
79   void setString(const std::string &Initial);
80
81   /// Set the CPU string.  Replaces previous setting.  Setting to "" clears CPU.
82   void setCPU(const std::string &String);
83   
84   /// Setting CPU string only if no string is set.
85   void setCPUIfNone(const std::string &String);
86   
87   /// Adding Features.
88   void AddFeature(const std::string &String, bool IsEnabled = true);
89            
90   /// Get feature bits.
91   uint32_t getBits(const SubtargetFeatureKV *CPUTable,
92                          size_t CPUTableSize,
93                    const SubtargetFeatureKV *FeatureTable,
94                          size_t FeatureTableSize);
95                          
96   /// Get info pointer
97   void *getInfo(const SubtargetInfoKV *Table, size_t TableSize);
98   
99   /// Print feature string.
100   void print(std::ostream &OS) const;
101   
102   // Dump feature info.
103   void dump() const;
104 };
105
106 } // End namespace llvm
107
108 #endif