| /art/test/557-checker-instruction-simplifier-ror/src/ |
| D | Main.java | 46 public static int rotateIntegerRight(int value, int distance) { in rotateIntegerRight() 66 public static int rotateIntegerLeft(int value, int distance) { in rotateIntegerLeft() 85 public static long rotateLongRight(long value, int distance) { in rotateLongRight() 105 public static long rotateLongLeft(long value, int distance) { in rotateLongLeft() 250 public static int ror_int_reg_v_csubv(int value, int distance) { in ror_int_reg_v_csubv() 285 int distance = x - y; in ror_int_subv_csubv() local 317 int distance = x - y; in ror_int_subv_csubv_env() local 344 public static long ror_long_reg_v_csubv(long value, int distance) { in ror_long_reg_v_csubv() 350 public static long ror_long_reg_v_csubv_0(long value, int distance) { in ror_long_reg_v_csubv_0() 357 int distance = x - y; in ror_long_subv_csubv_0() local [all …]
|
| /art/test/565-checker-rotate/src/ |
| D | Main.java | 65 private static int rotateLeftBoolean(boolean value, int distance) { in rotateLeftBoolean() 86 private static int rotateLeftByte(byte value, int distance) { in rotateLeftByte() 107 private static int rotateLeftShort(short value, int distance) { in rotateLeftShort() 128 private static int rotateLeftChar(char value, int distance) { in rotateLeftChar() 149 private static int rotateLeftInt(int value, int distance) { in rotateLeftInt() 170 private static long rotateLeftLong(long value, int distance) { in rotateLeftLong() 218 private static int rotateRightBoolean(boolean value, int distance) { in rotateRightBoolean() 238 private static int rotateRightByte(byte value, int distance) { in rotateRightByte() 258 private static int rotateRightShort(short value, int distance) { in rotateRightShort() 278 private static int rotateRightChar(char value, int distance) { in rotateRightChar() [all …]
|
| /art/test/542-bitfield-rotates/src/ |
| D | Main.java | 53 public static int $noinline$rotate_int_right_reg_v_csubv(int value, int distance) { in $noinline$rotate_int_right_reg_v_csubv() 76 public static long $noinline$rotate_long_right_reg_v_csubv(long value, int distance) { in $noinline$rotate_long_right_reg_v_csubv() 99 public static int $noinline$rotate_int_left_reg_csubv_v(int value, int distance) { in $noinline$rotate_int_left_reg_csubv_v() 122 public static long $noinline$rotate_long_left_reg_csubv_v(long value, int distance) { in $noinline$rotate_long_left_reg_csubv_v() 145 public static int $noinline$rotate_int_right_reg_v_negv(int value, int distance) { in $noinline$rotate_int_right_reg_v_negv() 168 public static long $noinline$rotate_long_right_reg_v_negv(long value, int distance) { in $noinline$rotate_long_right_reg_v_negv() 191 public static int $noinline$rotate_int_left_reg_negv_v(int value, int distance) { in $noinline$rotate_int_left_reg_negv_v() 214 public static long $noinline$rotate_long_left_reg_negv_v(long value, int distance) { in $noinline$rotate_long_left_reg_negv_v()
|
| /art/test/431-optimizing-arith-shifts/src/ |
| D | Main.java | 238 static int $opt$ShlInt(int value, int distance) { in $opt$ShlInt() 242 static long $opt$ShlLong(long value, int distance) { in $opt$ShlLong() 246 static int $opt$ShrInt(int value, int distance) { in $opt$ShrInt() 250 static long $opt$ShrLong(long value, int distance) { in $opt$ShrLong() 254 static int $opt$UShrInt(int value, int distance) { in $opt$UShrInt() 258 static long $opt$UShrLong(long value, int distance) { in $opt$UShrLong()
|
| /art/compiler/optimizing/ |
| D | nodes.h | 4475 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument 4481 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() 4485 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE { in Evaluate() 4489 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE { in Evaluate() 4521 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument 4527 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() 4531 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE { in Evaluate() 4535 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE { in Evaluate() 4567 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument 4573 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() [all …]
|
| D | instruction_simplifier.cc | 1529 HInstruction* distance = invoke->InputAt(1); in SimplifyRotate() local
|
| D | bounds_check_elimination.cc | 1264 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c); in AddComparesWithDeoptimization() local
|
| /art/compiler/utils/mips64/ |
| D | assembler_mips64.cc | 1418 int64_t distance = static_cast<int64_t>(target) - location; in GetOffsetSizeNeeded() local 1487 int64_t distance = static_cast<int64_t>(target_) - location_; in PromoteIfNeeded() local
|
| /art/compiler/utils/mips/ |
| D | assembler_mips.cc | 1743 int64_t distance = static_cast<int64_t>(target) - location; in GetOffsetSizeNeeded() local 1822 int64_t distance = static_cast<int64_t>(target_) - location_; in PromoteIfNeeded() local
|
| /art/test/083-compiler-regressions/src/ |
| D | Main.java | 886 static int rotateLeft(int i, int distance) { in rotateLeft()
|