Home
last modified time | relevance | path

Searched defs:distance (Results 1 – 14 of 14) sorted by relevance

/art/test/557-checker-instruct-simplifier-ror/src/
DMain.java46 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-art/
DMain.java39 private static int rotateLeftByte(byte value, int distance) { in rotateLeftByte()
59 private static int rotateLeftShort(short value, int distance) { in rotateLeftShort()
79 private static int rotateLeftChar(char value, int distance) { in rotateLeftChar()
99 private static int rotateLeftInt(int value, int distance) { in rotateLeftInt()
119 private static long rotateLeftLong(long value, int distance) { in rotateLeftLong()
138 private static int rotateRightByte(byte value, int distance) { in rotateRightByte()
157 private static int rotateRightShort(short value, int distance) { in rotateRightShort()
176 private static int rotateRightChar(char value, int distance) { in rotateRightChar()
195 private static int rotateRightInt(int value, int distance) { in rotateRightInt()
214 private static long rotateRightLong(long value, int distance) { in rotateRightLong()
[all …]
/art/test/542-bitfield-rotates/src/
DMain.java53 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/411-optimizing-arith/src/
DShiftsTest.java238 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/test/950-redefine-intrinsic/src/
DRedefinedLongIntrinsics.java47 public static long rotateLeft(long i, int distance) { in rotateLeft()
52 public static long rotateRight(long i, int distance) { in rotateRight()
/art/compiler/optimizing/
Dstack_map_stream.cc239 uint32_t distance = stack_maps_.size() - dex_register_timestamp_[i]; in CreateDexRegisterMap() local
Dnodes.h5268 : HBinaryOperation(kShl, result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument
5274 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute()
5278 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const override { in Evaluate()
5282 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const override { in Evaluate()
5314 : HBinaryOperation(kShr, result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument
5320 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute()
5324 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const override { in Evaluate()
5328 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const override { in Evaluate()
5360 : HBinaryOperation(kUShr, result_type, value, distance, SideEffects::None(), dex_pc) { in HBinaryOperation() argument
5366 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute()
[all …]
Dbounds_check_elimination.cc1368 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c); in AddComparesWithDeoptimization() local
1475 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c); in TransformLoopForDynamicBCE() local
Dloop_optimization.cc1495 int64_t distance = 0; in VectorizeUse() local
Dinstruction_simplifier.cc2146 HInstruction* distance = invoke->InputAt(1); in SimplifyRotate() local
/art/libartbase/base/
Dbit_utils.h350 inline static T Rot(T opnd, int distance) { in Rot()
/art/compiler/utils/mips64/
Dassembler_mips64.cc2682 int64_t distance = static_cast<int64_t>(target) - location; in GetOffsetSizeNeeded() local
2766 int64_t distance = static_cast<int64_t>(target_) - location_; in PromoteIfNeeded() local
/art/compiler/utils/mips/
Dassembler_mips.cc3326 int64_t distance = static_cast<int64_t>(target) - location; in GetOffsetSizeNeeded() local
3450 int64_t distance = static_cast<int64_t>(target_) - location; in PromoteIfNeeded() local
/art/test/083-compiler-regressions/src/
DMain.java886 static int rotateLeft(int i, int distance) { in rotateLeft()