aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/cil32/cil-lower.c
blob: 639cec54102b27f812de748e230df4bdfc9000f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
/* CIL IR lowering.

   Copyright (C) 2009-2010 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.

Author:
   Andrea C. Ornstein
   Erven Rohou
   Gabriele Svelto

Contact information at STMicroelectronics:
Andrea C. Ornstein      <andrea.ornstein@st.com>
Contact information at INRIA:
Erven Rohou             <erven.rohou@inria.fr>
*/

#include <stdio.h>

#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "timevar.h"
#include "errors.h"
#include "real.h"
#include "tree.h"
#include "tree-pass.h"

#include "cil-builtins.h"
#include "cil-refs.h"
#include "cil-stack.h"
#include "cil-stmt.h"
#include "cil-types.h"

/******************************************************************************
 * Globals                                                                    *
 ******************************************************************************/

enum simd_backend simd_type = UNDEF_SIMD;

/******************************************************************************
 * Local function prototypes                                                  *
 ******************************************************************************/

static bool lower_cil_gate (void);
static unsigned int lower_cil (void);

static cil_stmt lower_cil_vector_ctor (const_cil_stmt);
static cil_stmt lower_cil_ldvec (const_cil_stmt);
static cil_stmt lower_cil_stvec (const_cil_stmt);
static cil_stmt lower_cil_vector_add (cil_type_t);
static cil_stmt lower_cil_vector_sub (cil_type_t);
static cil_stmt lower_cil_vector_and (cil_type_t);
static cil_stmt lower_cil_vector_or (cil_type_t);
static cil_stmt lower_cil_vector_xor (cil_type_t);

/******************************************************************************
 * Vector lowering functions                                                  *
 ******************************************************************************/

/* Lower a generic CIL vector constructor CTOR to a type-specific vector
   constructor depending on the vector type.  Return the replacement
   statement.  */

static cil_stmt
lower_cil_vector_ctor (const_cil_stmt ctor)
{
  enum cil32_builtin builtin;
  tree type = cil_type (ctor);
  cil_type_t cil_type = vector_to_cil (type);

  /* Depending on the chosen back end, a VEC_CTOR node translates to different
     constructs. In the case of GCC_SIMD, it is a call to the static method,
     in the case of MONO_SIMD, it is a newobj statement.  */

  if (simd_type == GCC_SIMD)
    {
      if (cil_short_ctor (ctor))
        {
          switch (cil_type)
            {
              /* 16-byte */
            case CIL_V2DI: builtin = CIL32_GCC_V2DI_CTOR_U; break;
            case CIL_V4SI: builtin = CIL32_GCC_V4SI_CTOR_U; break;
            case CIL_V8HI: builtin = CIL32_GCC_V8HI_CTOR_U; break;
            case CIL_V16QI: builtin = CIL32_GCC_V16QI_CTOR_U; break;
            case CIL_V2DF: builtin = CIL32_GCC_V2DF_CTOR_U; break;
            case CIL_V4SF: builtin = CIL32_GCC_V4SF_CTOR_U; break;
              /* 8-byte */
            case CIL_V2SI: builtin = CIL32_GCC_V2SI_CTOR_U; break;
            case CIL_V4HI: builtin = CIL32_GCC_V4HI_CTOR_U; break;
            case CIL_V8QI: builtin = CIL32_GCC_V8QI_CTOR_U; break;
            case CIL_V2SF: builtin = CIL32_GCC_V2SF_CTOR_U; break;
            default:
              internal_error ("Vector type expected, seen %d", cil_type);
            }
        }
      else
        {
          switch (cil_type)
            {
              /* 16-byte */
            case CIL_V2DI: builtin = CIL32_GCC_V2DI_CTOR; break;
            case CIL_V4SI: builtin = CIL32_GCC_V4SI_CTOR; break;
            case CIL_V8HI: builtin = CIL32_GCC_V8HI_CTOR; break;
            case CIL_V16QI: builtin = CIL32_GCC_V16QI_CTOR; break;
            case CIL_V2DF: builtin = CIL32_GCC_V2DF_CTOR; break;
            case CIL_V4SF: builtin = CIL32_GCC_V4SF_CTOR; break;
              /* 8-byte */
            case CIL_V2SI: builtin = CIL32_GCC_V2SI_CTOR; break;
            case CIL_V4HI: builtin = CIL32_GCC_V4HI_CTOR; break;
            case CIL_V8QI: builtin = CIL32_GCC_V8QI_CTOR; break;
            case CIL_V2SF: builtin = CIL32_GCC_V2SF_CTOR; break;
            default:
              internal_error ("Vector type expected, seen %d", cil_type);
            }
        }
      return cil_build_call (cil32_builtins[builtin]);
    }
  else  /* simd_type == MONO_SIMD */
    {
      if (cil_short_ctor (ctor))
        {
          switch (cil_type)
            {
              /* No 8-byte support in Mono.Simd. Error/warning?  */

            case CIL_V2DI: builtin = CIL32_MONO_V2DI_CTOR_U; break;
            case CIL_V4SI: builtin = CIL32_MONO_V4SI_CTOR_U; break;
            case CIL_V8HI: builtin = CIL32_MONO_V8HI_CTOR_U; break;
            case CIL_V16QI: builtin = CIL32_MONO_V16QI_CTOR_U; break;
            case CIL_V2DF: builtin = CIL32_MONO_V2DF_CTOR_U; break;
            case CIL_V4SF: builtin = CIL32_MONO_V4SF_CTOR_U; break;
            default:
              internal_error ("Vector type expected, seen %d", cil_type);
            }
        }
      else
        {
          switch (cil_type)
            {
              /* No 8-byte support in Mono.Simd. Error/warning?  */

            case CIL_V2DI: builtin = CIL32_MONO_V2DI_CTOR; break;
            case CIL_V4SI: builtin = CIL32_MONO_V4SI_CTOR; break;
            case CIL_V8HI: builtin = CIL32_MONO_V8HI_CTOR; break;
            case CIL_V16QI: builtin = CIL32_MONO_V16QI_CTOR; break;
            case CIL_V2DF: builtin = CIL32_MONO_V2DF_CTOR; break;
            case CIL_V4SF: builtin = CIL32_MONO_V4SF_CTOR; break;
            default:
              internal_error ("Vector type expected, seen %d", cil_type);
            }
        }
      return cil_build_newobj (cil32_builtins[builtin]);
    }
}

/* Lower a generic CIL vector load STMT to a type-specific vector load
   depending on the vector type.  Return the replacement statement.  */

static cil_stmt
lower_cil_ldvec (const_cil_stmt stmt)
{
  enum cil32_builtin builtin;
  tree type = cil_type (stmt);
  cil_type_t cil_type = vector_to_cil (type);

  /* The MONO_SIMD back end has support for aligned accesses.  */
  if ((simd_type == MONO_SIMD) && (cil_prefix_unaligned (stmt) == 0))
    {
      switch (cil_type)
	{
	case CIL_V2DF: builtin = CIL32_MONO_V2DF_LOAD_ALIGNED; break;
	case CIL_V4SF: builtin = CIL32_MONO_V4SF_LOAD_ALIGNED; break;
	case CIL_V2DI: builtin = CIL32_MONO_V2DI_LOAD_ALIGNED; break;
	case CIL_V4SI: builtin = CIL32_MONO_V4SI_LOAD_ALIGNED; break;
	case CIL_V8HI: builtin = CIL32_MONO_V8HI_LOAD_ALIGNED; break;
	case CIL_V16QI: builtin = CIL32_MONO_V16QI_LOAD_ALIGNED; break;
	default:
	  gcc_unreachable ();
	}

      return cil_build_call (cil32_builtins[builtin]);
    }
  else
    return cil_build_stmt_arg (CIL_LDOBJ, type);
}

/* Lower a generic CIL vector store STMT to a type-specific vector store
   depending on the vector type.  Return the replacement statement.  */

static cil_stmt
lower_cil_stvec (const_cil_stmt stmt)
{
  enum cil32_builtin builtin;
  tree type = cil_type (stmt);
  cil_type_t cil_type = vector_to_cil (type);

  /* The MONO_SIMD back end has support for aligned accesses.  */
  if ((simd_type == MONO_SIMD) && (cil_prefix_unaligned (stmt) == 0))
    {
      switch (cil_type)
	{
	case CIL_V2DF: builtin = CIL32_MONO_V2DF_STORE_ALIGNED; break;
	case CIL_V4SF: builtin = CIL32_MONO_V4SF_STORE_ALIGNED; break;
	case CIL_V2DI: builtin = CIL32_MONO_V2DI_STORE_ALIGNED; break;
	case CIL_V4SI: builtin = CIL32_MONO_V4SI_STORE_ALIGNED; break;
	case CIL_V8HI: builtin = CIL32_MONO_V8HI_STORE_ALIGNED; break;
	case CIL_V16QI: builtin = CIL32_MONO_V16QI_STORE_ALIGNED; break;
	default:
	  gcc_unreachable ();
	}

      return cil_build_call (cil32_builtins[builtin]);
    }
  else
    return cil_build_stmt_arg (CIL_STOBJ, type);
}

/* Lower a generic CIL vector addition on the vector type represented by TYPE
   to a type-specific vector addition depending on the vector type.  Return
   the replacement statement.  */

static cil_stmt
lower_cil_vector_add (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SF: builtin = CIL32_GCC_V2SF_ADD; break;
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_ADD; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_ADD; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_ADD; break;

      case CIL_V2DF: builtin = CIL32_GCC_V2DF_ADD; break;
      case CIL_V4SF: builtin = CIL32_GCC_V4SF_ADD; break;
      case CIL_V2DI: builtin = CIL32_GCC_V2DI_ADD; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_ADD; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_ADD; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_ADD; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DF: builtin = CIL32_MONO_V2DF_ADD; break;
      case CIL_V4SF: builtin = CIL32_MONO_V4SF_ADD; break;
      case CIL_V2DI: builtin = CIL32_MONO_V2DI_ADD; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_ADD; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_ADD; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_ADD; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/* Lower a generic CIL vector substraction on the vector type represented by
   TYPE to a type-specific vector substraction depending on the vector type.
   Return the replacement statement.  */

static cil_stmt
lower_cil_vector_sub (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SF: builtin = CIL32_GCC_V2SF_SUB; break;
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_SUB; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_SUB; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_SUB; break;

      case CIL_V2DF: builtin = CIL32_GCC_V2DF_SUB; break;
      case CIL_V4SF: builtin = CIL32_GCC_V4SF_SUB; break;
      case CIL_V2DI: builtin = CIL32_GCC_V2DI_SUB; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_SUB; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_SUB; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_SUB; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DF: builtin = CIL32_MONO_V2DF_SUB; break;
      case CIL_V4SF: builtin = CIL32_MONO_V4SF_SUB; break;
      case CIL_V2DI: builtin = CIL32_MONO_V2DI_SUB; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_SUB; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_SUB; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_SUB; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/* Lower a generic CIL vector multiply on the vector type represented by
   TYPE to a type-specific vector substraction depending on the vector type.
   Return the replacement statement.  */

static cil_stmt
lower_cil_vector_mul (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SF: builtin = CIL32_GCC_V2SF_MUL; break;
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_MUL; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_MUL; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_MUL; break;

      case CIL_V2DF: builtin = CIL32_GCC_V2DF_MUL; break;
      case CIL_V4SF: builtin = CIL32_GCC_V4SF_MUL; break;
      case CIL_V2DI: builtin = CIL32_GCC_V2DI_MUL; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_MUL; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_MUL; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_MUL; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DF: builtin = CIL32_MONO_V2DF_MUL; break;
      case CIL_V4SF: builtin = CIL32_MONO_V4SF_MUL; break;
      case CIL_V2DI: builtin = CIL32_MONO_V2DI_MUL; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_MUL; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_MUL; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_MUL; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/* Lower a generic CIL vector logical AND on the vector type represented by
   TYPE to a type-specific vector logical AND depending on the vector type.
   Return the replacement statement.  */

static cil_stmt
lower_cil_vector_and (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_AND; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_AND; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_AND; break;

      case CIL_V2DI: builtin = CIL32_GCC_V2DI_AND; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_AND; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_AND; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_AND; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DI: builtin = CIL32_MONO_V2DI_AND; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_AND; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_AND; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_AND; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/* Lower a generic CIL vector logical OR on the vector type represented by
   TYPE to a type-specific vector logical OR depending on the vector type.
   Return the replacement statement.  */

static cil_stmt
lower_cil_vector_or (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_OR; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_OR; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_OR; break;

      case CIL_V2DI: builtin = CIL32_GCC_V2DI_OR; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_OR; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_OR; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_OR; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DI: builtin = CIL32_MONO_V2DI_OR; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_OR; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_OR; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_OR; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/* Lower a generic CIL vector logical XOR on the vector type represented by
   TYPE to a type-specific vector logical XOR depending on the vector type.
   Return the replacement statement.  */

static cil_stmt
lower_cil_vector_xor (cil_type_t type)
{
  enum cil32_builtin builtin;

  if (simd_type == GCC_SIMD)
    switch (type)
      {
      case CIL_V2SI: builtin = CIL32_GCC_V2SI_XOR; break;
      case CIL_V4HI: builtin = CIL32_GCC_V4HI_XOR; break;
      case CIL_V8QI: builtin = CIL32_GCC_V8QI_XOR; break;

      case CIL_V2DI: builtin = CIL32_GCC_V2DI_XOR; break;
      case CIL_V4SI: builtin = CIL32_GCC_V4SI_XOR; break;
      case CIL_V8HI: builtin = CIL32_GCC_V8HI_XOR; break;
      case CIL_V16QI: builtin = CIL32_GCC_V16QI_XOR; break;
      default:
        gcc_unreachable ();
      }
  else
    switch (type)
      {
        /* No 8-byte support in Mono.Simd. Error/warning?  */

      case CIL_V2DI: builtin = CIL32_MONO_V2DI_XOR; break;
      case CIL_V4SI: builtin = CIL32_MONO_V4SI_XOR; break;
      case CIL_V8HI: builtin = CIL32_MONO_V8HI_XOR; break;
      case CIL_V16QI: builtin = CIL32_MONO_V16QI_XOR; break;
      default:
        gcc_unreachable ();
      }

  return cil_build_call (cil32_builtins[builtin]);
}

/******************************************************************************
 * Helper functions used in other passes                                      *
 ******************************************************************************/

void
cil_lower_init (cil_seq init_seq)
{
  cil_stmt_iterator csi = csi_start (init_seq);

  while (!csi_end_p (csi))
    {
      cil_stmt stmt = csi_stmt (csi);
      enum cil_opcode opcode = cil_opcode (stmt);

      switch (opcode)
	{
	case CIL_VEC_CTOR:
	  stmt = lower_cil_vector_ctor (stmt);
	  csi_replace (&csi, stmt);
	  break;

	case CIL_LDVEC:
	  stmt = lower_cil_ldvec (stmt);
	  csi_replace (&csi, stmt);
	  break;

	case CIL_STVEC:
	  stmt = lower_cil_stvec (stmt);
	  csi_replace (&csi, stmt);
	  break;

	default:
	  ;
	}

      csi_next (&csi);
    }
}

/******************************************************************************
 * Entry point of the CIL lowering pass.                                      *
 ******************************************************************************/

/* This function scans the IR and looks for specific opcodes related to vector
   types that need to be lowered. These opcodes are the constructor, loads and
   stores, and arithmetic.  */
static unsigned int
lower_cil (void)
{
  basic_block bb;
  cil_stmt_iterator csi;
  cil_bb_stacks bbs;
  cil_stack stack;
  cil_type_t top;

  /* We need to compute the stack to be able to catch arithmetic nodes
     operating on vector types.  */
  bbs = cil_bb_stacks_create ();

  FOR_EACH_BB (bb)
    {
      stack = cil_stack_for_bb (bbs, bb);
      csi = csi_start_bb (bb);

      while (!csi_end_p (csi))
	{
	  cil_stmt stmt = csi_stmt (csi);
	  enum cil_opcode opcode = cil_opcode (stmt);

	  switch (opcode)
	    {
	    case CIL_VEC_CTOR:
	      stmt = lower_cil_vector_ctor (stmt);
	      csi_replace (&csi, stmt);
	      cil_stack_after_stmt (stack, stmt);
	      break;

	    case CIL_LDVEC:
	      /* Process the stack now. After expansion, the return type is
		 going to be an opaque valuetype.  */
	      cil_stack_after_stmt (stack, stmt);
	      stmt = lower_cil_ldvec (stmt);
	      csi_replace (&csi, stmt);
	      break;

	    case CIL_STVEC:
	      stmt = lower_cil_stvec (stmt);
	      csi_replace (&csi, stmt);
	      cil_stack_after_stmt (stack, stmt);
	      break;

	    case CIL_ADD:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_add (top));

	      break;

	    case CIL_SUB:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_sub (top));

	      break;

	    case CIL_MUL:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_mul (top));

	      break;

	    case CIL_AND:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_and (top));

	      break;

	    case CIL_OR:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_or (top));

	      break;

	    case CIL_XOR:
	      top = cil_stack_top (stack);
	      cil_stack_after_stmt (stack, stmt);

	      if (cil_vector_p (top))
		csi_replace (&csi, lower_cil_vector_xor (top));

	      break;

	    default:
	      cil_stack_after_stmt (stack, stmt);
	      break;
	    }

	  csi_next (&csi);
	}
    }
  return 0;
}


/* Gate function of the CIL lowering pass.  */

static bool
lower_cil_gate (void)
{
  /* FIXME: should lower only if vector types are handled in this funtion. */
  return true;
}


/* Define the parameters of the CIL lowering pass.  */

struct gimple_opt_pass pass_lower_cil =
{
 {
  GIMPLE_PASS,                          /* type */
  "lowercil",                           /* name */
  lower_cil_gate,                       /* gate */
  lower_cil,                            /* execute */
  NULL,                                 /* sub */
  NULL,                                 /* next */
  0,                                    /* static_pass_number */
  TV_LOWER_CIL,                         /* tv_id */
  PROP_cfg|PROP_cil,                    /* properties_required */
  0,                                    /* properties_provided */
  0,                                    /* properties_destroyed */
  0,                                    /* todo_flags_start */
  TODO_dump_func                        /* todo_flags_finish */
 }
};

/*
 * Local variables:
 * eval: (c-set-style "gnu")
 * End:
 */