Searched refs:inloop (Results 1 – 6 of 6) sorted by relevance
/external/one-true-awk/ |
D | awkgram.y | 36 int inloop = 0; /* >= 1 if in while, for, do; can't be bool, since loops can next */ variable 125 FOR '(' opt_simple_stmt ';' opt_nl pattern ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt 126 { --inloop; $$ = stat4(FOR, $3, notnull($6), $9, $12); } 127 | FOR '(' opt_simple_stmt ';' ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt 128 { --inloop; $$ = stat4(FOR, $3, NIL, $7, $10); } 129 | FOR '(' varname IN varname rparen {inloop++;} stmt 130 { --inloop; $$ = stat3(IN, $3, makearr($5), $8); } 318 BREAK st { if (!inloop) SYNTAX("break illegal outside of loops"); 320 | CONTINUE st { if (!inloop) SYNTAX("continue illegal outside of loops"); 322 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st [all …]
|
/external/llvm-project/llvm/test/Analysis/PhiValues/ |
D | basic.ll | 125 br i1 undef, label %ifelse, label %inloop 133 %phi1 = phi i32 [ %phi3, %if ], [ 0, %else ], [ %phi2, %inloop ] 134 br i1 undef, label %inloop, label %end 136 inloop: 149 %phi3 = phi i32 [ 2, %entry ], [ 3, %inloop ]
|
/external/llvm-project/llvm/test/Transforms/LoopVectorize/ |
D | vplan-printing.ll | 3 …=loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -prefer-inloop-reductions -disabl…
|
D | reduction-inloop-uf4.ll | 2 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=4 -force-vector-width=4 -prefer-inloop-re…
|
D | reduction-inloop.ll | 2 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -prefer-inloop-re… 750 ; Sub we can create a reduction, but not inloop
|
D | reduction-inloop-pred.ll | 2 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -prefer-inloop-re…
|