Lines Matching refs:AddWithCarry
1146 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDRdSPImm()
1831 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDSPImm()
1903 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
1943 (result, carry, overflow) = AddWithCarry(SP, shifted, '0'); in EmulateADDSPRm()
2273 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBR7IPImm()
2323 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBIPSPImm()
2376 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBSPImm()
2433 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3015 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmThumb()
3107 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3138 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmARM()
3173 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3204 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDReg()
3267 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3292 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateCMNImm()
3322 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3340 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateCMNReg()
3389 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3405 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateCMPImm()
3439 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3457 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateCMPReg()
3515 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5803 (result, carry, overflow) = AddWithCarry(R[n], imm32, APSR.C); in EmulateADCImm()
5849 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5873 (result, carry, overflow) = AddWithCarry(R[n], shifted, APSR.C); in EmulateADCReg()
5936 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9161 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, '1'); in EmulateRSBImm()
9214 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9234 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, '1'); in EmulateRSBReg()
9293 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9312 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, APSR.C); in EmulateRSCImm()
9351 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9372 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, APSR.C); in EmulateRSCReg()
9421 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9441 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), APSR.C); in EmulateSBCImm()
9488 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9510 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), APSR.C); in EmulateSBCReg()
9575 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9593 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmThumb()
9664 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9683 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmARM()
9731 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10014 (result, carry, overflow) = AddWithCarry(SP, NOT(shifted), '1'); in EmulateSUBSPReg()
10088 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10113 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDRegShift()
10174 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10208 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateSUBReg()
10306 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12667 when '0010' (result, -, -) = AddWithCarry(R[n], NOT(operand2), '1'); // SUB in EmulateSUBSPcLrEtc()
12668 when '0011' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, '1'); // RSB in EmulateSUBSPcLrEtc()
12669 when '0100' (result, -, -) = AddWithCarry(R[n], operand2, '0'); // ADD in EmulateSUBSPcLrEtc()
12670 when '0101' (result, -, -) = AddWithCarry(R[n], operand2, APSR.c); // ADC in EmulateSUBSPcLrEtc()
12671 when '0110' (result, -, -) = AddWithCarry(R[n], NOT(operand2), APSR.C); // SBC in EmulateSUBSPcLrEtc()
12672 when '0111' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, APSR.C); // RSC in EmulateSUBSPcLrEtc()
12767 result = AddWithCarry(Rn, ~(operand2), 1); in EmulateSUBSPcLrEtc()
12772 result = AddWithCarry(~(Rn), operand2, 1); in EmulateSUBSPcLrEtc()
12777 result = AddWithCarry(Rn, operand2, 0); in EmulateSUBSPcLrEtc()
12782 result = AddWithCarry(Rn, operand2, APSR_C); in EmulateSUBSPcLrEtc()
12787 result = AddWithCarry(Rn, ~(operand2), APSR_C); in EmulateSUBSPcLrEtc()
12792 result = AddWithCarry(~(Rn), operand2, APSR_C); in EmulateSUBSPcLrEtc()
14162 EmulateInstructionARM::AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in) { in AddWithCarry() function in EmulateInstructionARM