Home
last modified time | relevance | path

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

/art/compiler/dex/quick/arm/
Dutility_arm.cc232 if (r_dest.Low8() && (value >= 0) && (value <= 255)) { in LoadConstantNoClobber()
288 ((shift == 0) && r_dest_src1.Low8() && r_src2.Low8()); in OpRegRegShift()
307 else if ((shift == 0) && !r_dest_src1.Low8() && !r_src2.Low8()) in OpRegRegShift()
309 else if ((shift == 0) && r_dest_src1.Low8()) in OpRegRegShift()
321 if (r_dest_src1.Low8() && r_src2.Low8()) in OpRegRegShift()
323 else if (!r_dest_src1.Low8() && !r_src2.Low8()) in OpRegRegShift()
325 else if (r_dest_src1.Low8()) in OpRegRegShift()
443 bool thumb_form = (shift == 0) && r_dest.Low8() && r_src1.Low8() && r_src2.Low8(); in OpRegRegRegShift()
518 bool all_low_regs = r_dest.Low8() && r_src1.Low8(); in OpRegRegImm()
540 if (r_dest.Low8() && (r_src1 == rs_r13sp) && (value <= 1020) && ((value & 0x3) == 0)) { in OpRegRegImm()
[all …]
Dint_arm.cc394 if (!skip && reg.Low8() && (check_value == 0)) { in OpCmpImmBranch()
426 if (r_dest.Low8() && r_src.Low8()) in OpRegCopyNoInsert()
428 else if (!r_dest.Low8() && !r_src.Low8()) in OpRegCopyNoInsert()
430 else if (r_dest.Low8()) in OpRegCopyNoInsert()
945 if (r_tmp.Low8() && r_tmp_high.Low8()) { in GenInlinedCas()
/art/compiler/dex/
Dreg_storage.h262 constexpr bool Low8() const { in Low8() function