X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fport.h;h=507f70f4711bbdd0bcde77b10462594f72d06e32;hb=ca610cc8cc98a2ad949f99105cc5ac5d9012c573;hp=f8e733a8f3b159f7eff763c2be8e9ea556f1126e;hpb=6c77c28adbb97b75ebebec4326d18deb23e0c070;p=fw%2Fsdcc diff --git a/src/port.h b/src/port.h index f8e733a8..507f70f4 100644 --- a/src/port.h +++ b/src/port.h @@ -5,6 +5,8 @@ #ifndef PORT_INCLUDE #define PORT_INCLUDE +#include "SDCCicode.h" + #define TARGET_ID_MCS51 1 #define TARGET_ID_GBZ80 2 #define TARGET_ID_Z80 3 @@ -27,6 +29,16 @@ #define TARGET_IS_I186 (port->id==TARGET_ID_I186) #define TARGET_IS_TCLS900H (port->id==TARGET_ID_TCLS900H) +#define MAX_BUILTIN_ARGS 16 +/* definition of builtin functions */ +typedef struct builtins +{ + char *name ; /* name of builtin function */ + char *rtype; /* return type as string : see typefromStr */ + int nParms; /* number of parms : max 8 */ + char *parm_types[MAX_BUILTIN_ARGS]; /* each parm type as string : see typeFromStr */ +} builtins ; + /* Processor specific names */ typedef struct { @@ -55,11 +67,13 @@ typedef struct /* assembler related information */ struct { -/** Command to run and arguments (eg as-z80) */ - const char **cmd; -/** Arguments for debug mode. PENDING: ignored */ + /** Command to run and arguments (eg as-z80) */ + const char **cmd; + /** Alternate macro based form. */ + const char *mcmd; + /** Arguments for debug mode. */ const char *debug_opts; -/** Arguments for normal assembly mode. PENDING: ignored */ + /** Arguments for normal assembly mode. */ const char *plain_opts; /* print externs as global */ int externGlobal; @@ -71,11 +85,13 @@ typedef struct /* linker related info */ struct { -/** Command to run (eg link-z80) */ + /** Command to run (eg link-z80) */ const char **cmd; -/** If non-null will be used to execute the link. */ + /** Alternate macro based form. */ + const char *mcmd; + /** If non-null will be used to execute the link. */ void (*do_link) (void); -/** Extention for object files (.rel, .obj, ...) */ + /** Extention for object files (.rel, .obj, ...) */ const char *rel_ext; } linker; @@ -118,8 +134,10 @@ typedef struct const char *overlay_name; const char *post_static_name; const char *home_name; - struct memmap *default_local_map; /* default location for auto vars */ - struct memmap *default_globl_map; /* default location for globl vars */ + const char *xidata_name; // initialized xdata + const char *xinit_name; // a code copy of xidata + struct memmap *default_local_map; // default location for auto vars + struct memmap *default_globl_map; // default location for globl vars int code_ro; /* code space read-only 1=yes */ } mem; @@ -148,13 +166,10 @@ typedef struct /** One more than the smallest mul/div operation the processor can do nativley Eg if the processor has an 8 bit mul, nativebelow is 2 */ - int native_below; - /** The mul/div/mod functions will be made to use regparams - for sizeof(param) < log2(force_reg) - i.e. Use 2 for WORD and BYTE, 0 for none. */ - int force_reg_param_below; + unsigned muldiv; + unsigned shift; } - muldiv; + support; /** Prefix to add to a C function (eg "_") */ const char *fun_prefix; @@ -191,6 +206,7 @@ typedef struct */ int (*genIVT) (FILE * of, symbol ** intTable, int intCount); + void (*genXINIT) (FILE * of); /* parameter passing in register related functions */ void (*reset_regparms) (); /* reset the register count */ @@ -201,6 +217,15 @@ typedef struct */ int (*process_pragma) (const char *sz); + /** Mangles a support function name to reflect the calling model. + */ + char *(*getMangledFunctionName) (char *szOrginial); + + /** Returns true if the port can multiply the two types nativly + without using support functions. + */ + bool (*hasNativeMulFor) (iCode *ic, sym_link *left, sym_link *right); + /** If TRUE, then tprintf and !dw will be used for some initalisers */ bool use_dw_for_init; @@ -213,6 +238,12 @@ typedef struct bool ne_neq; /* transform a != b --> ! (a == b) */ bool eq_nne; /* transform a == b --> ! (a != b) */ + bool arrayInitializerSuppported; + bool (*cseOk) (iCode *ic, iCode *pdic); + builtins *builtintable; /* table of builtin functions */ + int unqualified_pointer; /* unqualified pointers type is */ + int reset_labelKey ; /* reset Label no 1 at the start of a function */ + int globals_allowed ; /* global & static locals not allowed ? 0 ONLY TININative*/ #define PORT_MAGIC 0xAC32 /** Used at runtime to detect if this structure has been completly filled in. */ int magic; @@ -245,5 +276,8 @@ extern PORT i186_port; #if !OPT_DISABLE_TLCS900H extern PORT tlcs900h_port; #endif +#if !OPT_DISABLE_TININative +extern PORT tininative_port; +#endif -#endif PORT_INCLUDE +#endif /* PORT_INCLUDE*/