• Home
  • Raw
  • Download

Lines Matching refs:shifted

1108         (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C);  in EmulateMVNReg()
1109 result = NOT(shifted); in EmulateMVNReg()
1163 uint32_t shifted = Shift_C(value, shift_t, shift_n, APSR_C, carry, &success); in EmulateMVNReg() local
1166 uint32_t result = ~shifted; in EmulateMVNReg()
1369 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateADDSPRm()
1370 (result, carry, overflow) = AddWithCarry(SP, shifted, '0'); in EmulateADDSPRm()
2625 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateADDReg()
2626 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDReg()
2688 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateADDReg() local
2691 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
2766 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateCMNReg()
2767 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateCMNReg()
2813 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateCMNReg() local
2816 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
2890 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateCMPReg()
2891 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateCMPReg()
2939 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateCMPReg() local
2942 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5308 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateADCReg()
5309 (result, carry, overflow) = AddWithCarry(R[n], shifted, APSR.C); in EmulateADCReg()
5371 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateADCReg() local
5374 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
5533 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateANDReg()
5534 result = R[n] AND shifted; in EmulateANDReg()
5600 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateANDReg() local
5603 uint32_t result = val1 & shifted; in EmulateANDReg()
5696 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateBICReg()
5697 result = R[n] AND NOT(shifted); in EmulateBICReg()
5761 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateBICReg() local
5764 uint32_t result = val1 & ~shifted; in EmulateBICReg()
8333 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateEORReg()
8334 result = R[n] EOR shifted; in EmulateEORReg()
8401 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateEORReg() local
8404 uint32_t result = val1 ^ shifted; in EmulateEORReg()
8499 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateORRReg()
8500 result = R[n] OR shifted; in EmulateORRReg()
8566 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateORRReg() local
8569 uint32_t result = val1 | shifted; in EmulateORRReg()
8662 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateRSBReg()
8663 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, '1'); in EmulateRSBReg()
8718 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateRSBReg() local
8721 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
8801 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateRSCReg()
8802 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, APSR.C); in EmulateRSCReg()
8847 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateRSCReg() local
8850 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
8938 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateSBCReg()
8939 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), APSR.C); in EmulateSBCReg()
9000 uint32_t shifted = Shift(val2, shift_t, shift_n, APSR_C, &success); in EmulateSBCReg() local
9003 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9237 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateTEQReg()
9238 result = R[n] EOR shifted; in EmulateTEQReg()
9281 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateTEQReg() local
9284 uint32_t result = val1 ^ shifted; in EmulateTEQReg()
9361 (shifted, carry) = Shift_C(R[m], shift_t, shift_n, APSR.C); in EmulateTSTReg()
9362 result = R[n] AND shifted; in EmulateTSTReg()
9411 uint32_t shifted = Shift_C(val2, shift_t, shift_n, APSR_C, carry, &success); in EmulateTSTReg() local
9414 uint32_t result = val1 & shifted; in EmulateTSTReg()
9433 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateSUBSPReg()
9434 (result, carry, overflow) = AddWithCarry(SP, NOT(shifted), �1�); in EmulateSUBSPReg()
9499 uint32_t shifted = Shift (Rm, shift_t, shift_n, APSR_C, &success); in EmulateSUBSPReg() local
9508 AddWithCarryResult res = AddWithCarry (sp_val, ~shifted, 1); in EmulateSUBSPReg()
9533 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateADDRegShift()
9534 (result, carry, overflow) = AddWithCarry(R[n], shifted, �0�); in EmulateADDRegShift()
9588 uint32_t shifted = Shift (Rm, shift_t, shift_n, APSR_C, &success); in EmulateADDRegShift() local
9597 AddWithCarryResult res = AddWithCarry (Rn, shifted, 0); in EmulateADDRegShift()
9630 shifted = Shift(R[m], shift_t, shift_n, APSR.C); in EmulateSUBReg()
9631 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), �1�); in EmulateSUBReg()
9713 uint32_t shifted = Shift (Rm, shift_t, shift_n, APSR_C, &success); in EmulateSUBReg() local
9722 AddWithCarryResult res = AddWithCarry (Rn, ~shifted, 1); in EmulateSUBReg()