Home
last modified time | relevance | path

Searched refs:theIf (Results 1 – 3 of 3) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DCodeRewriter.java350 If theIf = new If(Type.EQ, ImmutableList.of(theSwitch.value(), labelConst.dest())); in rewriteSwitch() local
351 iterator.replaceCurrentInstruction(theIf); in rewriteSwitch()
1240 If theIf = block.exit().asIf();
1241 List<Value> inValues = theIf.inValues();
1244 && (theIf.isZeroTest() || inValues.get(1).isConstant())) {
1246 if (theIf.isZeroTest()) {
1254 && (theIf.isZeroTest() || inValues.get(1).hasValueRange())) {
1257 if (theIf.isZeroTest()) {
1276 BasicBlock target = theIf.targetFromCondition(cond);
1278 target == theIf.getTrueTarget() ? theIf.fallthroughBlock() : theIf.getTrueTarget();
[all …]
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DDexBuilder.java281 If theIf = block.exit().asIf(); in rewriteIfs() local
282 BasicBlock trueTarget = theIf.getTrueTarget(); in rewriteIfs()
284 theIf.setTrueTarget(newBlock); in rewriteIfs()
285 theIf.invert(); in rewriteIfs()
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DBasicBlock.java922 public static BasicBlock createIfBlock(int blockNumber, If theIf) { in createIfBlock() argument
924 block.add(theIf); in createIfBlock()