blob: c6bb315b845155890b7483983fe04d2d0c293902 [file] [log] [blame]
#ifndef _SLANG_COMPILER_RS_EXPORT_TYPE_H
#define _SLANG_COMPILER_RS_EXPORT_TYPE_H
#include <set>
#include <list>
#include <string>
#include "llvm/Support/ManagedStatic.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "clang/AST/Type.h"
#include "clang/AST/Decl.h"
#include "slang_rs_exportable.h"
#define GET_CANONICAL_TYPE(T) \
(((T) == NULL) ? NULL : (T)->getCanonicalTypeInternal().getTypePtr())
#define UNSAFE_CAST_TYPE(TT, T) \
static_cast<TT*>(T->getCanonicalTypeInternal().getTypePtr())
#define GET_EXT_VECTOR_ELEMENT_TYPE(T) \
(((T) == NULL) ? NULL : \
GET_CANONICAL_TYPE((T)->getElementType().getTypePtr()))
#define GET_POINTEE_TYPE(T) \
(((T) == NULL) ? NULL : \
GET_CANONICAL_TYPE((T)->getPointeeType().getTypePtr()))
#define GET_CONSTANT_ARRAY_ELEMENT_TYPE(T) \
(((T) == NULL) ? NULL : \
GET_CANONICAL_TYPE((T)->getElementType().getTypePtr()))
#define DUMMY_RS_TYPE_NAME_PREFIX "<"
#define DUMMY_RS_TYPE_NAME_POSTFIX ">"
#define DUMMY_TYPE_NAME_FOR_RS_CONSTANT_ARRAY_TYPE \
DUMMY_RS_TYPE_NAME_PREFIX"ConstantArray"DUMMY_RS_TYPE_NAME_POSTFIX
namespace llvm {
class Type;
} // namespace llvm
namespace slang {
class RSContext;
class RSExportType : public RSExportable {
friend class RSExportElement;
public:
typedef enum {
ExportClassPrimitive,
ExportClassPointer,
ExportClassVector,
ExportClassMatrix,
ExportClassConstantArray,
ExportClassRecord
} ExportClass;
private:
RSContext *mContext;
ExportClass mClass;
std::string mName;
// Cache the result after calling convertToLLVMType() at the first time
mutable const llvm::Type *mLLVMType;
protected:
RSExportType(RSContext *Context,
ExportClass Class,
const llvm::StringRef &Name);
// Let's make it private since there're some prerequisites to call this
// function.
//
// @T was normalized by calling RSExportType::TypeExportable().
// @TypeName was retrieve from RSExportType::GetTypeName() before calling
// this.
//
static RSExportType *Create(RSContext *Context,
const clang::Type *T,
const llvm::StringRef &TypeName);
static llvm::StringRef GetTypeName(const clang::Type *T);
// Return the type that can be used to create RSExportType, will always return
// the canonical type
static const clang::Type
*TypeExportable(const clang::Type *T,
// Contain the checked type for recursion
llvm::SmallPtrSet<const clang::Type*, 8> &SPS);
// This function convert the RSExportType to LLVM type. Actually, it should be
// "convert Clang type to LLVM type." However, clang doesn't make this API
// (lib/CodeGen/CodeGenTypes.h) public, we need to do by ourselves.
//
// Once we can get LLVM type, we can use LLVM to get alignment information,
// allocation size of a given type and structure layout that LLVM used
// (all of these information are target dependent) without dealing with these
// by ourselves.
virtual const llvm::Type *convertToLLVMType() const = 0;
virtual ~RSExportType() {}
public:
static bool NormalizeType(const clang::Type *&T, llvm::StringRef &TypeName);
// @T may not be normalized
static RSExportType *Create(RSContext *Context, const clang::Type *T);
static RSExportType *CreateFromDecl(RSContext *Context,
const clang::VarDecl *VD);
static const clang::Type *GetTypeOfDecl(const clang::DeclaratorDecl *DD);
inline ExportClass getClass() const { return mClass; }
inline const llvm::Type *getLLVMType() const {
if (mLLVMType == NULL)
mLLVMType = convertToLLVMType();
return mLLVMType;
}
// Return the number of bits necessary to hold the specified RSExportType
static size_t GetTypeStoreSize(const RSExportType *ET);
// The size of allocation of specified RSExportType (alignment considered)
static size_t GetTypeAllocSize(const RSExportType *ET);
static unsigned char GetTypeAlignment(const RSExportType *ET);
const std::string &getName() const { return mName; }
inline RSContext *getRSContext() const { return mContext; }
}; // RSExportType
// Primitive types
class RSExportPrimitiveType : public RSExportType {
friend class RSExportType;
friend class RSExportElement;
public:
// From graphics/java/android/renderscript/Element.java: Element.DataType
typedef enum {
DataTypeUnknown = -1,
DataTypeFloat16 = 0,
DataTypeFloat32,
DataTypeFloat64,
DataTypeSigned8,
DataTypeSigned16,
DataTypeSigned32,
DataTypeSigned64,
DataTypeUnsigned8,
DataTypeUnsigned16,
DataTypeUnsigned32,
DataTypeUnSigned64,
DataTypeBoolean,
DataTypeUnsigned565,
DataTypeUnsigned5551,
DataTypeUnsigned4444,
// Actually, there's no any instance of RSExportPrimitiveType which mType
// is of the value DataTypeRSMatrix*. DataTypeRSMatrix* enumeration here is
// only for RSExportPrimitiveType::GetRSObjectType to *recognize* the struct
// rs_matrix{2x2, 3x3, 4x4}. These matrix type are represented as
// RSExportMatrixType.
DataTypeRSMatrix2x2,
DataTypeRSMatrix3x3,
DataTypeRSMatrix4x4,
DataTypeRSElement,
DataTypeRSType,
DataTypeRSAllocation,
DataTypeRSSampler,
DataTypeRSScript,
DataTypeRSMesh,
DataTypeRSProgramFragment,
DataTypeRSProgramVertex,
DataTypeRSProgramRaster,
DataTypeRSProgramStore,
DataTypeRSFont,
DataTypeMax
} DataType;
// From graphics/java/android/renderscript/Element.java: Element.DataKind
typedef enum {
DataKindUser,
DataKindPixelL,
DataKindPixelA,
DataKindPixelLA,
DataKindPixelRGB,
DataKindPixelRGBA
} DataKind;
private:
DataType mType;
DataKind mKind;
bool mNormalized;
typedef llvm::StringMap<DataType> RSObjectTypeMapTy;
static llvm::ManagedStatic<RSObjectTypeMapTy> RSObjectTypeMap;
static llvm::Type *RSObjectLLVMType;
static const size_t SizeOfDataTypeInBits[];
// @T was normalized by calling RSExportType::TypeExportable() before calling
// this.
// @TypeName was retrieved from RSExportType::GetTypeName() before calling
// this
static RSExportPrimitiveType *Create(RSContext *Context,
const clang::Type *T,
const llvm::StringRef &TypeName,
DataKind DK = DataKindUser,
bool Normalized = false);
protected:
// T is normalized by calling RSExportType::TypeExportable() before
// calling this
static bool IsPrimitiveType(const clang::Type *T);
static DataType GetDataType(const clang::Type *T);
RSExportPrimitiveType(RSContext *Context,
// for derived class to set their type class
ExportClass Class,
const llvm::StringRef &Name,
DataType DT,
DataKind DK,
bool Normalized)
: RSExportType(Context, Class, Name),
mType(DT),
mKind(DK),
mNormalized(Normalized) {
return;
}
virtual const llvm::Type *convertToLLVMType() const;
public:
// @T may not be normalized
static RSExportPrimitiveType *Create(RSContext *Context,
const clang::Type *T,
DataKind DK = DataKindUser);
static DataType GetRSObjectType(const llvm::StringRef &TypeName);
static DataType GetRSObjectType(const clang::Type *T);
static size_t GetSizeInBits(const RSExportPrimitiveType *EPT);
inline DataType getType() const { return mType; }
inline DataKind getKind() const { return mKind; }
inline bool isRSObjectType() const {
return ((mType >= DataTypeRSElement) && (mType < DataTypeMax));
}
}; // RSExportPrimitiveType
class RSExportPointerType : public RSExportType {
friend class RSExportType;
friend class RSExportFunc;
private:
const RSExportType *mPointeeType;
RSExportPointerType(RSContext *Context,
const llvm::StringRef &Name,
const RSExportType *PointeeType)
: RSExportType(Context, ExportClassPointer, Name),
mPointeeType(PointeeType) {
return;
}
// @PT was normalized by calling RSExportType::TypeExportable() before calling
// this.
static RSExportPointerType *Create(RSContext *Context,
const clang::PointerType *PT,
const llvm::StringRef &TypeName);
virtual const llvm::Type *convertToLLVMType() const;
public:
static const clang::Type *IntegerType;
inline const RSExportType *getPointeeType() const { return mPointeeType; }
}; // RSExportPointerType
class RSExportVectorType : public RSExportPrimitiveType {
friend class RSExportType;
friend class RSExportElement;
private:
unsigned mNumElement; // number of element
RSExportVectorType(RSContext *Context,
const llvm::StringRef &Name,
DataType DT,
DataKind DK,
bool Normalized,
unsigned NumElement)
: RSExportPrimitiveType(Context, ExportClassVector, Name,
DT, DK, Normalized),
mNumElement(NumElement) {
return;
}
// @EVT was normalized by calling RSExportType::TypeExportable() before
// calling this.
static RSExportVectorType *Create(RSContext *Context,
const clang::ExtVectorType *EVT,
const llvm::StringRef &TypeName,
DataKind DK = DataKindUser,
bool Normalized = false);
static const char *VectorTypeNameStore[][3];
virtual const llvm::Type *convertToLLVMType() const;
public:
static llvm::StringRef GetTypeName(const clang::ExtVectorType *EVT);
inline unsigned getNumElement() const { return mNumElement; }
};
// Only *square* *float* matrix is supported by now.
//
// struct rs_matrix{2x2,3x3,4x4, ..., NxN} should be defined as the following
// form *exactly*:
// typedef struct {
// float m[{NxN}];
// } rs_matrixNxN;
//
// where mDim will be N.
class RSExportMatrixType : public RSExportType {
friend class RSExportType;
private:
unsigned mDim; // dimension
RSExportMatrixType(RSContext *Context,
const llvm::StringRef &Name,
unsigned Dim)
: RSExportType(Context, ExportClassMatrix, Name),
mDim(Dim) {
return;
}
virtual const llvm::Type *convertToLLVMType() const;
public:
// @RT was normalized by calling RSExportType::TypeExportable() before
// calling this.
static RSExportMatrixType *Create(RSContext *Context,
const clang::RecordType *RT,
const llvm::StringRef &TypeName,
unsigned Dim);
inline unsigned getDim() const { return mDim; }
};
class RSExportConstantArrayType : public RSExportType {
friend class RSExportType;
private:
const RSExportType *mElementType; // Array element type
unsigned mSize; // Array size
RSExportConstantArrayType(RSContext *Context,
const RSExportType *ElementType,
unsigned Size)
: RSExportType(Context,
ExportClassConstantArray,
DUMMY_TYPE_NAME_FOR_RS_CONSTANT_ARRAY_TYPE),
mElementType(ElementType),
mSize(Size) {
return;
}
// @CAT was normalized by calling RSExportType::TypeExportable() before
// calling this.
static RSExportConstantArrayType *Create(RSContext *Context,
const clang::ConstantArrayType *CAT);
virtual const llvm::Type *convertToLLVMType() const;
public:
inline unsigned getSize() const { return mSize; }
inline const RSExportType *getElementType() const { return mElementType; }
};
class RSExportRecordType : public RSExportType {
friend class RSExportType;
public:
class Field {
private:
const RSExportType *mType;
// Field name
std::string mName;
// Link to the struct that contain this field
const RSExportRecordType *mParent;
// Offset in the container
size_t mOffset;
public:
Field(const RSExportType *T,
const llvm::StringRef &Name,
const RSExportRecordType *Parent,
size_t Offset)
: mType(T),
mName(Name.data(), Name.size()),
mParent(Parent),
mOffset(Offset) {
return;
}
inline const RSExportRecordType *getParent() const { return mParent; }
inline const RSExportType *getType() const { return mType; }
inline const std::string &getName() const { return mName; }
inline size_t getOffsetInParent() const { return mOffset; }
};
typedef std::list<const Field*>::const_iterator const_field_iterator;
inline const_field_iterator fields_begin() const {
return this->mFields.begin();
}
inline const_field_iterator fields_end() const {
return this->mFields.end();
}
private:
std::list<const Field*> mFields;
bool mIsPacked;
// Artificial export struct type is not exported by user (and thus it won't
// get reflected)
bool mIsArtificial;
size_t mAllocSize;
RSExportRecordType(RSContext *Context,
const llvm::StringRef &Name,
bool IsPacked,
bool IsArtificial,
size_t AllocSize)
: RSExportType(Context, ExportClassRecord, Name),
mIsPacked(IsPacked),
mIsArtificial(IsArtificial),
mAllocSize(AllocSize) {
return;
}
// @RT was normalized by calling RSExportType::TypeExportable() before calling
// this.
// @TypeName was retrieved from RSExportType::GetTypeName() before calling
// this.
static RSExportRecordType *Create(RSContext *Context,
const clang::RecordType *RT,
const llvm::StringRef &TypeName,
bool mIsArtificial = false);
virtual const llvm::Type *convertToLLVMType() const;
public:
inline const std::list<const Field*>& getFields() const { return mFields; }
inline bool isPacked() const { return mIsPacked; }
inline bool isArtificial() const { return mIsArtificial; }
inline size_t getAllocSize() const { return mAllocSize; }
~RSExportRecordType() {
for (std::list<const Field*>::iterator I = mFields.begin(),
E = mFields.end();
I != E;
I++)
if (*I != NULL)
delete *I;
return;
}
}; // RSExportRecordType
} // namespace slang
#endif // _SLANG_COMPILER_RS_EXPORT_TYPE_H