#ifndef LLVMDC_IR_IRSTRUCT_H #define LLVMDC_IR_IRSTRUCT_H #include "ir/ir.h" #include #include struct IrInterface : IrBase { BaseClass* base; ClassDeclaration* decl; const llvm::StructType* vtblTy; llvm::ConstantStruct* vtblInit; llvm::GlobalVariable* vtbl; const llvm::StructType* infoTy; llvm::ConstantStruct* infoInit; llvm::Constant* info; IrInterface(BaseClass* b, const llvm::StructType* vt); ~IrInterface(); }; ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // represents a struct or class struct IrStruct : IrBase { struct Offset { VarDeclaration* var; const llvm::Type* type; llvm::Constant* init; Offset(VarDeclaration* v, const llvm::Type* ty) : var(v), type(ty), init(NULL) {} }; typedef std::multimap OffsetMap; typedef std::vector VarDeclVector; typedef std::map InterfaceMap; typedef InterfaceMap::iterator InterfaceIter; public: IrStruct(Type*); virtual ~IrStruct(); Type* type; llvm::PATypeHolder recty; OffsetMap offsets; VarDeclVector defaultFields; InterfaceMap interfaces; const llvm::ArrayType* interfaceInfosTy; llvm::GlobalVariable* interfaceInfos; bool defined; bool constinited; }; #endif