aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-crc-optimization.cc
blob: e57b3bc71afd20aa438d88116fa7bb35d513b02c (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
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
/* CRC optimization.
   Copyright (C) 2006-2022 Free Software Foundation, Inc.
   Contributed by Mariam Arutunian <mariamarutunian@gmail.com>

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 3, 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 COPYING3.  If not see
<http://www.gnu.org/licenses/>.   */

/* This pass performs crc optimization.  */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "backend.h"
#include "tree.h"
#include "gimple.h"
#include "tree-pass.h"
#include "ssa.h"
#include "gimple-iterator.h"
#include "tree-cfg.h"
#include "tree-ssa-loop-niter.h"
#include "cfgloop.h"
#include "gimple-range.h"
#include "tree-scalar-evolution.h"
#include "hwint.h"
#include "gimple-pretty-print.h"

class crc_optimization {
 private:
  /* shift_before_xor will contain the statement doing shift one operation
     (if exists and satisfies the CRC) before xor operation.  */
  gimple *shift_before_xor;

  /* shift_after_xor will contain the statement doing shift one operation
     (if shift_before_xor doesn't exist and satisfies the CRC) after xor
     operation on the same variable.  */
  gimple *shift_after_xor;

  /* Phi statements result may be the crc variable.  */
  gimple *first_phi_for_crc;

  /* Sometimes polynomial may not be constant
     and xor-ed variable may depend on two variables.
     The result of phi statement may contain the polynomial.  */
  gimple *second_phi_for_crc;

  unsigned HOST_WIDE_INT loop_iteration_number;

  /* Function's return value size.  */
  unsigned HOST_WIDE_INT return_size;

  /* Depending on the value, may be forward or reversed CRC.  */
  bool is_left_shift;

  /* Will be true, if crc variable and if condition depend on each other.  */
  bool crc_if_dep;

  /* If the value is false, then xor operation isn't for CRC calculation,
     otherwise it may calculate CRC.  */
  bool clean_xor_maybe_crc;


  void set_initial_values ()
  {
    shift_before_xor = nullptr;
    shift_after_xor = nullptr;
    first_phi_for_crc = nullptr;
    second_phi_for_crc = nullptr;
    is_left_shift = false;
    crc_if_dep = false;
    clean_xor_maybe_crc = true;
  }

  /* This is the main function which checks whether given function
    calculates CRC and extracts the details of the CRC calculation.
   The main idea is to find innermost loop with 8, 16, 24, 32 iterations.
   Find xor in the loop (xor is the key operation for naive crc calculation).
   Check that before/after being xor-ed the variable is shifted by one.
   Xor must be done under condition of MSB/LSB being 1.  */
  bool function_may_calculate_crc (function *fun);

  /* Checks the loop iteration number.
   The loop for CRC calculation may do 8, 16, 24, 32 iterations.  */
  bool is_loop_of_crc_calculation (class loop *func_loop);

  /* Check whether found xor_stmt is for calculating crc.
   The function fun calculates crc only if there is a shift operation
   in the crc_loop.  */
  bool xor_calculates_crc (function *fun, class loop *crc_loop,
			   const gimple *stmt);

  /* This function goes up through the def-chain of the name,
   until doesn't encounter a phi statement or
   if it does not meet certain conditions
   depending on the passed check_dependency function.
   The check_dependency may be the check_def_stmt_for_xor
   or check_def_stmt_for_if function.  */
  void
  get_dep (tree name, void (crc_optimization::*check_dependency) (tree ssa));

  /* Check whether the statement, dependent from xor's operands,
   does shift operation (for calculating crc)
   or is a phi statement.  */
  void check_def_stmt_for_xor (tree ssa);

  /* Walks through def-chain of if's condition and
   checks whether if's condition and xor-ed variable
   are dependent from the same variable.
   (The crc variable is xor-ed if variable's MSB/LSB is 1).  */
  void check_def_stmt_for_if (tree ssa);

  /* This function checks that xor is done under the condition
   of MSB/LSB being one.
   Checks that if condition's variable and xor-ed variable
   depend on same variable and if there is a shift1 in the same block with xor,
   on the opposite branch must be another shift1 to the same direction.
   xor_bb is the basic block, where xor operation is done.
   pred_bb is the predecessor basic block of the xor_bb,
   it is assumed that the last stmt of pred_bb checks the condition
   under which xor is done.  */
  bool
  crc_cond_and_shift (const basic_block &pred_bb, const basic_block &xor_bb);

  /* This function gets the condition cond and
     returns true if MSB/LSB bit is checked for 1.  */
  static bool cond_true_is_checked_for_bit_one (const gcond *cond);

  /* This functions checks whether the pair of xor's shift exists
     in the given bb.  If there is a shift with xor in the same block,
     then in the opposite block must be another shift.  */
  bool exists_shift_for_opp_xor_shift (basic_block bb);

  /* This function walks through the uses of xor-ed variable
     (within the crc_loop) and checks whether it is shifted one.
     Operations which may corrupt crc value mustn't occur between xor and shift,
     otherwise the loop isn't calculating CRC.  */
  void find_shift_after_xor (class loop *crc_loop, tree lhs);

  bool can_not_be_shift_of_crc (gimple *assign_stmt,
				bool find_shift_before_xor);

  /* Checks whether it's ok that the statement is between shift and xor.
     This check is not that accurate.  But it's enough to filter not CRCs.  */
  static bool is_acceptable_statement (const tree_code &stmt_code);

  /* Get the return value size of the function
     and assign to return_size member.  */
  void get_return_value_size (function *fun);

  /* This function checks whether calculated crc value
     (maybe modified) is returned.
     By walking down through the use-def chain of lhs
     return true if we encounter return statement.  */
  bool returned_value_depends_on_crc (tree lhs);

  /* Prints extracted details of CRC calculation.  */
  void print_crc_information ();

 public:
  unsigned int execute (function *fun);
};


/* Set GIMPLE_PHI and GIMPLE statements of the function not visited.  */

static void
set_all_statements_not_visited (function *fun)
{
  basic_block bb;
  FOR_EACH_BB_FN (bb, fun)
    {
      for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
	   gsi_next (&gsi))
	{
	  gphi *stmt = gsi.phi ();
	  gimple_set_visited (stmt, false);
	}
      for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
	   gsi_next (&gsi))
	{
	  gimple *stmt = gsi_stmt (gsi);
	  gimple_set_visited (stmt, false);
	}
    }
}


/* Prints extracted details of CRC calculation.  */
void
crc_optimization::print_crc_information ()
{
  if (dump_file)
    {
      fprintf (dump_file,
	       "Loop iteration number is %ld."
	       "\nReturn size is %ld\n.",
	       loop_iteration_number, return_size);
      if (is_left_shift)
	fprintf (dump_file, "Bit forward\n");
      else
	fprintf (dump_file, "Bit reversed\n");
    }
}


/* This function checks whether calculated crc value
   (maybe modified) is returned.
   By walking down through the use-def chain of lhs
   return true if we encounter return statement.  */

bool
crc_optimization::returned_value_depends_on_crc (tree lhs)
{
  bool crc_is_returned = false;
  imm_use_iterator imm_iter;
  use_operand_p use_p;
  if (TREE_CODE (lhs) != SSA_NAME)
    return false;

  /* Iterate through the immediate uses of the current variable.
     If we encounter return statement - return true.  */
  FOR_EACH_IMM_USE_FAST (use_p, imm_iter, lhs)
    {
      gimple *stmt = USE_STMT (use_p);
      if (dump_file && (dump_flags & TDF_DETAILS))
	print_gimple_stmt (dump_file, stmt, 0);
      if (gimple_visited_p (stmt))
	return false;

      gimple_set_visited (stmt, true);
      if (gimple_code (stmt) == GIMPLE_RETURN)
	return true;
      else if (gimple_code (stmt) == GIMPLE_PHI)
	crc_is_returned
	    = returned_value_depends_on_crc (gimple_phi_result (stmt));
      else if (is_gimple_assign (stmt))
	crc_is_returned
	    = returned_value_depends_on_crc (gimple_assign_lhs (stmt));
      if (crc_is_returned)
	return true;
    }
  return false;
}


/* Get the return value size of the function
   and assign to return_size member.  */

void
crc_optimization::get_return_value_size (function *fun)
{
  return_size = 0;
  tree tree_return_value_size = DECL_SIZE (DECL_RESULT (fun->decl));
  if (tree_fits_uhwi_p (tree_return_value_size))
    {
      return_size = tree_to_uhwi (tree_return_value_size);
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "Return size is %ld\n", return_size);
    }
}


/* This function walks through the uses of xor-ed variable (within the crc_loop)
   and checks whether it is shifted one.
   Operations which may corrupt crc value mustn't occur between xor and shift,
   otherwise the loop isn't calculating CRC.  */

void
crc_optimization::find_shift_after_xor (class loop *crc_loop, tree lhs)
{
  imm_use_iterator imm_iter;
  use_operand_p use_p;

  if (TREE_CODE (lhs) != SSA_NAME)
    return;

  /* Iterate through the immediate uses of the current variable.
     If there is a shift return true,
     if before shift there is other instruction (besides phi) return false.  */
  FOR_EACH_IMM_USE_FAST (use_p, imm_iter, lhs)
    {
      gimple *stmt = USE_STMT (use_p);
      if (gimple_visited_p (stmt))
	return;
      gimple_set_visited (stmt, true);
      // Consider only statements within the loop
      if (!flow_bb_inside_loop_p (crc_loop, gimple_bb (stmt)))
	return;

      /* If encountered phi statement, check immediate use of its result
	 otherwise, if encountered assign statement, check whether it does shift
	 (some other operations are allowed to be between shift and xor).  */
      if (gimple_code (stmt) == GIMPLE_PHI)
	{
	  /* Don't continue finding if encountered the loop's beginning.  */
	  if (bb_loop_header_p (gimple_bb (stmt)))
	    return;

	  find_shift_after_xor
	      (crc_loop, gimple_phi_result (stmt));
	}
      else if (is_gimple_assign (stmt))
	if (can_not_be_shift_of_crc (stmt, false))
	  {
	    shift_after_xor = nullptr;
	    return;
	  }
    }
}


/* This function checks whether the pair of xor's shift exists in the given bb.

   If there is a shift with xor in the same block,
   then in the opposite block must be another shift.  */

bool
crc_optimization::exists_shift_for_opp_xor_shift (basic_block bb)
{
  /* Walk through the instructions of given basic block.  */
  for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (
      bsi); gsi_next (
      &bsi))
    {
      gimple *stmt = gsi_stmt (bsi);
      /* Find assigment statement with shift operation.
	 Check that shift's direction is same with the shift done
	 on the path with xor.  */
      if (is_gimple_assign (stmt))
	{
	  if (gimple_assign_rhs_code (stmt) == LSHIFT_EXPR && is_left_shift)
	    return true;
	  else if (gimple_assign_rhs_code (stmt) == RSHIFT_EXPR
		   && !is_left_shift)
	    return true;
	}
    }
  /* If there is no shift, return false.  */
  return false;
}


/* This function gets the condition cond and
   returns true if MSB/LSB bit is checked for 1.  */

bool
crc_optimization::cond_true_is_checked_for_bit_one (const gcond *cond)
{
  if (!cond)
    return false;
  tree lhs = gimple_cond_lhs (cond);
  tree rhs = gimple_cond_rhs (cond);
  enum tree_code code = gimple_cond_code (cond);

  /* If the condition is
     something == 1 or 1 == something -> return true.  */
  if ((integer_onep (lhs) || integer_onep (rhs)) && code == EQ_EXPR)
    return true;

  /* If the condition is
     0 != something  or 0 > something -> return true.  */
  if (integer_zerop (lhs) && (code == NE_EXPR || code == GT_EXPR))
    return true;

  /* If the condition is
     something != 0  or something < 0 -> return true.  */
  if (integer_zerop (rhs) && (code == NE_EXPR || code == LT_EXPR))
    return true;

  return false;
}


/* This function checks that xor is done under the condition
   of MSB/LSB being one.
   Checks that if condition's variable and xor-ed variable
   depend on same variable and if there is a shift1 in the same block with xor,
   on the opposite branch must be another shift1 to the same direction.

   xor_bb is the basic block, where xor operation is done.
   pred_bb is the predecessor basic block of the xor_bb,
   it is assumed that the last stmt of pred_bb checks the condition
   under which xor is done.  */

bool
crc_optimization::crc_cond_and_shift (const basic_block &pred_bb,
				      const basic_block &xor_bb)
{
  gcond *cond = nullptr;
  if (is_a<gcond *> (last_stmt (pred_bb)))
    cond = as_a<gcond *> (last_stmt (pred_bb));
  if (!cond)
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "No condition.  Not crc.\n");
      return false;
    }

  edge true_edge;
  edge false_edge;
  extract_true_false_edges_from_block (pred_bb, &true_edge, &false_edge);

  basic_block xor_opposite_block;
  /* Check that xor is done in case the MSB/LSB is 1.  */
  if ((cond_true_is_checked_for_bit_one (cond) && true_edge->dest == xor_bb))
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "Xor is done on true branch\n");

      xor_opposite_block = false_edge->dest;
    }
  else if (!cond_true_is_checked_for_bit_one (cond)
	   && false_edge->dest == xor_bb)
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "Xor is done on false branch\n");

      xor_opposite_block = true_edge->dest;
    }
  else
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file,
		 "Xor is done if MSB/LSB is not one, not crc\n");

      return false;
    }

  /* Check whether there is a dependence between
     if condition's variable and xor-ed variable.  */
  tree lhs = gimple_cond_lhs (cond);
  tree rhs = gimple_cond_rhs (cond);
  if (TREE_CODE (lhs) == SSA_NAME)
    check_def_stmt_for_if (lhs);
  else if (TREE_CODE (rhs) == SSA_NAME)
    check_def_stmt_for_if (rhs);
  else
    return false; /* Both parts of condition are not SSA_NAME.  */

  /* Return false if there is no dependence between if condition's variable
     and xor-ed variable.  */
  if (!crc_if_dep)
    return false;

  /* If the found shift is in the same block with xor,
  check whether another shift exists in the opposite block.  */
  if ((shift_before_xor && gimple_bb (shift_before_xor) == xor_bb)
      || (shift_after_xor && gimple_bb (shift_after_xor) == xor_bb))
    return exists_shift_for_opp_xor_shift (xor_opposite_block);
  return true;
}


/* Checks whether it's ok that the statement is between shift and xor.
  This check is not that accurate.  But it's enough to filter not CRCs.  */

bool
crc_optimization::is_acceptable_statement (const tree_code &stmt_code)
{
  return stmt_code == BIT_IOR_EXPR
	 || stmt_code == BIT_AND_EXPR
	 || stmt_code == BIT_XOR_EXPR
	 || TREE_CODE_CLASS (stmt_code) == tcc_unary;
}

/* Checks whether assigment statement does shift operation
   (checks that shift 1 is done),
   if it doesn't - checks whether it is acceptable operation
   to be between shift and xor.
   find_shift_before_xor argument is for checking whether we search for shift
   before xor or after.  */

bool
crc_optimization::can_not_be_shift_of_crc (gimple *assign_stmt,
					   bool find_shift_before_xor)
{
  tree_code stmt_code = gimple_assign_rhs_code (assign_stmt);
  if (stmt_code == LSHIFT_EXPR || stmt_code == RSHIFT_EXPR)
    {
      is_left_shift = (stmt_code == LSHIFT_EXPR);
      /* Check that shift one is done,
	 keep shift statement.  */
      if (integer_onep (gimple_assign_rhs2 (assign_stmt)))
	{
	  if (find_shift_before_xor)
	    {
	      if (shift_before_xor)
		{
		  if (dump_file && (dump_flags & TDF_DETAILS))
		    fprintf (dump_file,
			     "Already there is one shift "
			     "on the path to xor. not crc\n");

		  clean_xor_maybe_crc = false;
		  return true;
		}
	      shift_before_xor = assign_stmt;
	    }
	  else
	    {
	      shift_after_xor = assign_stmt;
	      if (dump_file && (dump_flags & TDF_DETAILS))
		fprintf (dump_file,
			 "Found shift1 after xor\n");
	    }
	  return false;
	}
      else
	{
	  if (dump_file && (dump_flags & TDF_DETAILS))
	    fprintf (dump_file,
		     "Found shift, but not with 1, not crc\n");
	  clean_xor_maybe_crc = false;
	  return true;
	}

    }
    /* No need for more strict checks,
       not CRCs may be filtered by the verification stage.  */
  else if (!is_acceptable_statement (stmt_code))
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file,
		 "\nStmt with following operation "
		 "code %s between xor and shift, "
		 "may not be crc \n", get_tree_code_name (stmt_code));

      return true;
    }
  return false;
}


/* This function goes up through the def-chain of the given name,
   until doesn't encounter a phi statement or
   if it does not meet certain conditions
   depending on the passed check_dependency function.
   The check_dependency may be the check_def_stmt_for_xor
   or check_def_stmt_for_if function.  */

void
crc_optimization::get_dep (tree name,
			   void (crc_optimization::*check_dependency) (
			       tree ssa))
{
  if (!clean_xor_maybe_crc)
    return;

  tree ssa1 = NULL_TREE, ssa2 = NULL_TREE;

  /* No definition chain for default defs.  */
  if (SSA_NAME_IS_DEFAULT_DEF (name))
    return;

  gimple *stmt = SSA_NAME_DEF_STMT (name);

  /* If it is an assigment statement - get first and second operand
     if phi statement of loop's header bb - stop function's execution.  */
  if (is_a<gassign *> (stmt))
    {
      ssa1 = gimple_assign_rhs1 (stmt);
      ssa2 = gimple_assign_rhs2 (stmt);
    }
  else if (is_a<gphi *> (stmt)
	   && (!bb_loop_header_p (gimple_bb (stmt))))
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file,
		 "Phi's definition IS NOT in loop header\n");

      if (check_dependency == &crc_optimization::check_def_stmt_for_xor)
	clean_xor_maybe_crc = false;
      return;
    }

  /* Do some checks on definition statements of
     assignment's first and second operands.  */
  (this->*check_dependency) (ssa1);
  (this->*check_dependency) (ssa2);
  return;
}


/* Check whether the statement, dependent from xor's operands,
   does shift operation (for calculating crc)
   or is a phi statement.  */

void
crc_optimization::check_def_stmt_for_xor (tree dep)
{
  if (!gimple_range_ssa_p (dep))
    return;
  if (!clean_xor_maybe_crc)
    return;

  gimple *def_stmt = SSA_NAME_DEF_STMT (dep);

  if (!def_stmt)
    return;

  if (is_gimple_assign (def_stmt))
    if (can_not_be_shift_of_crc (def_stmt, true))
      return;

  /* Keep phi statement.  */
  if (is_a<gphi *> (def_stmt))
    {
      if (first_phi_for_crc)
	{
	  if (dump_file && (dump_flags & TDF_DETAILS))
	    fprintf (dump_file, "Set second phi\n");

	  second_phi_for_crc = def_stmt;
	}
      else
	{
	  if (dump_file && (dump_flags & TDF_DETAILS))
	    fprintf (dump_file, "Set first phi\n");

	  first_phi_for_crc = def_stmt;
	}
      return;
    }

  /* Get the def chain for the operand.  */
  get_dep (dep, &crc_optimization::check_def_stmt_for_xor);
}


/* Walks through def-chain of if's condition and
   checks whether if's condition and xor-ed variable
   are dependent from the same variable.
   (The crc variable is xor-ed if variable's MSB/LSB is 1).  */

void
crc_optimization::check_def_stmt_for_if (tree dep)
{
  if (!gimple_range_ssa_p (dep))
    return;
  gimple *def_stmt = SSA_NAME_DEF_STMT (dep);

  if (!def_stmt)
    return;

  /* Checks whether if's condition and xor-ed variable are dependent
     from the same variable.  */
  if (is_a<gphi *> (def_stmt))
    {
      if ((first_phi_for_crc && first_phi_for_crc == def_stmt)
	  || (second_phi_for_crc && second_phi_for_crc == def_stmt))
	{
	  crc_if_dep = true;
	  if (dump_file && (dump_flags & TDF_DETAILS))
	    fprintf (dump_file,
		     "\nIf condition has dependence "
		     "from the same variable as xor.\n");
	}
      return;
    }

  /* Get the def chain for the operand.  */
  get_dep (dep, &crc_optimization::check_def_stmt_for_if);
}


/* Check whether found xor_stmt is for calculating crc.
   The function fun calculates crc only if there is a shift operation
   in the crc_loop.  */

bool
crc_optimization::xor_calculates_crc (function *fun, class loop *crc_loop,
				      const gimple *xor_stmt)
{
  tree crc_var = gimple_assign_lhs (xor_stmt);
  set_initial_values ();
  get_dep (crc_var,
	   &crc_optimization::check_def_stmt_for_xor);
  if (!clean_xor_maybe_crc)
    return false;

  /* Check the case when shift is done after xor.  */
  if (!shift_before_xor)
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "No shift before xor\n");

      set_all_statements_not_visited (fun);
      find_shift_after_xor (crc_loop, crc_var);
      if (!shift_after_xor)
	return false;
    }

  /* Check that xor is done if MSB/LSB is one.
     In presence of shift in the same loop with xor,
     check for its pair in another branch.
     If all checks succeed, then it is a crc.  */
  basic_block bb = gimple_bb (xor_stmt);
  if (single_pred_p (bb))
    {
      if (crc_cond_and_shift (single_pred (bb), bb))
	{
	  set_all_statements_not_visited (fun);
	  bool crc_is_returned = returned_value_depends_on_crc (crc_var);
	  if (dump_file)
	    {
	      if (crc_is_returned)
		{
		  fprintf (dump_file,
			   "\nAttention! %s function calculates CRC.\n",
			   function_name (fun));
		}
	      else
		{
		  fprintf (dump_file,
			   "\nFound naive crc implementation in %s.\n",
			   function_name (fun));
		}
	    }
	  return true;
	}
    }
  return false;
}


/* Checks the loop iteration number.
   The loop for CRC calculation may do 8, 16, 24, 32 iterations.  */

bool
crc_optimization::is_loop_of_crc_calculation (class loop *func_loop)
{
  loop_iteration_number = 0;
  tree n_inters = number_of_latch_executions (func_loop);
  if (n_inters == NULL_TREE || n_inters == chrec_dont_know)
    {
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file,
		 "Loop iteration number is chrec_dont_know\n");

    }
  else if (tree_fits_uhwi_p (n_inters))
    {
      loop_iteration_number = tree_to_uhwi (n_inters);
      if (dump_file && (dump_flags & TDF_DETAILS))
	fprintf (dump_file, "Loop iteration number is %ld\n",
		 loop_iteration_number);

      if (!(loop_iteration_number == 7 || loop_iteration_number == 15
	    || loop_iteration_number == 23 || loop_iteration_number == 31))
	return false;
    }
  return true;
}


/* This is the main function which checks whether given function calculates CRC
   and extracts the details of the CRC calculation.
   The main idea is to find innermost loop with 8, 16, 24, 32 iterations.
   Find xor in the loop (xor is the key operation for naive crc calculation).
   Check that before/after being xor-ed the variable is shifted by one.
   Xor must be done under condition of MSB/LSB being 1.  */

bool
crc_optimization::function_may_calculate_crc (function *fun)
{
  if (dump_file && (dump_flags & TDF_DETAILS))
    fprintf (dump_file, "\nExamining %s function\n",
	     function_name (fun));

  if (number_of_loops (fun) <= 1)
    return false;

  /* Get loops of the function.  */
  auto loop_list = loops_list (fun, LI_ONLY_INNERMOST);
  for (auto loop: loop_list)
    {
      /* Only examine innermost loops.  */
      if (!loop || loop->inner)
	continue;

      if (!is_loop_of_crc_calculation (loop))
	continue;

      basic_block *bbs = get_loop_body_in_dom_order (loop);
      /* Walk bbs of the loop.  */
      for (unsigned int i = 0; i < loop->num_nodes; i++)
	{
	  basic_block bb = bbs[i];
	  /* Walk instructions of bb.  */
	  for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (
	      bsi); gsi_next (&bsi))
	    {
	      gimple *stmt = gsi_stmt (bsi);
	      /* If there is an xor instruction,
		 check that it is calculating crc.  */
	      if (is_gimple_assign (stmt)
		  && gimple_assign_rhs_code (stmt) == BIT_XOR_EXPR)
		{
		  if (dump_file && (dump_flags & TDF_DETAILS))
		    fprintf (dump_file,
			     "Found xor, "
			     "checking whether it is for crc calculation\n");

		  if (xor_calculates_crc (fun, loop, stmt))
		    {
		      get_return_value_size (fun);
		      print_crc_information ();
		      return true;
		    }
		}
	    }
	}
    }
  return false;
}

unsigned int
crc_optimization::execute (function *fun)
{
  function_may_calculate_crc (fun);
  return 0;
}

namespace
{

    const pass_data pass_data_crc_optimization
	= {
	    GIMPLE_PASS, /* type */
	    "crc", /* name */
	    OPTGROUP_NONE, /* optinfo_flags */
	    TV_GIMPLE_CRC_OPTIMIZATION, /* tv_id */
	    (PROP_cfg | PROP_ssa), /* properties_required */
	    0, /* properties_provided */
	    0, /* properties_destroyed */
	    0, /* todo_flags_start */
	    0, /* todo_flags_finish */
	};

    class pass_crc_optimization : public gimple_opt_pass {
     public:
      pass_crc_optimization (gcc::context *ctxt)
	  : gimple_opt_pass (pass_data_crc_optimization, ctxt)
      {}

      /* opt_pass methods: */
      virtual bool gate (function *)
      {
	return flag_gimple_crc_optimization;
      }

      virtual unsigned int execute (function *);

    }; // class pass_crc_optimization

    unsigned int
    pass_crc_optimization::execute (function *fun)
    {
      return crc_optimization ().execute (fun);
    }

} // anon namespace

gimple_opt_pass *
make_pass_crc_optimization (gcc::context *ctxt)
{
  return new pass_crc_optimization (ctxt);
}