X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Fbe.h;h=2b1760085873570f8c99080e3446978c7582b7b9;hb=fa9c992b5f23e7a059ac91fdd04b409b951ebcc4;hp=56c9dff0653cbcd6f8da32f97704c79be2cb7372;hpb=703ab08b283d8b052f96b1b065359139b504bbeb;p=libfirm diff --git a/include/libfirm/be.h b/include/libfirm/be.h index 56c9dff06..2b1760085 100644 --- a/include/libfirm/be.h +++ b/include/libfirm/be.h @@ -26,11 +26,29 @@ #ifndef FIRM_BE_MAIN_H #define FIRM_BE_MAIN_H +#ifdef __cplusplus +extern "C" { +#endif + #include #include "irarch.h" #include "archop.h" #include "lowering.h" +typedef enum { + ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER = 0x0001, + ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP = 0x0002, + ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE = 0x0004, + ASM_CONSTRAINT_FLAG_NO_SUPPORT = 0x0008, + ASM_CONSTRAINT_FLAG_MODIFIER_WRITE = 0x0010, + ASM_CONSTRAINT_FLAG_MODIFIER_NO_WRITE = 0x0020, + ASM_CONSTRAINT_FLAG_MODIFIER_READ = 0x0040, + ASM_CONSTRAINT_FLAG_MODIFIER_NO_READ = 0x0080, + ASM_CONSTRAINT_FLAG_MODIFIER_EARLYCLOBBER = 0x0100, + ASM_CONSTRAINT_FLAG_MODIFIER_COMMUTATIVE = 0x0200, + ASM_CONSTRAINT_FLAG_INVALID = 0x8000 +} asm_constraint_flags_t; + /** * This structure contains parameters that should be * propagated to the libFirm parameter set. @@ -58,7 +76,8 @@ typedef struct backend_params { /** Backend settings for if-conversion. */ const ir_settings_if_conv_t *if_conv_info; - /** The immediate floating point mode. Temporaries are calculated using this mode. */ + /** The immediate floating point mode. Temporaries are calculated using + * this mode. */ ir_mode *imm_fp_mode; } backend_params; @@ -73,19 +92,34 @@ void be_opt_register(void); int be_parse_arg(const char *arg); /** - * Initialize the Firm backend. Must be run BEFORE init_firm()! + * Return the backend configuration parameter. * * @return libFirm configuration parameters for the selected * backend */ -const backend_params *be_init(void); +const backend_params *be_get_backend_param(void); /** * Main interface to the frontend. */ void be_main(FILE *output, const char *compilation_unit_name); +/** + * parse assembler constraint strings and returns flags (so the frontend knows + * which operands are inputs/outputs and whether memory is required) + */ +asm_constraint_flags_t be_parse_asm_constraints(const char *constraints); + +/** + * tests whether a string is a valid clobber in an ASM instruction + */ +int be_is_valid_clobber(const char *clobber); + typedef struct be_main_env_t be_main_env_t; typedef struct be_options_t be_options_t; +#ifdef __cplusplus +} +#endif + #endif