Home
last modified time | relevance | path

Searched defs:orr (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_arm.cc1416 __ orr(out, first, second); in GenerateDataProcInstruction() local
1529 __ orr(IP, IP, ShifterOperand(second_lo, LSR, 32 - shift_value)); in GenerateLongDataProc() local
1560 __ orr(IP, IP, ShifterOperand(second_hi, LSL, 32 - shift_value)); in GenerateLongDataProc() local
4505 __ orr(out_reg_hi, out_reg_hi, ShifterOperand(in_reg_lo, arm::LSL, kArmBitsPerWord - rot)); in HandleLongRotate() local
4507 __ orr(out_reg_lo, out_reg_lo, ShifterOperand(in_reg_hi, arm::LSL, kArmBitsPerWord - rot)); in HandleLongRotate() local
4692 __ orr(o_h, o_h, ShifterOperand(temp)); in HandleShift() local
4706 __ orr(o_l, o_l, ShifterOperand(temp)); in HandleShift() local
4719 __ orr(o_l, o_l, ShifterOperand(temp)); in HandleShift() local
4768 __ orr(o_h, o_h, ShifterOperand(low, LSR, 32 - shift_value)); in HandleShift() local
4772 __ orr(o_l, o_l, ShifterOperand(high, LSL, 32 - shift_value)); in HandleShift() local
[all …]
Dintrinsics_arm.cc1263 __ orr(temp3, temp3, ShifterOperand(0xffu << 23)); // uncompressed ? 0xff800000u : 0x7ff80000u in VisitStringCompareTo() local
2628 __ orr(out, IP, ShifterOperand(out, LSL, 1)); in VisitDoubleIsInfinite() local
2678 __ orr(IP, IP, ShifterOperand(temp)); in VisitReferenceGetReferent() local
/art/compiler/utils/
Dassembler_thumb_test.cc247 __ orr(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() local
340 __ orr(R0, R0, ShifterOperand(R1), arm::EQ, kCcKeep); in TEST_F() local
355 __ orr(R0, R0, ShifterOperand(R1)); in TEST_F() local
379 __ orr(R0, R1, ShifterOperand(0x55)); in TEST_F() local
410 __ orr(R0, R1, ShifterOperand(0x550055)); in TEST_F() local
/art/compiler/utils/arm/
Dassembler_thumb2.cc612 void Thumb2Assembler::orr(Register rd, Register rn, const ShifterOperand& so, in orr() function in art::arm::Thumb2Assembler