X-Git-Url: https://pd.if.org/git/?p=lice;a=blobdiff_plain;f=arch_dummy.h;fp=arch_dummy.h;h=3cb6935f520905bdafda9cd16d4942abbb311f57;hp=0000000000000000000000000000000000000000;hb=aaf71be0a6e44d207803dedebbc646bf25b6c152;hpb=a9511e8a95a13585126c4a26a827463801e67d04 diff --git a/arch_dummy.h b/arch_dummy.h new file mode 100644 index 0000000..3cb6935 --- /dev/null +++ b/arch_dummy.h @@ -0,0 +1,41 @@ +#ifndef LICE_ARCH_DUMMY_HDR +/* + * File: arch_dummy.h + * Stubded dummy architecture useful as a template for retargeting + * LICE. + */ + +/* + * Constants: Native type sizes + * + * The following are macros which describe the sizes of various native + * data types, they should reflect their true sizes on the given + * architecture unless mentioned otherwise by a specific ABI. + * + * ARCH_TYPE_SIZE_CHAR - Size of a char + * ARCH_TYPE_SIZE_LONG - Size of a long + * ARCH_TYPE_SIZE_LLONG - Size of a long long + * ARCH_TYPE_SIZE_INT - Size of a int + * ARCH_TYPE_SIZE_SHORT - Size of a short + * ARCH_TYPE_SIZE_FLOAT - Size of a float + * ARCH_TYPE_SIZE_DOUBLE - Size of a double + * ARCH_TYPE_SIZE_LDOUBLE - Size of a long double + * ARCH_TYPE_SIZE_POINTER - Size of a pointer + */ +#define ARCH_TYPE_SIZE_CHAR -1 +#define ARCH_TYPE_SIZE_LONG -1 +#define ARCH_TYPE_SIZE_LLONG -1 +#define ARCH_TYPE_SIZE_INT -1 +#define ARCH_TYPE_SIZE_SHORT -1 +#define ARCH_TYPE_SIZE_FLOAT -1 +#define ARCH_TYPE_SIZE_DOUBLE -1 +#define ARCH_TYPE_SIZE_LDOUBLE -1 +#define ARCH_TYPE_SIZE_POINTER -1 + +/* + * Macro: ARCH_ALIGNMENT + * The default alignment of structure elements (padding) for the given + * architecture / ABI + */ +#define ARCH_ALIGNMENT -1 +#endif