Size = Layout.getSize();
Align = Layout.getAlignment();
} else if (EnumDecl *ED = dyn_cast<EnumDecl>(TT->getDecl())) {
- return getTypeInfo(getEnumDeclIntegerType(ED), L);
+ return getTypeInfo(ED->getIntegerType(), L);
} else {
assert(0 && "Unimplemented type sizes!");
}
return *NewEntry;
}
-/// getEnumDeclIntegerType - returns the integer type compatible with the
-/// given enum type.
-QualType ASTContext::getEnumDeclIntegerType(const EnumDecl *ED) const {
- if (const EnumConstantDecl *C = ED->getEnumConstantList())
- return C->getType();
-
- // If the enum list is empty, it is typed as if it contained a single zero
- // element [C++ dcl.enum] and is illegal in C (as an extension, we treat it
- // the same as C++ does).
- switch (Target.getEnumTypePolicy(ED->getLocation())) {
- default: assert(0 && "Unknown enum layout policy");
- case TargetInfo::AlwaysInt: return UnsignedIntTy; // 0 -> unsigned
- case TargetInfo::ShortestType: return UnsignedCharTy; // 0 -> unsigned char
- }
-}
-
-
//===----------------------------------------------------------------------===//
// Type creation/memoization methods
//===----------------------------------------------------------------------===//
if (!TD->isDefinition()) {
ResultType = llvm::OpaqueType::get();
} else if (TD->getKind() == Decl::Enum) {
- return ConvertType(Context.getEnumDeclIntegerType(cast<EnumDecl>(TD)));
+ return ConvertType(cast<EnumDecl>(TD)->getIntegerType());
} else if (TD->getKind() == Decl::Struct) {
const RecordDecl *RD = cast<const RecordDecl>(TD);
std::vector<const llvm::Type*> Fields;
// FIXME: Install type in Enum and constant values.
- Enum->defineElements(EltList);
+ Enum->defineElements(EltList, BestType);
}
void Sema::AddTopLevelDecl(Decl *current, Decl *last) {
/// position information.
const RecordLayout &getRecordLayout(const RecordDecl *D, SourceLocation L);
- /// getEnumDeclIntegerType - returns the integer type compatible with the
- /// given enum type.
- QualType getEnumDeclIntegerType(const EnumDecl *ED) const;
-
//===--------------------------------------------------------------------===//
// Type Operators
//===--------------------------------------------------------------------===//
/// ElementList - this is a linked list of EnumConstantDecl's which are linked
/// together through their getNextDeclarator pointers.
EnumConstantDecl *ElementList;
+
+ /// IntegerType - This represent the integer type that the enum corresponds
+ /// to for code generation purposes. Note that the enumerator constants may
+ /// have a different type than this does.
+ QualType IntegerType;
public:
EnumDecl(SourceLocation L, IdentifierInfo *Id, Decl *PrevDecl)
: TagDecl(Enum, L, Id, PrevDecl) {
/// defineElements - When created, EnumDecl correspond to a forward declared
/// enum. This method is used to mark the decl as being defined, with the
/// specified list of enums.
- void defineElements(EnumConstantDecl *ListHead) {
+ void defineElements(EnumConstantDecl *ListHead, QualType NewType) {
assert(!isDefinition() && "Cannot redefine enums!");
ElementList = ListHead;
setDefinition(true);
+
+ IntegerType = NewType;
}
+ /// getIntegerType - Return the integer type this enum decl corresponds to.
+ /// This returns a null qualtype for an enum forward definition.
+ QualType getIntegerType() const { return IntegerType; }
+
/// getEnumConstantList - Return the first EnumConstantDecl in the enum.
///
EnumConstantDecl *getEnumConstantList() { return ElementList; }
Align = WCharAlign;
}
- /// EnumTypePolicy - This enum value contains a list of the various policies
- /// that a target can have about how enums are converted to integer types.
- enum EnumTypePolicy {
- AlwaysInt, // 'int' or 'unsigned'
- ShortestType // -fshort-enums
- };
-
- /// getEnumTypePolicy - get the target's policy for what type an enum should
- /// be compatible with.
- EnumTypePolicy getEnumTypePolicy(SourceLocation Loc) {
- // FIXME: implement correctly
- return AlwaysInt;
- }
-
/// getIntMaxTWidth - Return the size of intmax_t and uintmax_t for this
/// target, in bits.
unsigned getIntMaxTWidth(SourceLocation Loc) {