00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #ifndef CFRONT_NAME_DESCRIPTION_HPP
00035 #define CFRONT_NAME_DESCRIPTION_HPP
00036
00037 #include "Type.hpp"
00038 #include "Extension.hpp"
00039 #include <list>
00040
00041 namespace cfront {
00042
00047 class NameDescription {
00048 public:
00049
00053 enum DeclarationLocation {
00054 NONE,
00055 TOPLEVEL,
00056 PARAMETER,
00057 BLOCK,
00058 FIELD,
00059 ENUM
00060 };
00061
00065 enum StorageClassSpecTag {
00066 SS_NONE,
00067 DEFAULT,
00068 AUTO,
00069 REGISTER,
00070 EXTERN,
00071 STATIC,
00072 TYPEDEF
00073 };
00074
00075 typedef std::list<Extension*> Extensions;
00076
00077 NameDescription() : type_(NULL), storageClassSpec_(SS_NONE),
00078 location_(NONE), constantValue_(ConstantUnspecified)
00079 {
00080 }
00081
00082 NameDescription(Type* t, StorageClassSpecTag ss, DeclarationLocation l)
00083 : type_(t), storageClassSpec_(ss), location_(l),
00084 constantValue_(ConstantUnspecified)
00085 {
00086 }
00087
00088 NameDescription(const NameDescription& other)
00089 : type_(other.type_), storageClassSpec_(other.storageClassSpec_),
00090 location_(other.location_), constantValue_(ConstantUnspecified)
00091 {
00092 }
00093
00094 ~NameDescription()
00095 {
00096 for (Extensions::iterator i = extensions_.begin();
00097 i != extensions_.end(); ++i) {
00098 delete *i;
00099 }
00100 }
00101
00102 Type* getType() const
00103 {
00104 return type_;
00105 }
00106
00107 StorageClassSpecTag getStorageClassSpec() const
00108 {
00109 return storageClassSpec_;
00110 }
00111
00112 DeclarationLocation getLocation() const
00113 {
00114 return location_;
00115 }
00116
00122 ConstantValue getConstantValue() const
00123 {
00124 return constantValue_;
00125 }
00126
00127 const Extensions& getExtensions() const
00128 {
00129 return extensions_;
00130 }
00131
00132 void setType(Type* t)
00133 {
00134 type_ = t;
00135 }
00136
00142 void setConstantValue(const ConstantValue& v)
00143 {
00144 constantValue_ = v;
00145 }
00146
00147 void addExtension(Extension* e)
00148 {
00149 extensions_.push_back(e);
00150 }
00151
00152 private:
00153 Type* type_;
00154 StorageClassSpecTag storageClassSpec_;
00155 DeclarationLocation location_;
00156 ConstantValue constantValue_;
00157 Extensions extensions_;
00158 };
00159
00160
00161 }
00162
00163
00164 #endif
00165
00166
00167
00168
00169
00170
00171
00172