X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fcallgraph.c;h=13b6f44374a0a5049007c3796dd3ccd81d942410;hb=3c4872fdbca09b88b377417d58981c6e518313b4;hp=ab3fb3eb75796a431bdd7309e40d3d207ed06892;hpb=277eeccff1af897173103b9b691cc8f8be06c812;p=libfirm diff --git a/ir/ana/callgraph.c b/ir/ana/callgraph.c index ab3fb3eb7..13b6f4437 100644 --- a/ir/ana/callgraph.c +++ b/ir/ana/callgraph.c @@ -145,7 +145,7 @@ int get_irg_callee_loop_depth(ir_graph *irg, int pos) { -double get_irg_callee_execution_freqency(ir_graph *irg, int pos) { +double get_irg_callee_execution_frequency(ir_graph *irg, int pos) { ir_node **arr = ((ana_entry *)irg->callees[pos])->call_list; int i, n_Calls = ARR_LEN(arr); double freq = 0; @@ -156,18 +156,18 @@ double get_irg_callee_execution_freqency(ir_graph *irg, int pos) { return freq; } -double get_irg_callee_method_execution_freqency(ir_graph *irg, int pos) { - double call_freq = get_irg_callee_execution_freqency(irg, pos); +double get_irg_callee_method_execution_frequency(ir_graph *irg, int pos) { + double call_freq = get_irg_callee_execution_frequency(irg, pos); double meth_freq = get_irg_method_execution_frequency(irg); return call_freq * meth_freq; } -double get_irg_caller_method_execution_freqency(ir_graph *irg, int pos) { +double get_irg_caller_method_execution_frequency(ir_graph *irg, int pos) { ir_graph *caller = get_irg_caller(irg, pos); int pos_callee = reverse_pos(irg, pos); - return get_irg_callee_method_execution_freqency(caller, pos_callee); + return get_irg_callee_method_execution_frequency(caller, pos_callee); } @@ -1118,8 +1118,8 @@ static void compute_rec_depth (ir_graph *irg, void *env) { /* ----------------------------------------------------------------------------------- */ -/* Another algorithm to compute the execution freqency of methods ignoring recursions. */ -/* Walk the callgraph. Ignore backedges. Use sum of execution freqencies of Call */ +/* Another algorithm to compute the execution frequency of methods ignoring recursions. */ +/* Walk the callgraph. Ignore backedges. Use sum of execution frequencies of Call */ /* nodes to evaluate a callgraph edge. */ /* ----------------------------------------------------------------------------------- */ @@ -1155,12 +1155,12 @@ static void compute_method_execution_frequency (ir_graph *irg, void *env) { } mark_cg_irg_visited(irg); - /* Compute the new freqency. */ + /* Compute the new frequency. */ freq = 0; found_edge = 0; for (i = 0; i < n_callers; i++) { if (! is_irg_caller_backedge(irg, i)) { - double edge_freq = get_irg_caller_method_execution_freqency(irg, i); + double edge_freq = get_irg_caller_method_execution_frequency(irg, i); assert(edge_freq >= 0); freq += edge_freq; found_edge = 1;