Home | History | Annotate | Download | only in arm

Lines Matching defs:orr

816     //      orr dst, dst, #target8_1 << 8
817 // orr dst, dst, #target8_2 << 16
850 // Patch with a sequence of mov/orr/orr instructions.
859 patcher.masm()->orr(dst, dst, Operand(target8_1 << 8));
865 patcher.masm()->orr(dst, dst, Operand(target8_1 << 8));
866 patcher.masm()->orr(dst, dst, Operand(target8_2 << 16));
1086 // A movw / movt or mov / orr immediate load.
1132 orr(target, target, Operand(imm32 & (kImm8Mask << 8)), LeaveCC, cond);
1133 orr(target, target, Operand(imm32 & (kImm8Mask << 16)), LeaveCC, cond);
1134 orr(target, target, Operand(imm32 & (kImm8Mask << 24)), LeaveCC, cond);
1151 orr(target, target, Operand(0), LeaveCC, cond);
1152 orr(target, target, Operand(0), LeaveCC, cond);
1153 orr(target, target, Operand(0), LeaveCC, cond);
1458 void Assembler::orr(Register dst, Register src1, const Operand& src2,
1460 addrmod1(cond | ORR | s, src1, dst, src2);
1488 // sequence of movw/movt or mov/orr/orr instructions. They will load the
3796 // Instructions to patch must be 'mov rd, [#0]' and 'orr rd, rd, [#0].