2004-12-02 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mono / mini / ssa.c
1 /*
2  * ssa.c: Static single assign form support for the JIT compiler.
3  *
4  * Author:
5  *    Dietmar Maurer (dietmar@ximian.com)
6  *
7  * (C) 2003 Ximian, Inc.
8  */
9 #include <string.h>
10 #include <mono/metadata/debug-helpers.h>
11
12 #include "mini.h"
13
14 extern guint8 mono_burg_arity [];
15
16 #define USE_ORIGINAL_VARS
17 #define CREATE_PRUNED_SSA
18
19 //#define DEBUG_SSA 1
20
21 #define NEW_PHI(cfg,dest,val) do {      \
22                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
23                 (dest)->opcode = OP_PHI;        \
24                 (dest)->inst_c0 = (val);        \
25         } while (0)
26
27 #define NEW_ICONST(cfg,dest,val) do {   \
28                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
29                 (dest)->opcode = OP_ICONST;     \
30                 (dest)->inst_c0 = (val);        \
31                 (dest)->type = STACK_I4;        \
32         } while (0)
33
34
35 static GList*
36 g_list_prepend_mempool (GList* l, MonoMemPool* mp, gpointer datum)
37 {
38         GList* n = mono_mempool_alloc (mp, sizeof (GList));
39         n->next = l;
40         n->prev = NULL;
41         n->data = datum;
42         return n;
43 }
44
45 static void 
46 unlink_target (MonoBasicBlock *bb, MonoBasicBlock *target)
47 {
48         int i;
49
50         for (i = 0; i < bb->out_count; i++) {
51                 if (bb->out_bb [i] == target) {
52                         bb->out_bb [i] = bb->out_bb [--bb->out_count];
53                         break;
54                 }
55         }
56         for (i = 0; i < target->in_count; i++) {
57                 if (target->in_bb [i] == bb) {
58                         target->in_bb [i] = target->in_bb [--target->in_count];
59                         break;
60                         
61                 }
62         }
63 }
64
65 static void
66 unlink_unused_bblocks (MonoCompile *cfg) 
67 {
68         int i, j;
69         MonoBasicBlock *bb;
70
71         g_assert (cfg->comp_done & MONO_COMP_REACHABILITY);
72
73         for (bb = cfg->bb_entry; bb && bb->next_bb;) {
74                 if (!(bb->next_bb->flags & BB_REACHABLE)) {
75                         bb->next_bb = bb->next_bb->next_bb;
76                 } else 
77                         bb = bb->next_bb;
78         }
79
80         for (i = 1; i < cfg->num_bblocks; i++) {
81                 bb = cfg->bblocks [i];
82                
83                 if (!(bb->flags & BB_REACHABLE)) {
84                         for (j = 0; j < bb->in_count; j++) {
85                                 unlink_target (bb->in_bb [j], bb);      
86                         }
87                         for (j = 0; j < bb->out_count; j++) {
88                                 unlink_target (bb, bb->out_bb [j]);     
89                         }
90                 }
91  
92         }
93 }
94
95
96
97 static void
98 replace_usage (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *inst, MonoInst **stack)
99 {
100         int arity;
101
102         if (!inst)
103                 return;
104
105         arity = mono_burg_arity [inst->opcode];
106
107         if ((inst->ssa_op == MONO_SSA_LOAD || inst->ssa_op == MONO_SSA_MAYBE_LOAD) && 
108             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
109                 MonoInst *new_var;
110                 int idx = inst->inst_i0->inst_c0;
111                         
112                 if (stack [idx]) {
113                         new_var = stack [idx];
114                 } else {
115                         new_var = cfg->varinfo [idx];
116
117                         if ((new_var->opcode != OP_ARG) && (new_var->opcode != OP_LOCAL)) {
118                                 /* uninitialized variable ? */
119                                 g_warning ("using uninitialized variables %d in BB%d (%s)", idx, bb->block_num,
120                                            mono_method_full_name (cfg->method, TRUE));
121                                 //g_assert_not_reached ();
122                         }
123                 }
124 #ifdef DEBUG_SSA
125                 printf ("REPLACE BB%d %d %d\n", bb->block_num, idx, new_var->inst_c0);
126 #endif
127                 inst->inst_i0 = new_var;
128         } else {
129
130                 if (arity) {
131                         if (inst->ssa_op != MONO_SSA_STORE)
132                                 replace_usage (cfg, bb, inst->inst_left, stack);
133                         if (arity > 1)
134                                 replace_usage (cfg, bb, inst->inst_right, stack);
135                 }
136         }
137 }
138
139 static int
140 extends_live (MonoInst *inst)
141 {
142         int arity;
143
144         if (!inst)
145                 return 0;
146
147         arity = mono_burg_arity [inst->opcode];
148
149         if (inst->ssa_op == MONO_SSA_LOAD && 
150             (inst->inst_i0->opcode == OP_LOCAL /*|| inst->inst_i0->opcode == OP_ARG*/)) {
151                 return 1;
152         } else {
153                 if (arity) {
154                         if (inst->ssa_op != MONO_SSA_STORE)
155                                 if (extends_live (inst->inst_left))
156                                         return 1;
157                         if (arity > 1)
158                                 if (extends_live (inst->inst_right))
159                                         return 1;
160                 }
161         }
162
163         return 0;
164 }
165
166 static int
167 replace_usage_new (MonoCompile *cfg, MonoInst *inst, int varnum, MonoInst *rep)
168 {
169         int arity;
170
171         if (!inst)
172                 return 0;
173
174         arity = mono_burg_arity [inst->opcode];
175
176         if ((inst->ssa_op == MONO_SSA_LOAD) && 
177             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG) &&
178             inst->inst_i0->inst_c0 == varnum && rep->type == inst->type) {
179                 *inst = *rep;
180                 return 1;
181         } else {
182                 if (arity) {
183                         if (inst->ssa_op != MONO_SSA_STORE)
184                                 if (replace_usage_new (cfg, inst->inst_left, varnum, rep))
185                                         return 1;
186                         if (arity > 1)
187                                 if (replace_usage_new (cfg, inst->inst_right, varnum, rep))
188                                         return 1;
189                 }
190         }
191
192         return 0;
193 }
194
195 static void
196 mono_ssa_rename_vars (MonoCompile *cfg, int max_vars, MonoBasicBlock *bb, MonoInst **stack) 
197 {
198         MonoInst *inst, *new_var;
199         int i, j, idx;
200         GList *tmp;
201         MonoInst **new_stack;
202
203 #ifdef DEBUG_SSA
204         printf ("RENAME VARS BB%d %s\n", bb->block_num, mono_method_full_name (cfg->method, TRUE));
205 #endif
206
207         for (inst = bb->code; inst; inst = inst->next) {
208                 if (inst->opcode != OP_PHI)
209                         replace_usage (cfg, bb, inst, stack);
210
211                 if (inst->ssa_op == MONO_SSA_STORE && 
212                     (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
213                         idx = inst->inst_i0->inst_c0;
214                         g_assert (idx < max_vars);
215
216                         if (!stack [idx] && bb == cfg->bb_init) {
217                                 new_var = cfg->varinfo [idx];
218                         } else {
219                                 new_var = mono_compile_create_var (cfg, inst->inst_i0->inst_vtype,  inst->inst_i0->opcode);
220                                 new_var->flags = inst->inst_i0->flags;
221                         }
222 #ifdef DEBUG_SSA
223                         printf ("DEF %d %d\n", idx, new_var->inst_c0);
224 #endif
225                         inst->inst_i0 = new_var;
226
227 #ifdef USE_ORIGINAL_VARS
228                         cfg->vars [new_var->inst_c0]->reg = idx;
229 #endif
230
231                         stack [idx] = new_var;
232                 }
233         }
234
235         for (i = 0; i < bb->out_count; i++) {
236                 MonoBasicBlock *n = bb->out_bb [i];
237
238                 for (j = 0; j < n->in_count; j++)
239                         if (n->in_bb [j] == bb)
240                                 break;
241                 
242                 for (inst = n->code; inst; inst = inst->next) {
243                         if (inst->ssa_op == MONO_SSA_STORE && inst->inst_i1->opcode == OP_PHI) {
244                                 idx = inst->inst_i1->inst_c0;
245                                 if (stack [idx])
246                                         new_var = stack [idx];
247                                 else
248                                         new_var = cfg->varinfo [idx];
249 #ifdef DEBUG_SSA
250                                 printf ("FOUND PHI %d (%d, %d)\n", idx, j, new_var->inst_c0);
251 #endif
252                                 inst->inst_i1->inst_phi_args [j + 1] = new_var->inst_c0;
253                                 
254                         }
255                 }
256         }
257
258         if (bb->dominated) {
259                 new_stack = g_new (MonoInst*, max_vars);
260                 for (tmp = bb->dominated; tmp; tmp = tmp->next) {
261                         memcpy (new_stack, stack, sizeof (MonoInst *) * max_vars); 
262                         mono_ssa_rename_vars (cfg, max_vars, (MonoBasicBlock *)tmp->data, new_stack);
263                 }
264                 g_free (new_stack);
265         }
266 }
267
268 void
269 mono_ssa_compute (MonoCompile *cfg)
270 {
271         int i, idx;
272         MonoBitSet *set;
273         MonoMethodVar *vinfo = g_new0 (MonoMethodVar, cfg->num_varinfo);
274         MonoInst *inst, *store, **stack;
275
276         g_assert (!(cfg->comp_done & MONO_COMP_SSA));
277
278         /* we dont support methods containing exception clauses */
279         g_assert (mono_method_get_header (cfg->method)->num_clauses == 0);
280         g_assert (!cfg->disable_ssa);
281
282         //printf ("COMPUTS SSA %s %d\n", mono_method_full_name (cfg->method, TRUE), cfg->num_varinfo);
283
284 #ifdef CREATE_PRUNED_SSA
285         /* we need liveness for pruned SSA */
286         if (!(cfg->comp_done & MONO_COMP_LIVENESS))
287                 mono_analyze_liveness (cfg);
288 #endif
289
290         mono_compile_dominator_info (cfg, MONO_COMP_DOM | MONO_COMP_IDOM | MONO_COMP_DFRONTIER);
291
292         for (i = 0; i < cfg->num_varinfo; ++i) {
293                 vinfo [i].def_in = mono_bitset_new (cfg->num_bblocks, 0);
294                 vinfo [i].idx = i;
295                 /* implizit reference at start */
296                 mono_bitset_set (vinfo [i].def_in, 0);
297         }
298         for (i = 0; i < cfg->num_bblocks; ++i) {
299                 for (inst = cfg->bblocks [i]->code; inst; inst = inst->next) {
300                         if (inst->ssa_op == MONO_SSA_STORE) {
301                                 idx = inst->inst_i0->inst_c0;
302                                 g_assert (idx < cfg->num_varinfo);
303                                 mono_bitset_set (vinfo [idx].def_in, i);
304                         } 
305                 }
306         }
307
308         /* insert phi functions */
309         for (i = 0; i < cfg->num_varinfo; ++i) {
310                 set = mono_compile_iterated_dfrontier (cfg, vinfo [i].def_in);
311                 vinfo [i].dfrontier = set;
312                 mono_bitset_foreach_bit (set, idx, cfg->num_bblocks) {
313                         MonoBasicBlock *bb = cfg->bblocks [idx];
314
315                         /* fixme: create pruned SSA? we would need liveness information for that */
316
317                         if (bb == cfg->bb_exit)
318                                 continue;
319
320                         if ((cfg->comp_done & MONO_COMP_LIVENESS) && !mono_bitset_test_fast (bb->live_in_set, i)) {
321                                 //printf ("%d is not live in BB%d %s\n", i, bb->block_num, mono_method_full_name (cfg->method, TRUE));
322                                 continue;
323                         }
324
325                         NEW_PHI (cfg, inst, i);
326
327                         inst->inst_phi_args =  mono_mempool_alloc0 (cfg->mempool, sizeof (int) * (cfg->bblocks [idx]->in_count + 1));
328                         inst->inst_phi_args [0] = cfg->bblocks [idx]->in_count;
329
330                         store = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));
331                         if (!cfg->varinfo [i]->inst_vtype->type)
332                                 g_assert_not_reached ();
333                         store->opcode = mono_type_to_stind (cfg->varinfo [i]->inst_vtype);
334                         store->ssa_op = MONO_SSA_STORE;
335                         store->inst_i0 = cfg->varinfo [i];
336                         store->inst_i1 = inst;
337                         store->klass = store->inst_i0->klass;
338              
339                         store->next = bb->code;
340                         bb->code = store;
341
342 #ifdef DEBUG_SSA
343                         printf ("ADD PHI BB%d %s\n", cfg->bblocks [idx]->block_num, mono_method_full_name (cfg->method, TRUE));
344 #endif
345                 }
346         }
347
348         /* free the stuff */
349         for (i = 0; i < cfg->num_varinfo; ++i)
350                 mono_bitset_free (vinfo [i].def_in);
351         g_free (vinfo);
352
353
354         stack = alloca (sizeof (MonoInst *) * cfg->num_varinfo);
355                 
356         for (i = 0; i < cfg->num_varinfo; i++)
357                 stack [i] = NULL;
358
359         mono_ssa_rename_vars (cfg, cfg->num_varinfo, cfg->bb_entry, stack);
360
361         cfg->comp_done |= MONO_COMP_SSA;
362 }
363
364 #ifndef USE_ORIGINAL_VARS
365 static GPtrArray *
366 mono_ssa_get_allocatable_vars (MonoCompile *cfg)
367 {
368         GHashTable *type_hash;
369         GPtrArray *varlist_array = g_ptr_array_new ();
370         int tidx, i;
371
372         g_assert (cfg->comp_done & MONO_COMP_LIVENESS);
373
374         type_hash = g_hash_table_new (NULL, NULL);
375
376         for (i = 0; i < cfg->num_varinfo; i++) {
377                 MonoInst *ins = cfg->varinfo [i];
378                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
379
380                 /* unused vars */
381                 if (vmv->range.first_use.abs_pos > vmv->range.last_use.abs_pos)
382                         continue;
383
384                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || 
385                     (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG) || vmv->reg != -1)
386                         continue;
387
388                 g_assert (ins->inst_vtype);
389                 g_assert (vmv->reg == -1);
390                 g_assert (i == vmv->idx);
391
392                 if (!(tidx = (int)g_hash_table_lookup (type_hash, ins->inst_vtype))) {
393                         GList *vars = g_list_append (NULL, vmv);
394                         g_ptr_array_add (varlist_array, vars);
395                         g_hash_table_insert (type_hash, ins->inst_vtype, (gpointer)varlist_array->len);
396                 } else {
397                         tidx--;
398                         g_ptr_array_index (varlist_array, tidx) =
399                                 mono_varlist_insert_sorted (cfg, g_ptr_array_index (varlist_array, tidx), vmv, FALSE);
400                 }
401         }
402
403         g_hash_table_destroy (type_hash);
404
405         return varlist_array;
406 }
407 #endif
408
409 static void
410 mono_ssa_replace_copies (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *inst, char *is_live)
411 {
412         int arity;
413
414         if (!inst)
415                 return;
416
417         arity = mono_burg_arity [inst->opcode];
418
419         if ((inst->ssa_op == MONO_SSA_LOAD || inst->ssa_op == MONO_SSA_MAYBE_LOAD || inst->ssa_op == MONO_SSA_STORE) && 
420             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
421                 MonoInst *new_var;
422                 int idx = inst->inst_i0->inst_c0;
423                 MonoMethodVar *mv = cfg->vars [idx];
424
425                 if (mv->reg != -1 && mv->reg != mv->idx) {
426                        
427                         is_live [mv->reg] = 1;
428
429                         new_var = cfg->varinfo [mv->reg];
430
431 #if 0
432                         printf ("REPLACE COPY BB%d %d %d\n", bb->block_num, idx, new_var->inst_c0);
433                         g_assert (cfg->varinfo [mv->reg]->inst_vtype == cfg->varinfo [idx]->inst_vtype);
434 #endif
435                         inst->inst_i0 = new_var;
436                 } else {
437                         is_live [mv->idx] = 1;
438                 }
439         }
440
441
442         if (arity) {
443                 mono_ssa_replace_copies (cfg, bb, inst->inst_left, is_live);
444                 if (arity > 1)
445                         mono_ssa_replace_copies (cfg, bb, inst->inst_right, is_live);
446         }
447
448         if (inst->ssa_op == MONO_SSA_STORE && inst->inst_i1->ssa_op == MONO_SSA_LOAD &&
449             inst->inst_i0->inst_c0 == inst->inst_i1->inst_i0->inst_c0) {
450                 inst->ssa_op = MONO_SSA_NOP;
451                 inst->opcode = CEE_NOP;
452         }
453
454 }
455
456 void
457 mono_ssa_remove (MonoCompile *cfg)
458 {
459         MonoInst *inst, *phi;
460         char *is_live;
461         int i, j;
462 #ifndef USE_ORIGINAL_VARS
463         GPtrArray *varlist_array;
464         GList *active;
465 #endif
466         g_assert (cfg->comp_done & MONO_COMP_SSA);
467
468         for (i = 0; i < cfg->num_bblocks; ++i) {
469                 MonoBasicBlock *bb = cfg->bblocks [i];
470                 for (inst = bb->code; inst; inst = inst->next) {
471                         if (inst->ssa_op == MONO_SSA_STORE && inst->inst_i1->opcode == OP_PHI) {
472                                 
473                                 phi = inst->inst_i1;
474                                 g_assert (phi->inst_phi_args [0] == bb->in_count);
475
476                                 for (j = 0; j < bb->in_count; j++) {
477                                         MonoBasicBlock *pred = bb->in_bb [j];
478                                         int idx = phi->inst_phi_args [j + 1];
479                                         MonoMethodVar *mv = cfg->vars [idx];
480
481                                         if (mv->reg != -1 && mv->reg != mv->idx) {
482                                                 //printf ("PHICOPY %d %d -> %d\n", idx, mv->reg, inst->inst_i0->inst_c0);
483                                                 idx = mv->reg;
484                                         }
485
486                                         
487                                         if (idx != inst->inst_i0->inst_c0) {
488 #ifdef DEBUG_SSA
489                                                 printf ("MOVE %d to %d in BB%d\n", idx, inst->inst_i0->inst_c0, pred->block_num);
490 #endif
491                                                 mono_add_varcopy_to_end (cfg, pred, idx, inst->inst_i0->inst_c0);
492                                         }
493                                 }
494
495                                 /* remove the phi functions */
496                                 inst->opcode = CEE_NOP;
497                                 inst->ssa_op = MONO_SSA_NOP;
498                         } 
499                 }
500         }
501         
502 #ifndef USE_ORIGINAL_VARS
503         /* we compute liveness again */
504         cfg->comp_done &= ~MONO_COMP_LIVENESS;
505         mono_analyze_liveness (cfg);
506
507         varlist_array = mono_ssa_get_allocatable_vars (cfg);
508
509         for (i = 0; i < varlist_array->len; i++) {
510                 GList *l, *regs, *vars = g_ptr_array_index (varlist_array, i);
511                 MonoMethodVar *vmv, *amv;
512                 
513                 if (g_list_length (vars) <= 1) {
514                         continue;
515                 }
516
517                 active = NULL;
518                 regs = NULL;
519
520                 for (l = vars; l; l = l->next) {
521                         vmv = l->data;
522
523                         /* expire old intervals in active */
524                         while (active) {
525                                 amv = (MonoMethodVar *)active->data;
526
527                                 if (amv->range.last_use.abs_pos >= vmv->range.first_use.abs_pos)
528                                         break;
529
530                                 active = g_list_delete_link (active, active);
531                                 regs = g_list_prepend (regs, (gpointer)amv->reg);
532                         }
533
534                         if (!regs)
535                                 regs = g_list_prepend (regs, (gpointer)vmv->idx);
536
537                         vmv->reg = (int)regs->data;
538                         regs = g_list_delete_link (regs, regs);
539                         active = mono_varlist_insert_sorted (cfg, active, vmv, TRUE);           
540                 }
541
542                 g_list_free (active);
543                 g_list_free (regs);
544                 g_list_free (vars);
545         }
546
547         g_ptr_array_free (varlist_array, TRUE);
548
549 #endif
550
551         is_live = alloca (cfg->num_varinfo);
552         memset (is_live, 0, cfg->num_varinfo);
553
554         for (i = 0; i < cfg->num_bblocks; ++i) {
555                 MonoBasicBlock *bb = cfg->bblocks [i];
556
557                 for (inst = bb->code; inst; inst = inst->next)
558                         mono_ssa_replace_copies (cfg, bb, inst, is_live);
559         }
560
561         for (i = 0; i < cfg->num_varinfo; ++i) {
562                 cfg->vars [i]->reg = -1;
563                 if (!is_live [i]) {
564                         cfg->varinfo [i]->flags |= MONO_INST_IS_DEAD;
565                 }
566         }
567
568         if (cfg->comp_done & MONO_COMP_REACHABILITY)
569                 unlink_unused_bblocks (cfg);
570
571         cfg->comp_done &= ~MONO_COMP_SSA;
572 }
573
574
575 #define IS_CALL(op) (op == CEE_CALLI || op == CEE_CALL || op == CEE_CALLVIRT || (op >= OP_VOIDCALL && op <= OP_CALL_MEMBASE))
576
577 typedef struct {
578         MonoBasicBlock *bb;
579         MonoInst *inst;
580 } MonoVarUsageInfo;
581
582 static void
583 analyze_dev_use (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *root, MonoInst *inst)
584 {
585         MonoMethodVar *info;
586         int i, idx, arity;
587
588         if (!inst)
589                 return;
590
591         arity = mono_burg_arity [inst->opcode];
592
593         if ((inst->ssa_op == MONO_SSA_STORE) && 
594             (inst->inst_i0->opcode == OP_LOCAL /*|| inst->inst_i0->opcode == OP_ARG */)) {
595                 idx = inst->inst_i0->inst_c0;
596                 info = cfg->vars [idx];
597                 //printf ("%d defined in BB%d %p\n", idx, bb->block_num, root);
598                 if (info->def) {
599                         g_warning ("more than one definition of variable %d in %s", idx,
600                                    mono_method_full_name (cfg->method, TRUE));
601                         g_assert_not_reached ();
602                 }
603                 if (!IS_CALL (inst->inst_i1->opcode) /* && inst->inst_i1->opcode == OP_ICONST */) {
604                         g_assert (inst == root);
605                         info->def = root;
606                         info->def_bb = bb;
607                 }
608
609                 if (inst->inst_i1->opcode == OP_PHI) {
610                         for (i = inst->inst_i1->inst_phi_args [0]; i > 0; i--) {
611                                 MonoVarUsageInfo *ui = mono_mempool_alloc (cfg->mempool, sizeof (MonoVarUsageInfo));
612                                 idx = inst->inst_i1->inst_phi_args [i]; 
613                                 info = cfg->vars [idx];
614                                 //printf ("FOUND %d\n", idx);
615                                 ui->bb = bb;
616                                 ui->inst = root;
617                                 info->uses = g_list_prepend_mempool (info->uses, cfg->mempool, ui);
618                         }
619                 }
620         }
621
622         if ((inst->ssa_op == MONO_SSA_LOAD || inst->ssa_op == MONO_SSA_MAYBE_LOAD) && 
623             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
624                 MonoVarUsageInfo *ui = mono_mempool_alloc (cfg->mempool, sizeof (MonoVarUsageInfo));
625                 idx = inst->inst_i0->inst_c0;   
626                 info = cfg->vars [idx];
627                 //printf ("FOUND %d\n", idx);
628                 ui->bb = bb;
629                 ui->inst = root;
630                 info->uses = g_list_prepend_mempool (info->uses, cfg->mempool, ui);
631         } else {
632                 if (arity) {
633                         //if (inst->ssa_op != MONO_SSA_STORE)
634                         analyze_dev_use (cfg, bb, root, inst->inst_left);
635                         if (arity > 1)
636                                 analyze_dev_use (cfg, bb, root, inst->inst_right);
637                 }
638         }
639 }
640
641
642 /* avoid unnecessary copies of variables:
643  * Y <= X; Z = Y; is translated to Z = X;
644  */
645 static void
646 mono_ssa_avoid_copies (MonoCompile *cfg)
647 {
648         MonoInst *inst, *next;
649         MonoBasicBlock *bb;
650         MonoMethodVar *i1, *i2;
651
652         g_assert ((cfg->comp_done & MONO_COMP_SSA_DEF_USE));
653
654         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
655                 for (inst = bb->code; inst; inst = inst->next) {
656                         if (inst->ssa_op == MONO_SSA_STORE && inst->inst_i0->opcode == OP_LOCAL &&
657                             !IS_CALL (inst->inst_i1->opcode) && inst->inst_i1->opcode != OP_PHI && !inst->flags) {
658                                 i1 = cfg->vars [inst->inst_i0->inst_c0];
659
660 /* fixme: compiling mcs does not work when I enable this */
661 #if 0
662                                 if (g_list_length (i1->uses) == 1 && !extends_live (inst->inst_i1)) {
663                                         MonoVarUsageInfo *vi = (MonoVarUsageInfo *)i1->uses->data;
664                                         u = vi->inst;
665
666                                         //printf ("VAR %d %s\n", i1->idx, mono_method_full_name (cfg->method, TRUE));
667                                         //mono_print_tree (inst); printf ("\n");
668                                         //mono_print_tree (u); printf ("\n");
669
670                                         if (replace_usage_new (cfg, u, inst->inst_i0->inst_c0,  inst->inst_i1)) {
671                                                                                                                 
672                                                 //mono_print_tree (u); printf ("\n");
673                                                         
674                                                 inst->opcode = CEE_NOP;
675                                                 inst->ssa_op = MONO_SSA_NOP;
676                                         }
677                                 }
678 #endif                  
679                                 if ((next = inst->next) && next->ssa_op == MONO_SSA_STORE && next->inst_i0->opcode == OP_LOCAL &&
680                                     next->inst_i1->ssa_op == MONO_SSA_LOAD &&  next->inst_i1->inst_i0->opcode == OP_LOCAL &&
681                                     next->inst_i1->inst_i0->inst_c0 == inst->inst_i0->inst_c0 && g_list_length (i1->uses) == 1 &&
682                                     inst->opcode == next->opcode && inst->inst_i0->type == next->inst_i0->type) {
683                                         i2 = cfg->vars [next->inst_i0->inst_c0];
684                                         //printf ("ELIM. COPY in BB%d %s\n", bb->block_num, mono_method_full_name (cfg->method, TRUE));
685                                         inst->inst_i0 = next->inst_i0;
686                                         i2->def = inst;
687                                         i1->def = NULL;
688                                         i1->uses = NULL;
689                                         next->opcode = CEE_NOP;
690                                         next->ssa_op = MONO_SSA_NOP;
691                                 }
692                         }
693                 }
694         }
695 }
696
697 static void
698 mono_ssa_create_def_use (MonoCompile *cfg) 
699 {
700         MonoBasicBlock *bb;
701
702         g_assert (!(cfg->comp_done & MONO_COMP_SSA_DEF_USE));
703
704         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
705                 MonoInst *inst;
706                 for (inst = bb->code; inst; inst = inst->next) {
707                         analyze_dev_use (cfg, bb, inst, inst);
708                 }
709         }
710
711         cfg->comp_done |= MONO_COMP_SSA_DEF_USE;
712 }
713
714 static int
715 simulate_compare (int opcode, int a, int b)
716 {
717         switch (opcode) {
718         case CEE_BEQ:
719                 return a == b;
720         case CEE_BGE:
721                 return a >= b;
722         case CEE_BGT:
723                 return a > b;
724         case CEE_BLE:
725                 return a <= b;
726         case CEE_BLT:
727                 return a < b;
728         case CEE_BNE_UN:
729                 return a != b;
730         case CEE_BGE_UN:
731                 return (unsigned)a >= (unsigned)b;
732         case CEE_BGT_UN:
733                 return (unsigned)a > (unsigned)b;
734         case CEE_BLE_UN:
735                 return (unsigned)a <= (unsigned)b;
736         case CEE_BLT_UN:
737                 return (unsigned)a < (unsigned)b;
738         default:
739                 g_assert_not_reached ();
740         }
741
742         return 0;
743 }
744
745 static int
746 simulate_long_compare (int opcode, gint64 a, gint64 b)
747 {
748         switch (opcode) {
749         case CEE_BEQ:
750                 return a == b;
751         case CEE_BGE:
752                 return a >= b;
753         case CEE_BGT:
754                 return a > b;
755         case CEE_BLE:
756                 return a <= b;
757         case CEE_BLT:
758                 return a < b;
759         case CEE_BNE_UN:
760                 return a != b;
761         case CEE_BGE_UN:
762                 return (guint64)a >= (guint64)b;
763         case CEE_BGT_UN:
764                 return (guint64)a > (guint64)b;
765         case CEE_BLE_UN:
766                 return (guint64)a <= (guint64)b;
767         case CEE_BLT_UN:
768                 return (guint64)a < (guint64)b;
769         default:
770                 g_assert_not_reached ();
771         }
772
773         return 0;
774 }
775
776 #define EVAL_CXX(name,op,cast)  \
777         case name:      \
778                 if ((inst->inst_i0->opcode == OP_COMPARE) || (inst->inst_i0->opcode == OP_LCOMPARE)) { \
779                         r1 = evaluate_const_tree (cfg, inst->inst_i0->inst_i0, &a, carray); \
780                         r2 = evaluate_const_tree (cfg, inst->inst_i0->inst_i1, &b, carray); \
781                         if (r1 == 1 && r2 == 1) { \
782                                 *res = ((cast)a op (cast)b); \
783                                 return 1; \
784                         } else { \
785                                 return MAX (r1, r2); \
786                         } \
787                 } \
788                 break;
789
790 #define EVAL_BINOP(name,op)     \
791         case name:      \
792                 r1 = evaluate_const_tree (cfg, inst->inst_i0, &a, carray); \
793                 r2 = evaluate_const_tree (cfg, inst->inst_i1, &b, carray); \
794                 if (r1 == 1 && r2 == 1) { \
795                         *res = (a op b); \
796                         return 1; \
797                 } else { \
798                         return MAX (r1, r2); \
799                 } \
800                 break;
801
802
803 /* fixme: this only works for interger constants, but not for other types (long, float) */
804 static int
805 evaluate_const_tree (MonoCompile *cfg, MonoInst *inst, int *res, MonoInst **carray)
806 {
807         MonoInst *c0;
808         int a, b, r1, r2;
809
810         if (!inst)
811                 return 0;
812
813         if (inst->ssa_op == MONO_SSA_LOAD && 
814             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG) &&
815             (c0 = carray [inst->inst_i0->inst_c0])) {
816                 *res = c0->inst_c0;
817                 return 1;
818         }
819
820         switch (inst->opcode) {
821         case OP_ICONST:
822                 *res = inst->inst_c0;
823                 return 1;
824
825         EVAL_CXX (OP_CEQ,==,gint32)
826         EVAL_CXX (OP_CGT,>,gint32)
827         EVAL_CXX (OP_CGT_UN,>,guint32)
828         EVAL_CXX (OP_CLT,<,gint32)
829         EVAL_CXX (OP_CLT_UN,<,guint32)
830
831         EVAL_BINOP (CEE_ADD,+)
832         EVAL_BINOP (CEE_SUB,-)
833         EVAL_BINOP (CEE_MUL,*)
834         EVAL_BINOP (CEE_AND,&)
835         EVAL_BINOP (CEE_OR,|)
836         EVAL_BINOP (CEE_XOR,^)
837         EVAL_BINOP (CEE_SHL,<<)
838         EVAL_BINOP (CEE_SHR,>>)
839
840         default:
841                 return 2;
842         }
843
844         return 2;
845 }
846
847 static void
848 fold_tree (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *inst, MonoInst **carray)
849 {
850         MonoInst *c0;
851         int arity, a, b;
852
853         if (!inst)
854                 return;
855
856         arity = mono_burg_arity [inst->opcode];
857
858         if (inst->ssa_op == MONO_SSA_STORE && 
859             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG) &&
860             inst->inst_i1->opcode == OP_PHI && (c0 = carray [inst->inst_i0->inst_c0])) {
861                 //{static int cn = 0; printf ("PHICONST %d %d %s\n", cn++, c0->inst_c0, mono_method_full_name (cfg->method, TRUE));}
862                 *inst->inst_i1 = *c0;           
863         } else if (inst->ssa_op == MONO_SSA_LOAD && 
864             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG) &&
865             (c0 = carray [inst->inst_i0->inst_c0])) {
866                 //{static int cn = 0; printf ("YCCOPY %d %d %s\n", cn++, c0->inst_c0, mono_method_full_name (cfg->method, TRUE));}
867                 *inst = *c0;
868         } else {
869
870                 if (arity) {
871                         fold_tree (cfg, bb, inst->inst_left, carray);
872                         if (arity > 1)
873                                 fold_tree (cfg, bb, inst->inst_right, carray);
874                         mono_constant_fold_inst (inst, NULL); 
875                 }
876         }
877
878         if ((inst->opcode >= CEE_BEQ && inst->opcode <= CEE_BLT_UN) &&
879             ((inst->inst_i0->opcode == OP_COMPARE) || (inst->inst_i0->opcode == OP_LCOMPARE))) {
880                 MonoInst *v0 = inst->inst_i0->inst_i0;
881                 MonoInst *v1 = inst->inst_i0->inst_i1;
882                 MonoBasicBlock *target = NULL;
883
884                 /* hack for longs to optimize the simply cases */
885                 if (v0->opcode == OP_I8CONST && v1->opcode == OP_I8CONST) {
886                         if (simulate_long_compare (inst->opcode, v0->inst_l, v1->inst_l)) {
887                                 //unlink_target (bb, inst->inst_false_bb);
888                                 target = inst->inst_true_bb;
889                         } else {
890                                 //unlink_target (bb, inst->inst_true_bb);
891                                 target = inst->inst_false_bb;
892                         }                       
893                 } else if (evaluate_const_tree (cfg, v0, &a, carray) == 1 &&
894                            evaluate_const_tree (cfg, v1, &b, carray) == 1) {                            
895                         if (simulate_compare (inst->opcode, a, b)) {
896                                 //unlink_target (bb, inst->inst_false_bb);
897                                 target = inst->inst_true_bb;
898                         } else {
899                                 //unlink_target (bb, inst->inst_true_bb);
900                                 target = inst->inst_false_bb;
901                         }
902                 }
903
904                 if (target) {
905                         bb->out_bb [0] = target;
906                         bb->out_count = 1;
907                         inst->opcode = CEE_BR;
908                         inst->inst_target_bb = target;
909                 }
910         } else if (inst->opcode == CEE_SWITCH && evaluate_const_tree (cfg, inst->inst_left, &a, carray) == 1) {
911                 bb->out_bb [0] = inst->inst_many_bb [a];
912                 bb->out_count = 1;
913                 inst->inst_target_bb = bb->out_bb [0];
914                 inst->opcode = CEE_BR;
915         }
916
917 }
918
919 static void
920 change_varstate (MonoCompile *cfg, GList **cvars, MonoMethodVar *info, int state, MonoInst *c0, MonoInst **carray)
921 {
922         if (info->cpstate >= state)
923                 return;
924
925         info->cpstate = state;
926
927         //printf ("SETSTATE %d to %d\n", info->idx, info->cpstate);
928
929         if (state == 1)
930                 carray [info->idx] = c0;
931         else
932                 carray [info->idx] = NULL;
933
934         if (!g_list_find (*cvars, info)) {
935                 *cvars = g_list_prepend (*cvars, info);
936         }
937 }
938
939 static void
940 visit_inst (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *inst, GList **cvars, GList **bblist, MonoInst **carray)
941 {
942         g_assert (inst);
943
944         if (inst->opcode == CEE_SWITCH) {
945                 int r1, i, a;
946
947                 r1 = evaluate_const_tree (cfg, inst->inst_left, &a, carray);
948                 if (r1 == 1) {
949                         MonoBasicBlock *tb = inst->inst_many_bb [a];
950                         if (!(tb->flags &  BB_REACHABLE)) {
951                                 tb->flags |= BB_REACHABLE;
952                                 *bblist = g_list_prepend (*bblist, tb);
953                         }
954                 } else if (r1 == 2) {
955                         for (i = (int)inst->klass; i >= 0; i--) {
956                                 MonoBasicBlock *tb = inst->inst_many_bb [i];
957                                 if (!(tb->flags &  BB_REACHABLE)) {
958                                         tb->flags |= BB_REACHABLE;
959                                         *bblist = g_list_prepend (*bblist, tb);
960                                 }
961                         }
962                 }
963         } else if ((inst->opcode >= CEE_BEQ && inst->opcode <= CEE_BLT_UN) &&
964             ((inst->inst_i0->opcode == OP_COMPARE) || (inst->inst_i0->opcode == OP_LCOMPARE))) {
965                 int a, b, r1, r2;
966                 MonoInst *v0 = inst->inst_i0->inst_i0;
967                 MonoInst *v1 = inst->inst_i0->inst_i1;
968
969                 r1 = evaluate_const_tree (cfg, v0, &a, carray);
970                 r2 = evaluate_const_tree (cfg, v1, &b, carray);
971
972                 if (r1 == 1 && r2 == 1) {
973                         MonoBasicBlock *target;
974                                 
975                         if (simulate_compare (inst->opcode, a, b)) {
976                                 target = inst->inst_true_bb;
977                         } else {
978                                 target = inst->inst_false_bb;
979                         }
980                         if (!(target->flags &  BB_REACHABLE)) {
981                                 target->flags |= BB_REACHABLE;
982                                 *bblist = g_list_prepend (*bblist, target);
983                         }
984                 } else if (r1 == 2 || r2 == 2) {
985                         if (!(inst->inst_true_bb->flags &  BB_REACHABLE)) {
986                                 inst->inst_true_bb->flags |= BB_REACHABLE;
987                                 *bblist = g_list_prepend (*bblist, inst->inst_true_bb);
988                         }
989                         if (!(inst->inst_false_bb->flags &  BB_REACHABLE)) {
990                                 inst->inst_false_bb->flags |= BB_REACHABLE;
991                                 *bblist = g_list_prepend (*bblist, inst->inst_false_bb);
992                         }
993                 }       
994         } else if (inst->ssa_op == MONO_SSA_STORE && 
995                    (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
996                 MonoMethodVar *info = cfg->vars [inst->inst_i0->inst_c0];
997                 MonoInst *i1 = inst->inst_i1;
998                 int res;
999                 
1000                 if (info->cpstate < 2) {
1001                         if (i1->opcode == OP_ICONST) { 
1002                                 change_varstate (cfg, cvars, info, 1, i1, carray);
1003                         } else if (i1->opcode == OP_PHI) {
1004                                 MonoInst *c0 = NULL;
1005                                 int j;
1006
1007                                 for (j = 1; j <= i1->inst_phi_args [0]; j++) {
1008                                         MonoMethodVar *mv = cfg->vars [i1->inst_phi_args [j]];
1009                                         MonoInst *src = mv->def;
1010
1011                                         if (mv->def_bb && !(mv->def_bb->flags & BB_REACHABLE)) {
1012                                                 continue;
1013                                         }
1014
1015                                         if (!mv->def || !src || src->ssa_op != MONO_SSA_STORE ||
1016                                             !(src->inst_i0->opcode == OP_LOCAL || src->inst_i0->opcode == OP_ARG) ||
1017                                             mv->cpstate == 2) {
1018                                                 change_varstate (cfg, cvars, info, 2, NULL, carray);
1019                                                 break;
1020                                         }
1021                                         
1022                                         if (mv->cpstate == 0)
1023                                                 continue;
1024
1025                                         //g_assert (src->inst_i1->opcode == OP_ICONST);
1026                                         g_assert (carray [mv->idx]);
1027
1028                                         if (!c0) {
1029                                                 c0 = carray [mv->idx];
1030                                         }
1031                                         
1032                                         if (carray [mv->idx]->inst_c0 != c0->inst_c0) {
1033                                                 change_varstate (cfg, cvars, info, 2, NULL, carray);
1034                                                 break;
1035                                         }
1036                                 }
1037                                 
1038                                 if (c0 && info->cpstate < 1) {
1039                                         change_varstate (cfg, cvars, info, 1, c0, carray);
1040                                 }
1041                         } else {
1042                                 int state = evaluate_const_tree (cfg, i1, &res, carray);
1043                                 if (state == 1) {
1044                                         NEW_ICONST (cfg, i1, res);
1045                                         change_varstate (cfg, cvars, info, 1, i1, carray);
1046                                 } else {
1047                                         change_varstate (cfg, cvars, info, 2, NULL, carray);
1048                                 }
1049                         }
1050                 }
1051         }
1052 }
1053
1054 void
1055 mono_ssa_cprop (MonoCompile *cfg) 
1056 {
1057         MonoInst **carray;
1058         MonoBasicBlock *bb;
1059         GList *bblock_list, *cvars;
1060         GList *tmp;
1061         int i;
1062         //printf ("SIMPLE OPTS BB%d %s\n", bb->block_num, mono_method_full_name (cfg->method, TRUE));
1063
1064         carray = g_new0 (MonoInst*, cfg->num_varinfo);
1065
1066         if (!(cfg->comp_done & MONO_COMP_SSA_DEF_USE))
1067                 mono_ssa_create_def_use (cfg);
1068
1069         bblock_list = g_list_prepend (NULL, cfg->bb_entry);
1070         cfg->bb_entry->flags |= BB_REACHABLE;
1071
1072         memset (carray, 0, sizeof (MonoInst *) * cfg->num_varinfo);
1073
1074         for (i = 0; i < cfg->num_varinfo; i++) {
1075                 MonoMethodVar *info = cfg->vars [i];
1076                 if (!info->def)
1077                         info->cpstate = 2;
1078         }
1079
1080         cvars = NULL;
1081
1082         while (bblock_list) {
1083                 MonoInst *inst;
1084
1085                 bb = (MonoBasicBlock *)bblock_list->data;
1086
1087                 bblock_list = g_list_delete_link (bblock_list, bblock_list);
1088
1089                 g_assert (bb->flags &  BB_REACHABLE);
1090
1091                 if (bb->out_count == 1) {
1092                         if (!(bb->out_bb [0]->flags &  BB_REACHABLE)) {
1093                                 bb->out_bb [0]->flags |= BB_REACHABLE;
1094                                 bblock_list = g_list_prepend (bblock_list, bb->out_bb [0]);
1095                         }
1096                 }
1097
1098                 for (inst = bb->code; inst; inst = inst->next) {
1099                         visit_inst (cfg, bb, inst, &cvars, &bblock_list, carray);
1100                 }
1101
1102                 while (cvars) {
1103                         MonoMethodVar *info = (MonoMethodVar *)cvars->data;                     
1104                         cvars = g_list_delete_link (cvars, cvars);
1105
1106                         for (tmp = info->uses; tmp; tmp = tmp->next) {
1107                                 MonoVarUsageInfo *ui = (MonoVarUsageInfo *)tmp->data;
1108                                 if (!(ui->bb->flags & BB_REACHABLE))
1109                                         continue;
1110                                 visit_inst (cfg, ui->bb, ui->inst, &cvars, &bblock_list, carray);
1111                         }
1112                 }
1113         }
1114
1115         for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
1116                 MonoInst *inst;
1117                 for (inst = bb->code; inst; inst = inst->next) {
1118                         fold_tree (cfg, bb, inst, carray);
1119                 }
1120         }
1121
1122         g_free (carray);
1123
1124         cfg->comp_done |= MONO_COMP_REACHABILITY;
1125 }
1126
1127 static void
1128 add_to_dce_worklist (MonoCompile *cfg, MonoMethodVar *var, MonoMethodVar *use, GList **wl)
1129 {
1130         GList *tmp;
1131
1132         *wl = g_list_prepend (*wl, use);
1133
1134         for (tmp = use->uses; tmp; tmp = tmp->next) {
1135                 MonoVarUsageInfo *ui = (MonoVarUsageInfo *)tmp->data;
1136                 if (ui->inst == var->def) {
1137                         /* from the mempool */
1138                         use->uses = g_list_remove_link (use->uses, tmp);
1139                         break;
1140                 }
1141         }       
1142 }
1143
1144 void
1145 mono_ssa_deadce (MonoCompile *cfg) 
1146 {
1147         int i;
1148         GList *work_list;
1149
1150         g_assert (cfg->comp_done & MONO_COMP_SSA);
1151
1152         //printf ("DEADCE %s\n", mono_method_full_name (cfg->method, TRUE));
1153
1154         /* fixme: we should update usage infos during cprop, instead of computing it again */
1155         cfg->comp_done &=  ~MONO_COMP_SSA_DEF_USE;
1156         for (i = 0; i < cfg->num_varinfo; i++) {
1157                 MonoMethodVar *info = cfg->vars [i];
1158                 info->def = NULL;
1159                 info->uses = NULL;
1160         }
1161
1162         if (!(cfg->comp_done & MONO_COMP_SSA_DEF_USE))
1163                 mono_ssa_create_def_use (cfg);
1164
1165         mono_ssa_avoid_copies (cfg);
1166
1167         work_list = NULL;
1168         for (i = 0; i < cfg->num_varinfo; i++) {
1169                 MonoMethodVar *info = cfg->vars [i];
1170                 work_list = g_list_prepend (work_list, info);
1171         }
1172
1173         while (work_list) {
1174                 MonoMethodVar *info = (MonoMethodVar *)work_list->data;
1175                 work_list = g_list_delete_link (work_list, work_list);
1176
1177                 if (!info->uses && info->def && (!(cfg->varinfo [info->idx]->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)))) {
1178                         MonoInst *i1;
1179                         //printf ("ELIMINATE %s: ", mono_method_full_name (cfg->method, TRUE)); mono_print_tree (info->def); printf ("\n");
1180
1181                         i1 = info->def->inst_i1;
1182                         if (i1->opcode == OP_PHI) {
1183                                 int j;
1184                                 for (j = i1->inst_phi_args [0]; j > 0; j--) {
1185                                         MonoMethodVar *u = cfg->vars [i1->inst_phi_args [j]];
1186                                         add_to_dce_worklist (cfg, info, u, &work_list);
1187                                 }
1188                         } else if (i1->ssa_op == MONO_SSA_LOAD &&
1189                                    (i1->inst_i0->opcode == OP_LOCAL || i1->inst_i0->opcode == OP_ARG)) {
1190                                         MonoMethodVar *u = cfg->vars [i1->inst_i0->inst_c0];
1191                                         add_to_dce_worklist (cfg, info, u, &work_list);
1192                         }
1193
1194                         info->def->opcode = CEE_NOP;
1195                         info->def->ssa_op = MONO_SSA_NOP;
1196                 }
1197
1198         }
1199 }
1200
1201 #if 0
1202 void
1203 mono_ssa_strength_reduction (MonoCompile *cfg)
1204 {
1205         MonoBasicBlock *bb;
1206         int i;
1207
1208         g_assert (cfg->comp_done & MONO_COMP_SSA);
1209         g_assert (cfg->comp_done & MONO_COMP_LOOPS);
1210         g_assert (cfg->comp_done & MONO_COMP_SSA_DEF_USE);
1211
1212         for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
1213                 GList *lp = bb->loop_blocks;
1214
1215                 if (lp) {
1216                         MonoBasicBlock *h = (MonoBasicBlock *)lp->data;
1217
1218                         /* we only consider loops with 2 in bblocks */
1219                         if (!h->in_count == 2)
1220                                 continue;
1221
1222                         for (i = 0; i < cfg->num_varinfo; i++) {
1223                                 MonoMethodVar *info = cfg->vars [i];
1224                         
1225                                 if (info->def && info->def->ssa_op == MONO_SSA_STORE &&
1226                                     info->def->inst_i0->opcode == OP_LOCAL && g_list_find (lp, info->def_bb)) {
1227                                         MonoInst *v = info->def->inst_i1;
1228
1229
1230                                         printf ("FOUND %d in %s\n", info->idx, mono_method_full_name (cfg->method, TRUE));
1231                                 }
1232                         }
1233                 }
1234         }
1235 }
1236 #endif