Lines Matching refs:LeaveCC
1131 mov(target, Operand(imm32 & kImm8Mask), LeaveCC, cond); in move_32_bit_immediate()
1132 orr(target, target, Operand(imm32 & (kImm8Mask << 8)), LeaveCC, cond); in move_32_bit_immediate()
1133 orr(target, target, Operand(imm32 & (kImm8Mask << 16)), LeaveCC, cond); in move_32_bit_immediate()
1134 orr(target, target, Operand(imm32 & (kImm8Mask << 24)), LeaveCC, cond); in move_32_bit_immediate()
1137 mov(rd, target, LeaveCC, cond); in move_32_bit_immediate()
1150 mov(target, Operand(0), LeaveCC, cond); in move_32_bit_immediate()
1151 orr(target, target, Operand(0), LeaveCC, cond); in move_32_bit_immediate()
1152 orr(target, target, Operand(0), LeaveCC, cond); in move_32_bit_immediate()
1153 orr(target, target, Operand(0), LeaveCC, cond); in move_32_bit_immediate()
1186 mov(ip, x, LeaveCC, cond); in addrmod1()
1222 mov(ip, Operand(x.offset_), LeaveCC, Instruction::ConditionField(instr)); in addrmod2()
1255 mov(ip, Operand(x.offset_), LeaveCC, Instruction::ConditionField(instr)); in addrmod3()
1265 mov(ip, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC, in addrmod3()
1471 DCHECK(!(src.is_reg() && src.rm().is(dst) && s == LeaveCC && cond == al)); in mov()