remove unnecessary comments before functions
[libfirm] / ir / lower / lower_intrinsics.c
index 9051cb3..339b491 100644 (file)
@@ -21,7 +21,6 @@
  * @file
  * @brief   lowering of Calls of intrinsic functions
  * @author  Michael Beck
- * @version $Id$
  */
 #include "config.h"
 
@@ -44,6 +43,7 @@
 #include "iropt_dbg.h"
 #include "error.h"
 #include "be.h"
+#include "util.h"
 
 /** Walker environment. */
 typedef struct walker_env {
@@ -67,10 +67,10 @@ static void call_mapper(ir_node *node, void *env)
                ir_entity *ent;
 
                symconst = get_Call_ptr(node);
-               if (! is_Global(symconst))
+               if (! is_SymConst_addr_ent(symconst))
                        return;
 
-               ent = get_Global_entity(symconst);
+               ent = get_SymConst_entity(symconst);
                p   = pmap_find(wenv->c_map, ent);
 
                if (p) {
@@ -90,9 +90,8 @@ static void call_mapper(ir_node *node, void *env)
                        }
                }
        }
-}  /* call_mapper */
+}
 
-/* Go through all graphs and map calls to intrinsic functions. */
 size_t lower_intrinsics(i_record *list, size_t length, int part_block_used)
 {
        size_t         i, n;
@@ -142,11 +141,8 @@ size_t lower_intrinsics(i_record *list, size_t length, int part_block_used)
                        set_irg_callee_info_state(irg, irg_callee_info_inconsistent);
 
                        /* Exception control flow might have changed / new block might have added. */
-                       set_irg_doms_inconsistent(irg);
-                       set_irg_extblk_inconsistent(irg);
-
-                       /* Calls might be removed/added. */
-                       set_trouts_inconsistent();
+                       clear_irg_state(irg, IR_GRAPH_STATE_CONSISTENT_DOMINANCE
+                                          | IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS);
 
                        /* verify here */
                        irg_verify(irg, VERIFY_NORMAL);
@@ -157,7 +153,7 @@ size_t lower_intrinsics(i_record *list, size_t length, int part_block_used)
        pmap_destroy(c_map);
 
        return nr_of_intrinsics;
-}  /* lower_intrinsics */
+}
 
 typedef struct pass_t {
        ir_prog_pass_t pass;
@@ -198,7 +194,7 @@ ir_prog_pass_t *lower_intrinsics_pass(
 
        return def_prog_pass_constructor(
                &pass->pass, name ? name : "lower_intrinsics", pass_wrapper);
-}  /* lower_intrinsics_pass*/
+}
 
 /**
  * Helper function, replace the call by the given node.
@@ -238,7 +234,6 @@ static void replace_call(ir_node *irn, ir_node *call, ir_node *mem,
        set_Tuple_pred(call, pn_Call_T_result, rest);
 }
 
-/* A mapper for the integer abs. */
 int i_mapper_abs(ir_node *call, void *ctx)
 {
        ir_node  *mem      = get_Call_mem(call);
@@ -263,9 +258,8 @@ int i_mapper_abs(ir_node *call, void *ctx)
        DBG_OPT_ALGSIM0(call, mux, FS_OPT_RTS_ABS);
        replace_call(mux, call, mem, NULL, NULL);
        return 1;
-}  /* i_mapper_abs */
+}
 
-/* A mapper for the integer bswap. */
 int i_mapper_bswap(ir_node *call, void *ctx)
 {
        ir_node *mem   = get_Call_mem(call);
@@ -278,12 +272,11 @@ int i_mapper_bswap(ir_node *call, void *ctx)
 
        irn = new_rd_Builtin(dbg, block, get_irg_no_mem(current_ir_graph), 1, &op, ir_bk_bswap, tp);
        set_irn_pinned(irn, op_pin_state_floats);
-       irn = new_r_Proj(irn, get_irn_mode(op), pn_Builtin_1_result);
+       irn = new_r_Proj(irn, get_irn_mode(op), pn_Builtin_max+1);
        replace_call(irn, call, mem, NULL, NULL);
        return 1;
-}  /* i_mapper_bswap */
+}
 
-/* A mapper for the alloca() function. */
 int i_mapper_alloca(ir_node *call, void *ctx)
 {
        ir_node *mem   = get_Call_mem(call);
@@ -317,9 +310,8 @@ int i_mapper_alloca(ir_node *call, void *ctx)
        DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ALLOCA);
        replace_call(irn, call, mem, no_exc, exc);
        return 1;
-}  /* i_mapper_alloca */
+}
 
-/* A mapper for the floating point sqrt. */
 int i_mapper_sqrt(ir_node *call, void *ctx)
 {
        ir_node   *mem;
@@ -340,9 +332,8 @@ int i_mapper_sqrt(ir_node *call, void *ctx)
        DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_SQRT);
        replace_call(op, call, mem, NULL, NULL);
        return 1;
-}  /* i_mapper_sqrt */
+}
 
-/* A mapper for the floating point cbrt. */
 int i_mapper_cbrt(ir_node *call, void *ctx)
 {
        ir_node   *mem;
@@ -363,9 +354,8 @@ int i_mapper_cbrt(ir_node *call, void *ctx)
        DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_CBRT);
        replace_call(op, call, mem, NULL, NULL);
        return 1;
-}  /* i_mapper_cbrt */
+}
 
-/* A mapper for the floating point pow. */
 int i_mapper_pow(ir_node *call, void *ctx)
 {
        ir_node  *left    = get_Call_param(call, 0);
@@ -420,9 +410,8 @@ int i_mapper_pow(ir_node *call, void *ctx)
        DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_POW);
        replace_call(irn, call, mem, reg_jmp, exc_jmp);
        return 1;
-}  /* i_mapper_pow */
+}
 
-/* A mapper for the floating point exp. */
 int i_mapper_exp(ir_node *call, void *ctx)
 {
        ir_node *val  = get_Call_param(call, 0);
@@ -439,7 +428,7 @@ int i_mapper_exp(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_exp */
+}
 
 /**
  * A mapper for mapping f(0.0) to 0.0.
@@ -457,7 +446,7 @@ static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason)
                return 1;
        }
        return 0;
-}  /* i_mapper_zero_to_zero */
+}
 
 /**
  * A mapper for mapping f(1.0) to 0.0.
@@ -478,7 +467,7 @@ static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason)
                return 1;
        }
        return 0;
-}  /* i_mapper_one_to_zero */
+}
 
 /**
  * A mapper for mapping a functions with the following characteristics:
@@ -528,77 +517,67 @@ static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason)
                changed = 1;
        }
        return changed;
-}  /* i_mapper_symmetric_zero_to_one */
+}
 
-/* A mapper for the floating point log. */
 int i_mapper_log(ir_node *call, void *ctx)
 {
        /* log(1.0) = 0.0 */
        return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
-}  /* i_mapper_log */
+}
 
-/* A mapper for the floating point sin. */
 int i_mapper_sin(ir_node *call, void *ctx)
 {
        /* sin(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
-}  /* i_mapper_sin */
+}
 
-/* A mapper for the floating point cos. */
 int i_mapper_cos(ir_node *call, void *ctx)
 {
        /* cos(0.0) = 1.0, cos(-x) = x */
        return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
-}  /* i_mapper_cos */
+}
 
-/* A mapper for the floating point tan. */
 int i_mapper_tan(ir_node *call, void *ctx)
 {
        /* tan(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
-}  /* i_mapper_tan */
+}
 
-/* A mapper for the floating point asin. */
 int i_mapper_asin(ir_node *call, void *ctx)
 {
        /* asin(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
-}  /* i_mapper_asin */
+}
 
-/* A mapper for the floating point acos. */
 int i_mapper_acos(ir_node *call, void *ctx)
 {
        /* acos(1.0) = 0.0 */
        return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
-}  /* i_mapper_acos */
+}
 
-/* A mapper for the floating point atan. */
 int i_mapper_atan(ir_node *call, void *ctx)
 {
        /* atan(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
-}  /* i_mapper_atan */
+}
 
-/* A mapper for the floating point sinh. */
 int i_mapper_sinh(ir_node *call, void *ctx)
 {
        /* sinh(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
-}  /* i_mapper_sinh */
+}
 
-/* A mapper for the floating point cosh. */
 int i_mapper_cosh(ir_node *call, void *ctx)
 {
        /* cosh(0.0) = 1.0, cosh(-x) = x */
        return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
-}  /* i_mapper_cosh */
+}
 
-/* A mapper for the floating point tanh. */
 int i_mapper_tanh(ir_node *call, void *ctx)
 {
        /* tanh(0.0) = 0.0 */
        return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
-}  /* i_mapper_tanh */
+}
 
 /**
  * Return the const entity that is accessed through the pointer ptr or
@@ -608,8 +587,8 @@ int i_mapper_tanh(ir_node *call, void *ctx)
  */
 static ir_entity *get_const_entity(ir_node *ptr)
 {
-       if (is_Global(ptr)) {
-               ir_entity *ent = get_Global_entity(ptr);
+       if (is_SymConst_addr_ent(ptr)) {
+               ir_entity *ent = get_SymConst_entity(ptr);
 
                if (get_entity_linkage(ent) & IR_LINKAGE_CONSTANT) {
                        /* a constant entity */
@@ -617,7 +596,7 @@ static ir_entity *get_const_entity(ir_node *ptr)
                }
        }
        return NULL;
-}  /* get_const_entity */
+}
 
 static bool initializer_val_is_null(ir_initializer_t *init)
 {
@@ -701,9 +680,8 @@ static ir_node *eval_strlen(ir_graph *irg, ir_entity *ent, ir_type *res_tp)
        }
 
        return NULL;
-}  /* eval_strlen */
+}
 
-/* A mapper for strlen */
 int i_mapper_strlen(ir_node *call, void *ctx)
 {
        ir_node *s     = get_Call_param(call, 0);
@@ -728,7 +706,7 @@ int i_mapper_strlen(ir_node *call, void *ctx)
                }
        }
        return 0;
-}  /* i_mapper_strlen */
+}
 
 /**
  * Calculate the value of strlen if possible.
@@ -821,7 +799,7 @@ static ir_node *eval_strcmp(ir_graph *irg, ir_entity *left, ir_entity *right,
        /* TODO */
 
        return NULL;
-}  /* eval_strcmp */
+}
 
 /**
  * Checks if an entity represents the empty string.
@@ -868,9 +846,8 @@ static int is_empty_string(ir_entity *ent)
 
        init0 = get_initializer_compound_value(initializer, 0);
        return initializer_val_is_null(init0);
-}  /* is_empty_string */
+}
 
-/* A mapper for strcmp */
 int i_mapper_strcmp(ir_node *call, void *ctx)
 {
        ir_node   *left    = get_Call_param(call, 0);
@@ -965,9 +942,8 @@ replace_by_call:
        }
 
        return 0;
-}  /* i_mapper_strcmp */
+}
 
-/* A mapper for strncmp */
 int i_mapper_strncmp(ir_node *call, void *ctx)
 {
        ir_node *left  = get_Call_param(call, 0);
@@ -993,9 +969,8 @@ int i_mapper_strncmp(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_strncmp */
+}
 
-/* A mapper for strcpy */
 int i_mapper_strcpy(ir_node *call, void *ctx)
 {
        ir_node *dst = get_Call_param(call, 0);
@@ -1012,9 +987,8 @@ int i_mapper_strcpy(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_strcpy */
+}
 
-/* A mapper for memcpy */
 int i_mapper_memcpy(ir_node *call, void *ctx)
 {
        ir_node *dst = get_Call_param(call, 0);
@@ -1032,9 +1006,8 @@ int i_mapper_memcpy(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_memcpy */
+}
 
-/* A mapper for mempcpy */
 int i_mapper_mempcpy(ir_node *call, void *ctx)
 {
        ir_node *dst = get_Call_param(call, 0);
@@ -1056,9 +1029,8 @@ int i_mapper_mempcpy(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_mempcpy */
+}
 
-/* A mapper for memmove */
 int i_mapper_memmove(ir_node *call, void *ctx)
 {
        ir_node *dst = get_Call_param(call, 0);
@@ -1076,9 +1048,8 @@ int i_mapper_memmove(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_memmove */
+}
 
-/* A mapper for memset */
 int i_mapper_memset(ir_node *call, void *ctx)
 {
        ir_node *len = get_Call_param(call, 2);
@@ -1094,9 +1065,8 @@ int i_mapper_memset(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_memset */
+}
 
-/* A mapper for memcmp */
 int i_mapper_memcmp(ir_node *call, void *ctx)
 {
        ir_node *left  = get_Call_param(call, 0);
@@ -1122,7 +1092,7 @@ int i_mapper_memcmp(ir_node *call, void *ctx)
                return 1;
        }
        return 0;
-}  /* i_mapper_memcmp */
+}
 
 /**
  * Returns the result mode of a node.
@@ -1135,11 +1105,8 @@ static ir_mode *get_irn_res_mode(ir_node *node)
        case iro_Mod:    return get_Mod_resmode(node);
        default: return NULL;
        }
-}  /* get_irn_res_mode */
-
-#define LMAX(a, b) ((a) > (b) ? (a) : (b))
+}
 
-/* A mapper for mapping unsupported instructions to runtime calls. */
 int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt)
 {
        int i, j, arity, first, n_param, n_res;
@@ -1194,11 +1161,11 @@ int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt)
 
        /* step 0: calculate the number of needed Proj's */
        n_proj = 0;
-       n_proj = LMAX(n_proj, rt->mem_proj_nr + 1);
-       n_proj = LMAX(n_proj, rt->res_proj_nr + 1);
+       n_proj = MAX(n_proj, rt->mem_proj_nr + 1);
+       n_proj = MAX(n_proj, rt->res_proj_nr + 1);
        if (throws_exception) {
-               n_proj = LMAX(n_proj, rt->regular_proj_nr + 1);
-               n_proj = LMAX(n_proj, rt->exc_proj_nr + 1);
+               n_proj = MAX(n_proj, rt->regular_proj_nr + 1);
+               n_proj = MAX(n_proj, rt->exc_proj_nr + 1);
        }
 
        if (n_proj > 0) {
@@ -1268,4 +1235,4 @@ int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt)
        }
        /* should not happen */
        return 0;
-}  /* i_mapper_RuntimeCall */
+}