HomeSort by relevance Sort by last modified time
    Searched refs:getConstInstruction (Results 1 - 14 of 14) sorted by null

  /external/r8/src/main/java/com/android/tools/r8/ir/code/
LogicalBinop.java 37 int left = leftValue().getConstInstruction().asConstNumber().getIntValue();
38 int right = rightValue().getConstInstruction().asConstNumber().getIntValue();
44 long left = leftValue().getConstInstruction().asConstNumber().getLongValue();
48 right = rightValue().getConstInstruction().asConstNumber().getIntValue();
50 right = rightValue().getConstInstruction().asConstNumber().getLongValue();
94 ConstNumber right = rightValue().getConstInstruction().asConstNumber();
ArithmeticBinop.java 59 int left = leftValue().getConstInstruction().asConstNumber().getIntValue();
60 int right = rightValue().getConstInstruction().asConstNumber().getIntValue();
65 long left = leftValue().getConstInstruction().asConstNumber().getLongValue();
66 long right = rightValue().getConstInstruction().asConstNumber().getLongValue();
71 float left = leftValue().getConstInstruction().asConstNumber().getFloatValue();
72 float right = rightValue().getConstInstruction().asConstNumber().getFloatValue();
78 double left = leftValue().getConstInstruction().asConstNumber().getDoubleValue();
79 double right = rightValue().getConstInstruction().asConstNumber().getDoubleValue();
118 ConstNumber right = rightValue().getConstInstruction().asConstNumber();
Binop.java 60 value.getConstInstruction().asConstNumber().is16Bit();
66 value.getConstInstruction().asConstNumber().is8Bit();
73 return rightValue().getConstInstruction().asConstNumber().is8Bit() ? U8BIT_MAX : U4BIT_MAX;
Neg.java 33 int result = -source().getConstInstruction().asConstNumber().getIntValue();
37 long result = -source().getConstInstruction().asConstNumber().getLongValue();
41 float result = -source().getConstInstruction().asConstNumber().getFloatValue();
46 double result = -source().getConstInstruction().asConstNumber().getDoubleValue();
Not.java 29 int result = ~(source().getConstInstruction().asConstNumber().getIntValue());
34 long result = ~source().getConstInstruction().asConstNumber().getLongValue();
Cmp.java 155 long left = leftValue().getConstInstruction().asConstNumber().getLongValue();
156 long right = rightValue().getConstInstruction().asConstNumber().getLongValue();
165 float left = leftValue().getConstInstruction().asConstNumber().getFloatValue();
166 float right = rightValue().getConstInstruction().asConstNumber().getFloatValue();
174 double left = leftValue().getConstInstruction().asConstNumber().getDoubleValue();
175 double right = rightValue().getConstInstruction().asConstNumber().getDoubleValue();
Sub.java 115 value.getConstInstruction().asConstNumber().negativeIs16Bit();
123 ConstNumber left = leftValue().getConstInstruction().asConstNumber();
127 ConstNumber right = rightValue().getConstInstruction().asConstNumber();
163 ConstNumber left = leftValue().getConstInstruction().asConstNumber();
178 ConstNumber right = rightValue().getConstInstruction().asConstNumber();
ArrayPut.java 97 int newArraySize = newArraySizeValue.getConstInstruction().asConstNumber().getIntValue();
98 int index = index().getConstInstruction().asConstNumber().getIntValue();
Value.java 389 ConstNumber constNumber = getConstInstruction().asConstNumber();
414 public ConstInstruction getConstInstruction() {
483 return value == getConstInstruction().asConstNumber().getIntValue();
492 int value = getConstInstruction().asConstNumber().getIntValue();
496 long value = getConstInstruction().asConstNumber().getLongValue();
Div.java 91 return super.canBeFolded() && !rightValue().getConstInstruction().asConstNumber().isZero();
Rem.java 91 return super.canBeFolded() && !rightValue().getConstInstruction().asConstNumber().isZero();
Instruction.java 234 ConstNumber aNum = a.getConstInstruction().asConstNumber();
235 ConstNumber bNum = b.getConstInstruction().asConstNumber();
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
CodeRewriter.java 716 && argument.getConstInstruction().asConstNumber().isZero());
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
IRBuilder.java     [all...]

Completed in 79 milliseconds