Lines Matching refs:AddWithCarry
1151 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDRdSPImm()
1836 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDSPImm()
1908 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
1948 (result, carry, overflow) = AddWithCarry(SP, shifted, '0'); in EmulateADDSPRm()
2278 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBR7IPImm()
2328 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBIPSPImm()
2381 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBSPImm()
2438 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3020 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmThumb()
3112 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3143 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmARM()
3178 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3209 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDReg()
3272 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3297 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateCMNImm()
3327 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3345 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateCMNReg()
3394 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3410 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateCMPImm()
3444 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3462 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateCMPReg()
3520 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5808 (result, carry, overflow) = AddWithCarry(R[n], imm32, APSR.C); in EmulateADCImm()
5854 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5878 (result, carry, overflow) = AddWithCarry(R[n], shifted, APSR.C); in EmulateADCReg()
5941 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9166 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, '1'); in EmulateRSBImm()
9219 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9239 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, '1'); in EmulateRSBReg()
9298 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9317 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, APSR.C); in EmulateRSCImm()
9356 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9377 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, APSR.C); in EmulateRSCReg()
9426 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9446 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), APSR.C); in EmulateSBCImm()
9493 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9515 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), APSR.C); in EmulateSBCReg()
9580 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9598 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmThumb()
9669 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9688 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmARM()
9736 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10019 (result, carry, overflow) = AddWithCarry(SP, NOT(shifted), '1'); in EmulateSUBSPReg()
10093 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10118 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDRegShift()
10179 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10213 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateSUBReg()
10311 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12672 when '0010' (result, -, -) = AddWithCarry(R[n], NOT(operand2), '1'); // SUB in EmulateSUBSPcLrEtc()
12673 when '0011' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, '1'); // RSB in EmulateSUBSPcLrEtc()
12674 when '0100' (result, -, -) = AddWithCarry(R[n], operand2, '0'); // ADD in EmulateSUBSPcLrEtc()
12675 when '0101' (result, -, -) = AddWithCarry(R[n], operand2, APSR.c); // ADC in EmulateSUBSPcLrEtc()
12676 when '0110' (result, -, -) = AddWithCarry(R[n], NOT(operand2), APSR.C); // SBC in EmulateSUBSPcLrEtc()
12677 when '0111' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, APSR.C); // RSC in EmulateSUBSPcLrEtc()
12772 result = AddWithCarry(Rn, ~(operand2), 1); in EmulateSUBSPcLrEtc()
12777 result = AddWithCarry(~(Rn), operand2, 1); in EmulateSUBSPcLrEtc()
12782 result = AddWithCarry(Rn, operand2, 0); in EmulateSUBSPcLrEtc()
12787 result = AddWithCarry(Rn, operand2, APSR_C); in EmulateSUBSPcLrEtc()
12792 result = AddWithCarry(Rn, ~(operand2), APSR_C); in EmulateSUBSPcLrEtc()
12797 result = AddWithCarry(~(Rn), operand2, APSR_C); in EmulateSUBSPcLrEtc()
14169 EmulateInstructionARM::AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in) { in AddWithCarry() function in EmulateInstructionARM