X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Ffield_temperature.c;h=ef9766925b52cbee74e903e72351729cb5f1d0b4;hb=b2e280bcb4dcde092a0971ea045ee1269b114c4f;hp=fc147cd7dc7c29ee5c4b2b08b4859a54b2d2d4d9;hpb=9ab9464c184c44e526fe3ec43012070bd0fccfe5;p=libfirm diff --git a/ir/ana/field_temperature.c b/ir/ana/field_temperature.c index fc147cd7d..ef9766925 100644 --- a/ir/ana/field_temperature.c +++ b/ir/ana/field_temperature.c @@ -1,15 +1,35 @@ /* - * Project: libFIRM - * File name: ir/ana/field_temperature.c - * Purpose: Compute an estimate of field temperature, i.e., field access heuristic. - * Author: Goetz Lindenmaier - * Modified by: - * Created: 21.7.2004 - * CVS-ID: $Id$ - * Copyright: (c) 2004 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ +/** + * @file + * @brief Compute an estimate of field temperature, i.e., field access heuristic. + * @author Goetz Lindenmaier + * @date 21.7.2004 + * @version $Id$ + */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#ifdef INTERPROCEDURAL_VIEW + #include #include "field_temperature.h" @@ -22,6 +42,7 @@ #include "irprog_t.h" #include "entity_t.h" #include "irgwalk.h" +#include "error.h" #include "array.h" @@ -35,10 +56,12 @@ /* The entities that can be accessed by this Sel node. */ int get_Sel_n_accessed_entities(ir_node *sel) { + (void) sel; return 1; } -entity *get_Sel_accessed_entity(ir_node *sel, int pos) { +ir_entity *get_Sel_accessed_entity(ir_node *sel, int pos) { + (void) pos; return get_Sel_entity(sel); } @@ -117,6 +140,7 @@ double get_type_estimated_n_instances(ir_type *tp) { } double get_type_estimated_mem_consumption_bytes(ir_type *tp) { + (void) tp; assert(0); return 0.0; } @@ -137,7 +161,7 @@ int get_type_estimated_n_fields(ir_type *tp) { case tpo_struct: { int i, n_mem = get_compound_n_members(tp); for (i = 0; i < n_mem; ++i) { - entity *mem = get_compound_member(tp, i); + ir_entity *mem = get_compound_member(tp, i); if (get_entity_allocation(mem) == allocation_automatic) { s += get_type_estimated_n_fields(get_entity_type(mem)); } @@ -154,7 +178,8 @@ int get_type_estimated_n_fields(ir_type *tp) { s = n_elt; } break; - default: DDMT(tp); assert(0); + default: + panic("Unsupported type in get_type_estimated_n_fields %+F", tp); } return s; @@ -177,7 +202,7 @@ int get_type_estimated_size_bytes(ir_type *tp) { case tpo_struct: { int i, n_mem = get_compound_n_members(tp); for (i = 0; i < n_mem; ++i) { - entity *mem = get_compound_member(tp, i); + ir_entity *mem = get_compound_member(tp, i); s += get_type_estimated_size_bytes(get_entity_type(mem)); if (get_entity_allocation(mem) == allocation_automatic) { @@ -197,7 +222,7 @@ int get_type_estimated_size_bytes(ir_type *tp) { break; } - default: DDMT(tp); assert(0); + default: assert(0); } return s; @@ -265,7 +290,7 @@ double get_class_estimated_dispatch_reads (ir_type *clss) { int i, n_mems = get_class_n_members(clss); double n_calls = 0; for (i = 0; i < n_mems; ++i) { - entity *mem = get_class_member(clss, i); + ir_entity *mem = get_class_member(clss, i); n_calls += get_entity_estimated_n_dyncalls(mem); } return n_calls; @@ -276,7 +301,7 @@ double get_class_estimated_n_dyncalls(ir_type *clss) { get_class_estimated_dispatch_writes(clss); } -double get_entity_estimated_n_loads(entity *ent) { +double get_entity_estimated_n_loads(ir_entity *ent) { int i, n_acc = get_entity_n_accesses(ent); double n_loads = 0; for (i = 0; i < n_acc; ++i) { @@ -288,7 +313,7 @@ double get_entity_estimated_n_loads(entity *ent) { return n_loads; } -double get_entity_estimated_n_stores(entity *ent) { +double get_entity_estimated_n_stores(ir_entity *ent) { int i, n_acc = get_entity_n_accesses(ent); double n_stores = 0; for (i = 0; i < n_acc; ++i) { @@ -300,7 +325,7 @@ double get_entity_estimated_n_stores(entity *ent) { } /* @@@ Should we evaluate the callee array? */ -double get_entity_estimated_n_calls(entity *ent) { +double get_entity_estimated_n_calls(ir_entity *ent) { int i, n_acc = get_entity_n_accesses(ent); double n_calls = 0; for (i = 0; i < n_acc; ++i) { @@ -312,26 +337,25 @@ double get_entity_estimated_n_calls(entity *ent) { return n_calls; } -double get_entity_estimated_n_dyncalls(entity *ent) { +double get_entity_estimated_n_dyncalls(ir_entity *ent) { int i, n_acc = get_entity_n_accesses(ent); double n_calls = 0; for (i = 0; i < n_acc; ++i) { ir_node *acc = get_entity_access(ent, i); /* Call->Sel(ent) combination */ - if ((get_irn_op(acc) == op_Call) && - (get_irn_op(get_Call_ptr(acc)) == op_Sel)) { + if (is_Call(acc) && is_Sel(get_Call_ptr(acc))) { n_calls += get_irn_final_cost(acc); /* MemOp->Sel combination for static, overwritten entities */ - } else if (is_memop(acc) && (get_irn_op(get_memop_ptr(acc)) == op_Sel)) { - entity *ent = get_Sel_entity(get_memop_ptr(acc)); + } else if (is_memop(acc) && is_Sel(get_memop_ptr(acc))) { + ir_entity *ent = get_Sel_entity(get_memop_ptr(acc)); if (is_Class_type(get_entity_owner(ent))) { - /* We might call this for inner entities in compounds. */ - if (get_entity_n_overwrites(ent) > 0 || - get_entity_n_overwrittenby(ent) > 0) { - n_calls += get_irn_final_cost(acc); - } + /* We might call this for inner entities in compounds. */ + if (get_entity_n_overwrites(ent) > 0 || + get_entity_n_overwrittenby(ent) > 0) { + n_calls += get_irn_final_cost(acc); + } } } @@ -339,6 +363,9 @@ double get_entity_estimated_n_dyncalls(entity *ent) { return n_calls; } +#if 0 +/* Move this to the jack compiler */ + /* ------------------------------------------------------------------------- */ /* Auxiliary */ /* ------------------------------------------------------------------------- */ @@ -367,7 +394,7 @@ int is_jack_rts_class(ir_type *t) { #include "entity_t.h" // for the assertion. -int is_jack_rts_entity(entity *e) { +int is_jack_rts_entity(ir_entity *e) { ident *name; assert(e->ld_name); @@ -375,3 +402,7 @@ int is_jack_rts_entity(entity *e) { return is_jack_rts_name(name); } + +#endif /* if 0 */ + +#endif