| /src/external/gpl3/gcc/dist/gcc/ |
| tree-ssa-loop-ivcanon.cc | 1030 unsigned HOST_WIDE_INT npeel) 1032 return MAX (npeel * (HOST_WIDE_INT) (size->overall 1036 /* Update loop estimates after peeling LOOP by NPEEL. 1040 adjust_loop_info_after_peeling (class loop *loop, int npeel, bool precise) 1056 if (wi::leu_p (npeel, loop->nb_iterations_estimate)) 1057 loop->nb_iterations_estimate -= npeel; 1063 if (wi::leu_p (npeel, loop->nb_iterations_upper_bound)) 1064 loop->nb_iterations_upper_bound -= npeel; 1075 if (wi::leu_p (npeel, loop->nb_iterations_likely_upper_bound)) 1076 loop->nb_iterations_likely_upper_bound -= npeel; 1097 HOST_WIDE_INT npeel; local [all...] |
| cfgloopmanip.h | 69 void adjust_loop_info_after_peeling (class loop *loop, int npeel, bool precise);
|
| tree-vect-data-refs.cc | 1541 - to the misalignment computed using NPEEL if DR_INFO's salignment is known, 1547 NPEEL - the number of iterations in the peel loop if the misalignment 1552 dr_vec_info *dr_peel_info, int npeel) 1570 misal += npeel * TREE_INT_CST_LOW (DR_STEP (dr_info->dr)); 1731 int npeel; member in struct:_vect_peel_info 1755 return (hashval_t) peel_info->npeel; 1761 return (a->npeel == b->npeel); 1765 /* Insert DR_INFO into peeling hash table with NPEEL as key. */ 1770 int npeel, bool supportable_if_not_aligned [all...] |
| tree-vect-loop-manip.cc | 2516 int npeel = LOOP_VINFO_PEELING_FOR_ALIGNMENT (loop_vinfo); 2520 "known peeling = %d.\n", npeel); 2522 iters = build_int_cst (niters_type, npeel);
|
| tree-vect-loop.cc | 4618 int npeel = LOOP_VINFO_PEELING_FOR_ALIGNMENT (loop_vinfo); local 4713 else if (npeel < 0) 4729 peel_iters_prologue = npeel; 4743 else if (npeel < 0) 4759 peel_iters_epilogue = vect_get_peel_iters_epilogue (loop_vinfo, npeel); 5079 SIC * niters + SOC > VIC * ((niters - NPEEL) / VF) + VOC 5083 NPEEL = prologue iterations + epilogue iterations, 5114 SIC * (vniters * VF + NPEEL) + SOC > VIC * vniters + VOC 5116 <==> vniters * (SIC * VF - VIC) > VOC - SIC * NPEEL - SOC 5143 vniters * VF + NPEEL, but it might be (and often is) les [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-ssa-loop-ivcanon.cc | 978 unsigned HOST_WIDE_INT npeel) 980 return MAX (npeel * (HOST_WIDE_INT) (size->overall 995 HOST_WIDE_INT npeel; local 1038 npeel = estimated_loop_iterations_int (loop); 1039 if (npeel < 0) 1040 npeel = likely_max_loop_iterations_int (loop); 1041 if (npeel < 0) 1048 if (maxiter >= 0 && maxiter <= npeel) 1059 if (npeel > param_max_peel_times - 1) 1063 "(%i + 1 > --param max-peel-times)\n", (int) npeel); [all...] |
| tree-vect-data-refs.cc | 1245 - to the misalignment computed using NPEEL if DR_INFO's salignment is known, 1251 NPEEL - the number of iterations in the peel loop if the misalignment 1256 dr_vec_info *dr_peel_info, int npeel) 1274 misal += npeel * TREE_INT_CST_LOW (DR_STEP (dr_info->dr)); 1435 int npeel; member in struct:_vect_peel_info 1459 return (hashval_t) peel_info->npeel; 1465 return (a->npeel == b->npeel); 1469 /* Insert DR_INFO into peeling hash table with NPEEL as key. */ 1474 int npeel, bool supportable_if_not_aligned [all...] |
| tree-vect-loop-manip.cc | 1727 int npeel = LOOP_VINFO_PEELING_FOR_ALIGNMENT (loop_vinfo); local 1731 "known peeling = %d.\n", npeel); 1733 iters = build_int_cst (niters_type, npeel);
|
| tree-vect-loop.cc | 3919 int npeel = LOOP_VINFO_PEELING_FOR_ALIGNMENT (loop_vinfo); local 4014 else if (npeel < 0) 4030 peel_iters_prologue = npeel; 4044 else if (npeel < 0) 4060 peel_iters_epilogue = vect_get_peel_iters_epilogue (loop_vinfo, npeel); 4315 SIC * niters + SOC > VIC * ((niters - NPEEL) / VF) + VOC 4319 NPEEL = prologue iterations + epilogue iterations, 4350 SIC * (vniters * VF + NPEEL) + SOC > VIC * vniters + VOC 4352 <==> vniters * (SIC * VF - VIC) > VOC - SIC * NPEEL - SOC 4379 vniters * VF + NPEEL, but it might be (and often is) les [all...] |