Teach new_tarval_from_str_int() to parse binary numbers: 0[bB][01]+.
[libfirm] / ir / be / arm / arm_cconv.h
index 18418b4..60bfb68 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2010 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * @file
  * @brief   support functions for calling conventions
  * @author  Matthias Braun
- * @version $Id$
  */
 #ifndef FIRM_BE_ARM_ARM_CCONV_H
 #define FIRM_BE_ARM_ARM_CCONV_H
 
 #include "firm_types.h"
-#include "../be_types.h"
+#include "be_types.h"
 #include "gen_arm_regalloc_if.h"
 
-static const arch_register_t *const callee_saves[] = {
-       &arm_gp_regs[REG_R4],
-       &arm_gp_regs[REG_R5],
-       &arm_gp_regs[REG_R6],
-       &arm_gp_regs[REG_R7],
-       &arm_gp_regs[REG_R8],
-       &arm_gp_regs[REG_R9],
-       &arm_gp_regs[REG_R10],
-       &arm_gp_regs[REG_R11],
-       &arm_gp_regs[REG_LR],
-};
-
-static const arch_register_t *const caller_saves[] = {
-       &arm_gp_regs[REG_R0],
-       &arm_gp_regs[REG_R1],
-       &arm_gp_regs[REG_R2],
-       &arm_gp_regs[REG_R3],
-       &arm_gp_regs[REG_LR]
-};
-
-static const arch_register_t* const param_regs[] = {
-       &arm_gp_regs[REG_R0],
-       &arm_gp_regs[REG_R1],
-       &arm_gp_regs[REG_R2],
-       &arm_gp_regs[REG_R3]
-};
-
-static const arch_register_t* const result_regs[] = {
-       &arm_gp_regs[REG_R0],
-       &arm_gp_regs[REG_R1],
-       &arm_gp_regs[REG_R2],
-       &arm_gp_regs[REG_R3]
-};
-
 /** information about a single parameter or result */
 typedef struct reg_or_stackslot_t
 {
-       const arch_register_t *reg0;
-       const arch_register_t *reg1;
+       const arch_register_t *reg0;   /**< if != NULL, the first register used for this parameter. */
+       const arch_register_t *reg1;   /**< if != NULL, the second register used. */
        ir_type               *type;   /**< indicates that an entity of the specific
                                                                            type is needed */
-       int                    offset;
+       unsigned               offset; /**< if transmitted via stack, the offset for this parameter. */
        ir_entity             *entity; /**< entity in frame type */
 } reg_or_stackslot_t;
 
+/** The calling convention info for one call site. */
 typedef struct calling_convention_t
 {
-       reg_or_stackslot_t *parameters;
-       int                 param_stack_size;
-       reg_or_stackslot_t *results;
+       reg_or_stackslot_t *parameters;        /**< parameter info. */
+       unsigned            param_stack_size;  /**< needed stack size for parameters */
+       unsigned            n_reg_params;
+       reg_or_stackslot_t *results;           /**< result info. */
 } calling_convention_t;
 
 /**
@@ -87,11 +54,12 @@ typedef struct calling_convention_t
  * Decides what goes to register or to stack and what stack offsets/
  * datatypes are used.
  */
-calling_convention_t *decide_calling_convention(ir_type *function_type);
+calling_convention_t *arm_decide_calling_convention(const ir_graph *irg,
+                                                    ir_type *function_type);
 
 /**
  * free memory used by a calling_convention_t
  */
-void free_calling_convention(calling_convention_t *cconv);
+void arm_free_calling_convention(calling_convention_t *cconv);
 
 #endif