added doxygen comments
[libfirm] / ir / ana / field_temperature.h
index ca38368..c4a288c 100644 (file)
 /**
  * @file field_temperature.h
  *
+ *  @author Goetz Lindenmaier
+ *
  *  Watch it! This is highly java dependent.
  *
  * - All Sel nodes get an array with possibly accessed entities.
  *   (resolve polymorphy on base of inherited entities.)
  *   (the mentioned entity in first approximation.)
  *
- * - Each entity gets all SymConst/Sel nodes, that reference the
- *   entity (Sel: references as accessed entity.)
- *
  * - We compute a value for the entity based on the Sel nodes.
  */
 
 #include "entity.h"
 
 
-/** The entities that can be accessed by this Sel node. */
-int get_Sel_n_accessed_entities(ir_node *sel);
-entity *get_Sel_accessed_entity(ir_node *sel, int pos);
+
+/** The entities that can be accessed by this Sel node. *
+int     get_Sel_n_accessed_entities(ir_node *sel);
+entity *get_Sel_accessed_entity    (ir_node *sel, int pos);
+*/
+
+
+/** Get the weighted interprocedural loop depth of the node.
+    The depth is estimated by a heuristic. */
+int get_weighted_loop_depth(ir_node *n);
 
 
 
 
 
-/** compute the field temperature. */
-void compute_field_temperature(void);
 
-/** free occupied memory, reset */
-void free_field_temperature(void);
+/** An auxiliary/temporary function */
+int is_jack_rts_class(type *t);
 
 #endif /* _FIELD_TEMPERATURE_H_ */