Lines Matching refs:AddWithCarry

1161         (result, carry, overflow) = AddWithCarry(SP, imm32, '0');  in EmulateADDRdSPImm()
1844 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDSPImm()
1916 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
1956 (result, carry, overflow) = AddWithCarry(SP, shifted, '0'); in EmulateADDSPRm()
2286 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBR7IPImm()
2336 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBIPSPImm()
2389 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBSPImm()
2446 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3028 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmThumb()
3120 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3151 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmARM()
3186 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3217 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDReg()
3280 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3305 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateCMNImm()
3335 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3353 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateCMNReg()
3402 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3418 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateCMPImm()
3452 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3470 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateCMPReg()
3528 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5816 (result, carry, overflow) = AddWithCarry(R[n], imm32, APSR.C); in EmulateADCImm()
5862 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5886 (result, carry, overflow) = AddWithCarry(R[n], shifted, APSR.C); in EmulateADCReg()
5949 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9174 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, '1'); in EmulateRSBImm()
9227 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9247 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, '1'); in EmulateRSBReg()
9306 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9325 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, APSR.C); in EmulateRSCImm()
9364 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9385 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, APSR.C); in EmulateRSCReg()
9434 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9454 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), APSR.C); in EmulateSBCImm()
9501 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9523 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), APSR.C); in EmulateSBCReg()
9588 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9606 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmThumb()
9677 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9696 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmARM()
9744 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10027 (result, carry, overflow) = AddWithCarry(SP, NOT(shifted), '1'); in EmulateSUBSPReg()
10101 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10126 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDRegShift()
10187 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10221 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateSUBReg()
10319 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12680 when '0010' (result, -, -) = AddWithCarry(R[n], NOT(operand2), '1'); // SUB in EmulateSUBSPcLrEtc()
12681 when '0011' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, '1'); // RSB in EmulateSUBSPcLrEtc()
12682 when '0100' (result, -, -) = AddWithCarry(R[n], operand2, '0'); // ADD in EmulateSUBSPcLrEtc()
12683 when '0101' (result, -, -) = AddWithCarry(R[n], operand2, APSR.c); // ADC in EmulateSUBSPcLrEtc()
12684 when '0110' (result, -, -) = AddWithCarry(R[n], NOT(operand2), APSR.C); // SBC in EmulateSUBSPcLrEtc()
12685 when '0111' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, APSR.C); // RSC in EmulateSUBSPcLrEtc()
12780 result = AddWithCarry(Rn, ~(operand2), 1); in EmulateSUBSPcLrEtc()
12785 result = AddWithCarry(~(Rn), operand2, 1); in EmulateSUBSPcLrEtc()
12790 result = AddWithCarry(Rn, operand2, 0); in EmulateSUBSPcLrEtc()
12795 result = AddWithCarry(Rn, operand2, APSR_C); in EmulateSUBSPcLrEtc()
12800 result = AddWithCarry(Rn, ~(operand2), APSR_C); in EmulateSUBSPcLrEtc()
12805 result = AddWithCarry(~(Rn), operand2, APSR_C); in EmulateSUBSPcLrEtc()
14213 EmulateInstructionARM::AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in) { in AddWithCarry() function in EmulateInstructionARM