Lines Matching defs:shift_n
1665 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
1683 uint32_t shift_n; // the shift applied to the value read from Rm
1692 shift_n = 0;
1700 shift_n = DecodeImmShiftThumb(opcode, shift_t);
1709 shift_n = DecodeImmShiftARM(opcode, shift_t);
1720 Shift_C(value, shift_t, shift_n, APSR_C, carry, &success);
1945 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
3202 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
3220 uint32_t shift_n; // the shift applied to the value read from Rm
3229 shift_n = 0;
3236 shift_n = 0;
3247 shift_n = DecodeImmShiftARM(opcode, shift_t);
3263 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
3338 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
3351 uint32_t shift_n; // the shift applied to the value read from Rm
3357 shift_n = 0;
3362 shift_n = DecodeImmShiftThumb(opcode, shift_t);
3370 shift_n = DecodeImmShiftARM(opcode, shift_t);
3385 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
3455 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
3468 uint32_t shift_n; // the shift applied to the value read from Rm
3474 shift_n = 0;
3480 shift_n = 0;
3489 shift_n = DecodeImmShiftThumb(opcode, shift_t);
3496 shift_n = DecodeImmShiftARM(opcode, shift_t);
3511 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
3532 (result, carry) = Shift_C(R[m], SRType_ASR, shift_n, APSR.C);
3558 shift_n = UInt(R[m]<7:0>);
3559 (result, carry) = Shift_C(R[m], SRType_ASR, shift_n, APSR.C);
3580 (result, carry) = Shift_C(R[m], SRType_LSL, shift_n, APSR.C);
3605 shift_n = UInt(R[m]<7:0>);
3606 (result, carry) = Shift_C(R[m], SRType_LSL, shift_n, APSR.C);
3628 (result, carry) = Shift_C(R[m], SRType_LSR, shift_n, APSR.C);
3653 shift_n = UInt(R[m]<7:0>);
3654 (result, carry) = Shift_C(R[m], SRType_LSR, shift_n, APSR.C);
3676 (result, carry) = Shift_C(R[m], SRType_ROR, shift_n, APSR.C);
3702 shift_n = UInt(R[m]<7:0>);
3703 (result, carry) = Shift_C(R[m], SRType_ROR, shift_n, APSR.C);
5286 offset = Shift(R[m], shift_t, shift_n, APSR.C);
5309 uint32_t shift_n;
5329 // (shift_t, shift_n) = (SRType_LSL, 0);
5331 shift_n = 0;
5349 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
5351 shift_n = Bits32(opcode, 5, 4);
5371 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
5374 shift_n = DecodeImmShift(typ, imm5, shift_t);
5404 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
5405 offset = Shift(Rm_data, shift_t, shift_n, APSR_C, &success);
5611 offset = Shift(R[m], shift_t, shift_n, APSR.C);
5631 uint32_t shift_n;
5648 // (shift_t, shift_n) = (SRType_LSL, 0);
5650 shift_n = 0;
5668 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
5670 shift_n = Bits32(opcode, 5, 4);
5691 // (shift_t, shift_n) = (SRType_LSL, 0);
5693 shift_n = 0;
5717 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
5718 uint32_t offset = Shift(Rm, shift_t, shift_n, APSR_C, &success);
5855 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
5873 uint32_t shift_n; // the shift applied to the value read from Rm
5881 shift_n = 0;
5888 shift_n = DecodeImmShiftThumb(opcode, shift_t);
5897 shift_n = DecodeImmShiftARM(opcode, shift_t);
5916 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
6078 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
6096 uint32_t shift_n; // the shift applied to the value read from Rm
6105 shift_n = 0;
6112 shift_n = DecodeImmShiftThumb(opcode, shift_t);
6124 shift_n = DecodeImmShiftARM(opcode, shift_t);
6143 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
6243 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
6261 uint32_t shift_n; // the shift applied to the value read from Rm
6270 shift_n = 0;
6277 shift_n = DecodeImmShiftThumb(opcode, shift_t);
6286 shift_n = DecodeImmShiftARM(opcode, shift_t);
6307 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
6467 offset = Shift(R[m], shift_t, shift_n, APSR.C);
6495 uint32_t shift_n;
6511 // (shift_t, shift_n) = (SRType_LSL, 0);
6513 shift_n = 0;
6529 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
6531 shift_n = Bits32(opcode, 5, 4);
6556 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
6559 shift_n = DecodeImmShift(type, imm5, shift_t);
6587 // offset = Shift(R[m], shift_t, shift_n, APSR.C); -- Note "The APSR is
6590 Shift(Rm, shift_t, shift_n, Bit32(m_opcode_cpsr, APSR_C), &success);
6901 offset = Shift(R[m], shift_t, shift_n, APSR.C);
6918 uint32_t shift_n;
6933 // (shift_t, shift_n) = (SRType_LSL, 0);
6935 shift_n = 0;
6949 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
6951 shift_n = Bits32(opcode, 5, 4);
6979 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
6982 shift_n = DecodeImmShift(type, imm5, shift_t);
7000 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
7006 addr_t offset = Shift(Rm, shift_t, shift_n, APSR_C, &success);
7314 offset = Shift(R[m], shift_t, shift_n, APSR.C);
7335 uint32_t shift_n;
7352 // (shift_t, shift_n) = (SRType_LSL, 0);
7354 shift_n = 0;
7371 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
7373 shift_n = Bits32(opcode, 5, 4);
7393 // (shift_t, shift_n) = (SRType_LSL, 0);
7395 shift_n = 0;
7411 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
7418 addr_t offset = Shift(Rm, shift_t, shift_n, APSR_C, &success);
7727 offset = Shift(R[m], shift_t, shift_n, APSR.C);
7744 uint32_t shift_n;
7759 // (shift_t, shift_n) = (SRType_LSL, 0);
7761 shift_n = 0;
7778 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
7780 shift_n = Bits32(opcode, 5, 4);
7800 // (shift_t, shift_n) = (SRType_LSL, 0);
7802 shift_n = 0;
7822 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
7823 addr_t offset = Shift(Rm, shift_t, shift_n, APSR_C, &success);
8147 offset = Shift(R[m], shift_t, shift_n, APSR.C);
8168 uint32_t shift_n;
8185 // (shift_t, shift_n) = (SRType_LSL, 0);
8187 shift_n = 0;
8204 // (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
8206 shift_n = Bits32(opcode, 5, 4);
8227 // (shift_t, shift_n) = (SRType_LSL, 0);
8229 shift_n = 0;
8255 // offset = Shift(R[m], shift_t, shift_n, APSR.C);
8256 addr_t offset = Shift(Rm, shift_t, shift_n, APSR_C, &success);
8885 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
8903 uint32_t shift_n; // the shift applied to the value read from Rm
8912 shift_n = 0;
8919 shift_n = DecodeImmShiftThumb(opcode, shift_t);
8931 shift_n = DecodeImmShiftARM(opcode, shift_t);
8952 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
9052 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
9070 uint32_t shift_n; // the shift applied to the value read from Rm
9079 shift_n = 0;
9086 shift_n = DecodeImmShiftThumb(opcode, shift_t);
9098 shift_n = DecodeImmShiftARM(opcode, shift_t);
9117 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
9213 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
9233 uint32_t shift_n; // the shift applied to the value read from Rm
9240 shift_n = DecodeImmShiftThumb(opcode, shift_t);
9250 shift_n = DecodeImmShiftARM(opcode, shift_t);
9270 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
9351 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
9371 uint32_t shift_n; // the shift applied to the value read from Rm
9378 shift_n = DecodeImmShiftARM(opcode, shift_t);
9398 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
9489 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
9509 uint32_t shift_n; // the shift applied to the value read from Rm
9516 shift_n = 0;
9523 shift_n = DecodeImmShiftThumb(opcode, shift_t);
9532 shift_n = DecodeImmShiftARM(opcode, shift_t);
9552 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success);
9799 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
9812 uint32_t shift_n; // the shift applied to the value read from Rm
9818 shift_n = DecodeImmShiftThumb(opcode, shift_t);
9825 shift_n = DecodeImmShiftARM(opcode, shift_t);
9841 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
9924 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);
9937 uint32_t shift_n; // the shift applied to the value read from Rm
9944 shift_n = 0;
9949 shift_n = DecodeImmShiftThumb(opcode, shift_t);
9956 shift_n = DecodeImmShiftARM(opcode, shift_t);
9972 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success);
9993 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10013 uint32_t shift_n;
10022 // (shift_t, shift_n) = DecodeImmShift(type, imm3:imm2);
10023 shift_n = DecodeImmShiftThumb(opcode, shift_t);
10025 // if d == 13 && (shift_t != SRType_LSL || shift_n > 3) then
10027 if ((d == 13) && ((shift_t != SRType_LSL) || (shift_n > 3)))
10046 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
10047 shift_n = DecodeImmShiftARM(opcode, shift_t);
10054 // shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10059 uint32_t shifted = Shift(Rm, shift_t, shift_n, APSR_C, &success);
10091 shift_n = UInt(R[s]<7:0>);
10092 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10133 // shift_n = UInt(R[s]<7:0>);
10138 uint32_t shift_n = Bits32(Rs, 7, 0);
10140 // shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10145 uint32_t shifted = Shift(Rm, shift_t, shift_n, APSR_C, &success);
10187 shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10208 uint32_t shift_n;
10218 // (shift_t, shift_n) = (SRType_LSL, 0);
10220 shift_n = 0;
10239 // (shift_t, shift_n) = DecodeImmShift(type, imm3:imm2);
10240 shift_n = DecodeImmShiftThumb(opcode, shift_t);
10263 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
10264 shift_n = DecodeImmShiftARM(opcode, shift_t);
10272 // shifted = Shift(R[m], shift_t, shift_n, APSR.C);
10277 uint32_t shifted = Shift(Rm, shift_t, shift_n, APSR_C, &success);
12633 operand2 = if register_form then Shift(R[m], shift_t, shift_n, APSR.C) else imm32;
12659 uint32_t shift_n;
12693 // (shift_t, shift_n) = DecodeImmShift(type, imm5);
12694 shift_n = DecodeImmShiftARM(opcode, shift_t);
12702 // operand2 = if register_form then Shift(R[m], shift_t, shift_n, APSR.C)
12710 operand2 = Shift(Rm, shift_t, shift_n, APSR_C, &success);