In .:
[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 #define USE_ORIGINAL_VARS
15 #define CREATE_PRUNED_SSA
16
17 //#define DEBUG_SSA 1
18
19 #define NEW_PHI(cfg,dest,val) do {      \
20                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
21                 (dest)->opcode = OP_PHI;        \
22                 (dest)->inst_c0 = (val);        \
23         } while (0)
24
25 #define NEW_ICONST(cfg,dest,val) do {   \
26                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
27                 (dest)->opcode = OP_ICONST;     \
28                 (dest)->inst_c0 = (val);        \
29                 (dest)->type = STACK_I4;        \
30         } while (0)
31
32
33 static GList*
34 g_list_prepend_mempool (GList* l, MonoMemPool* mp, gpointer datum)
35 {
36         GList* n = mono_mempool_alloc (mp, sizeof (GList));
37         n->next = l;
38         n->prev = NULL;
39         n->data = datum;
40         return n;
41 }
42
43 static void 
44 unlink_target (MonoBasicBlock *bb, MonoBasicBlock *target)
45 {
46         int i;
47
48         for (i = 0; i < bb->out_count; i++) {
49                 if (bb->out_bb [i] == target) {
50                         bb->out_bb [i] = bb->out_bb [--bb->out_count];
51                         break;
52                 }
53         }
54         for (i = 0; i < target->in_count; i++) {
55                 if (target->in_bb [i] == bb) {
56                         target->in_bb [i] = target->in_bb [--target->in_count];
57                         break;
58                         
59                 }
60         }
61 }
62
63 static void
64 unlink_unused_bblocks (MonoCompile *cfg) 
65 {
66         int i, j;
67         MonoBasicBlock *bb;
68
69         g_assert (cfg->comp_done & MONO_COMP_REACHABILITY);
70
71         for (bb = cfg->bb_entry; bb && bb->next_bb;) {
72                 if (!(bb->next_bb->flags & BB_REACHABLE)) {
73                         bb->next_bb = bb->next_bb->next_bb;
74                 } else 
75                         bb = bb->next_bb;
76         }
77
78         for (i = 1; i < cfg->num_bblocks; i++) {
79                 bb = cfg->bblocks [i];
80                
81                 if (!(bb->flags & BB_REACHABLE)) {
82                         for (j = 0; j < bb->in_count; j++) {
83                                 unlink_target (bb->in_bb [j], bb);      
84                         }
85                         for (j = 0; j < bb->out_count; j++) {
86                                 unlink_target (bb, bb->out_bb [j]);     
87                         }
88                 }
89  
90         }
91 }
92
93
94
95 static void
96 replace_usage (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *inst, MonoInst **stack)
97 {
98         int arity;
99
100         if (!inst)
101                 return;
102
103         arity = mono_burg_arity [inst->opcode];
104
105         if ((inst->ssa_op == MONO_SSA_LOAD || inst->ssa_op == MONO_SSA_ADDRESS_TAKEN) && 
106             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
107                 MonoInst *new_var;
108                 int idx = inst->inst_i0->inst_c0;
109                         
110                 if (stack [idx]) {
111                         new_var = stack [idx];
112                 } else {
113                         new_var = cfg->varinfo [idx];
114
115                         if ((new_var->opcode != OP_ARG) && (new_var->opcode != OP_LOCAL)) {
116                                 /* uninitialized variable ? */
117                                 g_warning ("using uninitialized variables %d in BB%d (%s)", idx, bb->block_num,
118                                            mono_method_full_name (cfg->method, TRUE));
119                                 //g_assert_not_reached ();
120                         }
121                 }
122 #ifdef DEBUG_SSA
123                 printf ("REPLACE BB%d %d %d\n", bb->block_num, idx, new_var->inst_c0);
124 #endif
125                 inst->inst_i0 = new_var;
126         } else {
127
128                 if (arity) {
129                         if (inst->ssa_op != MONO_SSA_STORE)
130                                 replace_usage (cfg, bb, inst->inst_left, stack);
131                         if (arity > 1)
132                                 replace_usage (cfg, bb, inst->inst_right, stack);
133                 }
134         }
135 }
136
137 static int
138 extends_live (MonoInst *inst)
139 {
140         int arity;
141
142         if (!inst)
143                 return 0;
144
145         arity = mono_burg_arity [inst->opcode];
146
147         if (inst->ssa_op == MONO_SSA_LOAD && 
148             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
149                 return 1;
150         } else {
151                 if (arity) {
152                         if (inst->ssa_op != MONO_SSA_STORE)
153                                 if (extends_live (inst->inst_left))
154                                         return 1;
155                         if (arity > 1)
156                                 if (extends_live (inst->inst_right))
157                                         return 1;
158                 }
159         }
160
161         return 0;
162 }
163
164 static int
165 replace_usage_new (MonoCompile *cfg, MonoInst *inst, int varnum, MonoInst *rep)
166 {
167         int arity;
168
169         if (!inst)
170                 return 0;
171
172         arity = mono_burg_arity [inst->opcode];
173
174         if ((inst->ssa_op == MONO_SSA_LOAD) && 
175             (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG) &&
176             inst->inst_i0->inst_c0 == varnum && rep->type == inst->type) {
177                 *inst = *rep;
178                 return 1;
179         } else {
180                 if (arity) {
181                         if (inst->ssa_op != MONO_SSA_STORE)
182                                 if (replace_usage_new (cfg, inst->inst_left, varnum, rep))
183                                         return 1;
184                         if (arity > 1)
185                                 if (replace_usage_new (cfg, inst->inst_right, varnum, rep))
186                                         return 1;
187                 }
188         }
189
190         return 0;
191 }
192
193 static void
194 mono_ssa_rename_vars (MonoCompile *cfg, int max_vars, MonoBasicBlock *bb, MonoInst **stack) 
195 {
196         MonoInst *inst, *new_var;
197         int i, j, idx;
198         GList *tmp;
199         MonoInst **new_stack;
200
201 #ifdef DEBUG_SSA
202         printf ("RENAME VARS BB%d %s\n", bb->block_num, mono_method_full_name (cfg->method, TRUE));
203 #endif
204
205         for (inst = bb->code; inst; inst = inst->next) {
206                 if (inst->opcode != OP_PHI)
207                         replace_usage (cfg, bb, inst, stack);
208
209                 if (inst->ssa_op == MONO_SSA_STORE && 
210                     (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
211                         idx = inst->inst_i0->inst_c0;
212                         g_assert (idx < max_vars);
213
214                         if ((!stack [idx]) && (bb == cfg->bb_init) && (inst->inst_i0->opcode != OP_ARG)) {
215                                 new_var = cfg->varinfo [idx];
216                         } else {
217                                 new_var = mono_compile_create_var (cfg, inst->inst_i0->inst_vtype,  inst->inst_i0->opcode);
218                                 new_var->flags = inst->inst_i0->flags;
219                         }
220 #ifdef DEBUG_SSA
221                         printf ("DEF %d %d\n", idx, new_var->inst_c0);
222 #endif
223                         inst->inst_i0 = new_var;
224
225 #ifdef USE_ORIGINAL_VARS
226                         cfg->vars [new_var->inst_c0]->reg = idx;
227 #endif
228
229                         stack [idx] = new_var;
230                 }
231         }
232
233         for (i = 0; i < bb->out_count; i++) {
234                 MonoBasicBlock *n = bb->out_bb [i];
235
236                 for (j = 0; j < n->in_count; j++)
237                         if (n->in_bb [j] == bb)
238                                 break;
239                 
240                 for (inst = n->code; inst; inst = inst->next) {
241                         if (inst->ssa_op == MONO_SSA_STORE && inst->inst_i1->opcode == OP_PHI) {
242                                 idx = inst->inst_i1->inst_c0;
243                                 if (stack [idx])
244                                         new_var = stack [idx];
245                                 else
246                                         new_var = cfg->varinfo [idx];
247 #ifdef DEBUG_SSA
248                                 printf ("FOUND PHI %d (%d, %d)\n", idx, j, new_var->inst_c0);
249 #endif
250                                 inst->inst_i1->inst_phi_args [j + 1] = new_var->inst_c0;
251                                 
252                         }
253                 }
254         }
255
256         if (bb->dominated) {
257                 new_stack = g_new (MonoInst*, max_vars);
258                 for (tmp = bb->dominated; tmp; tmp = tmp->next) {
259                         memcpy (new_stack, stack, sizeof (MonoInst *) * max_vars); 
260                         mono_ssa_rename_vars (cfg, max_vars, (MonoBasicBlock *)tmp->data, new_stack);
261                 }
262                 g_free (new_stack);
263         }
264 }
265
266 void
267 mono_ssa_compute (MonoCompile *cfg)
268 {
269         int i, idx;
270         MonoBitSet *set;
271         MonoMethodVar *vinfo = g_new0 (MonoMethodVar, cfg->num_varinfo);
272         MonoInst *inst, *store, **stack;
273
274         g_assert (!(cfg->comp_done & MONO_COMP_SSA));
275
276         /* we dont support methods containing exception clauses */
277         g_assert (mono_method_get_header (cfg->method)->num_clauses == 0);
278         g_assert (!cfg->disable_ssa);
279
280         //printf ("COMPUTS SSA %s %d\n", mono_method_full_name (cfg->method, TRUE), cfg->num_varinfo);
281
282 #ifdef CREATE_PRUNED_SSA
283         /* we need liveness for pruned SSA */
284         if (!(cfg->comp_done & MONO_COMP_LIVENESS))
285                 mono_analyze_liveness (cfg);
286 #endif
287
288         mono_compile_dominator_info (cfg, MONO_COMP_DOM | MONO_COMP_IDOM | MONO_COMP_DFRONTIER);
289
290         for (i = 0; i < cfg->num_varinfo; ++i) {
291                 vinfo [i].def_in = mono_bitset_new (cfg->num_bblocks, 0);
292                 vinfo [i].idx = i;
293                 /* implizit reference at start */
294                 mono_bitset_set (vinfo [i].def_in, 0);
295         }
296         for (i = 0; i < cfg->num_bblocks; ++i) {
297                 for (inst = cfg->bblocks [i]->code; inst; inst = inst->next) {
298                         if (inst->ssa_op == MONO_SSA_STORE) {
299                                 idx = inst->inst_i0->inst_c0;
300                                 g_assert (idx < cfg->num_varinfo);
301                                 mono_bitset_set (vinfo [idx].def_in, i);
302                         } 
303                 }
304         }
305
306         /* insert phi functions */
307         for (i = 0; i < cfg->num_varinfo; ++i) {
308                 set = mono_compile_iterated_dfrontier (cfg, vinfo [i].def_in);
309                 vinfo [i].dfrontier = set;
310                 mono_bitset_foreach_bit (set, idx, cfg->num_bblocks) {
311                         MonoBasicBlock *bb = cfg->bblocks [idx];
312
313                         /* fixme: create pruned SSA? we would need liveness information for that */
314
315                         if (bb == cfg->bb_exit)
316                                 continue;
317
318                         if ((cfg->comp_done & MONO_COMP_LIVENESS) && !mono_bitset_test_fast (bb->live_in_set, i)) {
319                                 //printf ("%d is not live in BB%d %s\n", i, bb->block_num, mono_method_full_name (cfg->method, TRUE));
320                                 continue;
321                         }
322
323                         NEW_PHI (cfg, inst, i);
324
325                         inst->inst_phi_args =  mono_mempool_alloc0 (cfg->mempool, sizeof (int) * (cfg->bblocks [idx]->in_count + 1));
326                         inst->inst_phi_args [0] = cfg->bblocks [idx]->in_count;
327
328                         store = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));
329                         if (!cfg->varinfo [i]->inst_vtype->type)
330                                 g_assert_not_reached ();
331                         store->opcode = mono_type_to_stind (cfg->varinfo [i]->inst_vtype);
332                         store->ssa_op = MONO_SSA_STORE;
333                         store->inst_i0 = cfg->varinfo [i];
334                         store->inst_i1 = inst;
335                         store->klass = store->inst_i0->klass;
336              
337                         store->next = bb->code;
338                         bb->code = store;
339                         if (!bb->last_ins)
340                                 bb->last_ins = bb->code;
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_ADDRESS_TAKEN || 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_ADDRESS_TAKEN) && 
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) && (a >= 0) && (a < GPOINTER_TO_INT (inst->klass))) {
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                 int cases = GPOINTER_TO_INT (inst->klass);
947
948                 r1 = evaluate_const_tree (cfg, inst->inst_left, &a, carray);
949                 if ((r1 == 1) && ((a < 0) || (a >= cases)))
950                         r1 = 2;
951                 if (r1 == 1) {
952                         MonoBasicBlock *tb = inst->inst_many_bb [a];
953                         if (!(tb->flags &  BB_REACHABLE)) {
954                                 tb->flags |= BB_REACHABLE;
955                                 *bblist = g_list_prepend (*bblist, tb);
956                         }
957                 } else if (r1 == 2) {
958                         for (i = GPOINTER_TO_INT (inst->klass); i >= 0; i--) {
959                                 MonoBasicBlock *tb = inst->inst_many_bb [i];
960                                 if (!(tb->flags &  BB_REACHABLE)) {
961                                         tb->flags |= BB_REACHABLE;
962                                         *bblist = g_list_prepend (*bblist, tb);
963                                 }
964                         }
965                 }
966         } else if ((inst->opcode >= CEE_BEQ && inst->opcode <= CEE_BLT_UN) &&
967             ((inst->inst_i0->opcode == OP_COMPARE) || (inst->inst_i0->opcode == OP_LCOMPARE))) {
968                 int a, b, r1, r2;
969                 MonoInst *v0 = inst->inst_i0->inst_i0;
970                 MonoInst *v1 = inst->inst_i0->inst_i1;
971
972                 r1 = evaluate_const_tree (cfg, v0, &a, carray);
973                 r2 = evaluate_const_tree (cfg, v1, &b, carray);
974
975                 if (r1 == 1 && r2 == 1) {
976                         MonoBasicBlock *target;
977                                 
978                         if (simulate_compare (inst->opcode, a, b)) {
979                                 target = inst->inst_true_bb;
980                         } else {
981                                 target = inst->inst_false_bb;
982                         }
983                         if (!(target->flags &  BB_REACHABLE)) {
984                                 target->flags |= BB_REACHABLE;
985                                 *bblist = g_list_prepend (*bblist, target);
986                         }
987                 } else if (r1 == 2 || r2 == 2) {
988                         if (!(inst->inst_true_bb->flags &  BB_REACHABLE)) {
989                                 inst->inst_true_bb->flags |= BB_REACHABLE;
990                                 *bblist = g_list_prepend (*bblist, inst->inst_true_bb);
991                         }
992                         if (!(inst->inst_false_bb->flags &  BB_REACHABLE)) {
993                                 inst->inst_false_bb->flags |= BB_REACHABLE;
994                                 *bblist = g_list_prepend (*bblist, inst->inst_false_bb);
995                         }
996                 }       
997         } else if (inst->ssa_op == MONO_SSA_STORE && 
998                    (inst->inst_i0->opcode == OP_LOCAL || inst->inst_i0->opcode == OP_ARG)) {
999                 MonoMethodVar *info = cfg->vars [inst->inst_i0->inst_c0];
1000                 MonoInst *i1 = inst->inst_i1;
1001                 int res;
1002                 
1003                 if (info->cpstate < 2) {
1004                         if (i1->opcode == OP_ICONST) { 
1005                                 change_varstate (cfg, cvars, info, 1, i1, carray);
1006                         } else if (i1->opcode == OP_PHI) {
1007                                 MonoInst *c0 = NULL;
1008                                 int j;
1009
1010                                 for (j = 1; j <= i1->inst_phi_args [0]; j++) {
1011                                         MonoMethodVar *mv = cfg->vars [i1->inst_phi_args [j]];
1012                                         MonoInst *src = mv->def;
1013
1014                                         if (mv->def_bb && !(mv->def_bb->flags & BB_REACHABLE)) {
1015                                                 continue;
1016                                         }
1017
1018                                         if (!mv->def || !src || src->ssa_op != MONO_SSA_STORE ||
1019                                             !(src->inst_i0->opcode == OP_LOCAL || src->inst_i0->opcode == OP_ARG) ||
1020                                             mv->cpstate == 2) {
1021                                                 change_varstate (cfg, cvars, info, 2, NULL, carray);
1022                                                 break;
1023                                         }
1024                                         
1025                                         if (mv->cpstate == 0)
1026                                                 continue;
1027
1028                                         //g_assert (src->inst_i1->opcode == OP_ICONST);
1029                                         g_assert (carray [mv->idx]);
1030
1031                                         if (!c0) {
1032                                                 c0 = carray [mv->idx];
1033                                         }
1034                                         
1035                                         if (carray [mv->idx]->inst_c0 != c0->inst_c0) {
1036                                                 change_varstate (cfg, cvars, info, 2, NULL, carray);
1037                                                 break;
1038                                         }
1039                                 }
1040                                 
1041                                 if (c0 && info->cpstate < 1) {
1042                                         change_varstate (cfg, cvars, info, 1, c0, carray);
1043                                 }
1044                         } else {
1045                                 int state = evaluate_const_tree (cfg, i1, &res, carray);
1046                                 if (state == 1) {
1047                                         NEW_ICONST (cfg, i1, res);
1048                                         change_varstate (cfg, cvars, info, 1, i1, carray);
1049                                 } else {
1050                                         change_varstate (cfg, cvars, info, 2, NULL, carray);
1051                                 }
1052                         }
1053                 }
1054         }
1055 }
1056
1057 void
1058 mono_ssa_cprop (MonoCompile *cfg) 
1059 {
1060         MonoInst **carray;
1061         MonoBasicBlock *bb;
1062         GList *bblock_list, *cvars;
1063         GList *tmp;
1064         int i;
1065         //printf ("SIMPLE OPTS BB%d %s\n", bb->block_num, mono_method_full_name (cfg->method, TRUE));
1066
1067         carray = g_new0 (MonoInst*, cfg->num_varinfo);
1068
1069         if (!(cfg->comp_done & MONO_COMP_SSA_DEF_USE))
1070                 mono_ssa_create_def_use (cfg);
1071
1072         bblock_list = g_list_prepend (NULL, cfg->bb_entry);
1073         cfg->bb_entry->flags |= BB_REACHABLE;
1074
1075         memset (carray, 0, sizeof (MonoInst *) * cfg->num_varinfo);
1076
1077         for (i = 0; i < cfg->num_varinfo; i++) {
1078                 MonoMethodVar *info = cfg->vars [i];
1079                 if (!info->def)
1080                         info->cpstate = 2;
1081         }
1082
1083         cvars = NULL;
1084
1085         while (bblock_list) {
1086                 MonoInst *inst;
1087
1088                 bb = (MonoBasicBlock *)bblock_list->data;
1089
1090                 bblock_list = g_list_delete_link (bblock_list, bblock_list);
1091
1092                 g_assert (bb->flags &  BB_REACHABLE);
1093
1094                 if (bb->out_count == 1) {
1095                         if (!(bb->out_bb [0]->flags &  BB_REACHABLE)) {
1096                                 bb->out_bb [0]->flags |= BB_REACHABLE;
1097                                 bblock_list = g_list_prepend (bblock_list, bb->out_bb [0]);
1098                         }
1099                 }
1100
1101                 for (inst = bb->code; inst; inst = inst->next) {
1102                         visit_inst (cfg, bb, inst, &cvars, &bblock_list, carray);
1103                 }
1104
1105                 while (cvars) {
1106                         MonoMethodVar *info = (MonoMethodVar *)cvars->data;                     
1107                         cvars = g_list_delete_link (cvars, cvars);
1108
1109                         for (tmp = info->uses; tmp; tmp = tmp->next) {
1110                                 MonoVarUsageInfo *ui = (MonoVarUsageInfo *)tmp->data;
1111                                 if (!(ui->bb->flags & BB_REACHABLE))
1112                                         continue;
1113                                 visit_inst (cfg, ui->bb, ui->inst, &cvars, &bblock_list, carray);
1114                         }
1115                 }
1116         }
1117
1118         for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
1119                 MonoInst *inst;
1120                 for (inst = bb->code; inst; inst = inst->next) {
1121                         fold_tree (cfg, bb, inst, carray);
1122                 }
1123         }
1124
1125         g_free (carray);
1126
1127         cfg->comp_done |= MONO_COMP_REACHABILITY;
1128 }
1129
1130 static void
1131 add_to_dce_worklist (MonoCompile *cfg, MonoMethodVar *var, MonoMethodVar *use, GList **wl)
1132 {
1133         GList *tmp;
1134
1135         *wl = g_list_prepend (*wl, use);
1136
1137         for (tmp = use->uses; tmp; tmp = tmp->next) {
1138                 MonoVarUsageInfo *ui = (MonoVarUsageInfo *)tmp->data;
1139                 if (ui->inst == var->def) {
1140                         /* from the mempool */
1141                         use->uses = g_list_remove_link (use->uses, tmp);
1142                         break;
1143                 }
1144         }       
1145 }
1146
1147 void
1148 mono_ssa_deadce (MonoCompile *cfg) 
1149 {
1150         int i;
1151         GList *work_list;
1152
1153         g_assert (cfg->comp_done & MONO_COMP_SSA);
1154
1155         //printf ("DEADCE %s\n", mono_method_full_name (cfg->method, TRUE));
1156
1157         /* fixme: we should update usage infos during cprop, instead of computing it again */
1158         cfg->comp_done &=  ~MONO_COMP_SSA_DEF_USE;
1159         for (i = 0; i < cfg->num_varinfo; i++) {
1160                 MonoMethodVar *info = cfg->vars [i];
1161                 info->def = NULL;
1162                 info->uses = NULL;
1163         }
1164
1165         if (!(cfg->comp_done & MONO_COMP_SSA_DEF_USE))
1166                 mono_ssa_create_def_use (cfg);
1167
1168         mono_ssa_avoid_copies (cfg);
1169
1170         work_list = NULL;
1171         for (i = 0; i < cfg->num_varinfo; i++) {
1172                 MonoMethodVar *info = cfg->vars [i];
1173                 work_list = g_list_prepend (work_list, info);
1174                 
1175                 //if ((info->def != NULL) && (info->def->inst_i1->opcode != OP_PHI)) printf ("SSA DEADCE TOTAL LOCAL\n");
1176         }
1177
1178         while (work_list) {
1179                 MonoMethodVar *info = (MonoMethodVar *)work_list->data;
1180                 work_list = g_list_delete_link (work_list, work_list);
1181
1182                 if (!info->uses && info->def && (!(cfg->varinfo [info->idx]->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)))) {
1183                         MonoInst *i1;
1184                         //printf ("ELIMINATE %s: ", mono_method_full_name (cfg->method, TRUE)); mono_print_tree (info->def); printf ("\n");
1185
1186                         i1 = info->def->inst_i1;
1187                         if (i1->opcode == OP_PHI) {
1188                                 int j;
1189                                 for (j = i1->inst_phi_args [0]; j > 0; j--) {
1190                                         MonoMethodVar *u = cfg->vars [i1->inst_phi_args [j]];
1191                                         add_to_dce_worklist (cfg, info, u, &work_list);
1192                                 }
1193                         } else if (i1->ssa_op == MONO_SSA_LOAD &&
1194                                    (i1->inst_i0->opcode == OP_LOCAL || i1->inst_i0->opcode == OP_ARG)) {
1195                                         MonoMethodVar *u = cfg->vars [i1->inst_i0->inst_c0];
1196                                         add_to_dce_worklist (cfg, info, u, &work_list);
1197                         }
1198                         //if (i1->opcode != OP_PHI) printf ("SSA DEADCE DEAD LOCAL\n");
1199
1200                         info->def->opcode = CEE_NOP;
1201                         info->def->ssa_op = MONO_SSA_NOP;
1202                 }
1203
1204         }
1205 }
1206
1207 #if 0
1208 void
1209 mono_ssa_strength_reduction (MonoCompile *cfg)
1210 {
1211         MonoBasicBlock *bb;
1212         int i;
1213
1214         g_assert (cfg->comp_done & MONO_COMP_SSA);
1215         g_assert (cfg->comp_done & MONO_COMP_LOOPS);
1216         g_assert (cfg->comp_done & MONO_COMP_SSA_DEF_USE);
1217
1218         for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
1219                 GList *lp = bb->loop_blocks;
1220
1221                 if (lp) {
1222                         MonoBasicBlock *h = (MonoBasicBlock *)lp->data;
1223
1224                         /* we only consider loops with 2 in bblocks */
1225                         if (!h->in_count == 2)
1226                                 continue;
1227
1228                         for (i = 0; i < cfg->num_varinfo; i++) {
1229                                 MonoMethodVar *info = cfg->vars [i];
1230                         
1231                                 if (info->def && info->def->ssa_op == MONO_SSA_STORE &&
1232                                     info->def->inst_i0->opcode == OP_LOCAL && g_list_find (lp, info->def_bb)) {
1233                                         MonoInst *v = info->def->inst_i1;
1234
1235
1236                                         printf ("FOUND %d in %s\n", info->idx, mono_method_full_name (cfg->method, TRUE));
1237                                 }
1238                         }
1239                 }
1240         }
1241 }
1242 #endif