Lines Matching refs:AddWithCarry
1149 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDRdSPImm()
1834 (result, carry, overflow) = AddWithCarry(SP, imm32, '0'); in EmulateADDSPImm()
1906 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
1946 (result, carry, overflow) = AddWithCarry(SP, shifted, '0'); in EmulateADDSPRm()
2275 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBR7IPImm()
2325 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBIPSPImm()
2378 (result, carry, overflow) = AddWithCarry(SP, NOT(imm32), '1'); in EmulateSUBSPImm()
2435 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()
3137 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateADDImmARM()
3172 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3203 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDReg()
3266 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3291 (result, carry, overflow) = AddWithCarry(R[n], imm32, '0'); in EmulateCMNImm()
3321 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3339 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateCMNReg()
3388 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3404 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateCMPImm()
3438 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3456 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateCMPReg()
3514 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5786 (result, carry, overflow) = AddWithCarry(R[n], imm32, APSR.C); in EmulateADCImm()
5832 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5856 (result, carry, overflow) = AddWithCarry(R[n], shifted, APSR.C); in EmulateADCReg()
5919 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9141 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, '1'); in EmulateRSBImm()
9194 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9214 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, '1'); in EmulateRSBReg()
9273 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9292 (result, carry, overflow) = AddWithCarry(NOT(R[n]), imm32, APSR.C); in EmulateRSCImm()
9331 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9352 (result, carry, overflow) = AddWithCarry(NOT(R[n]), shifted, APSR.C); in EmulateRSCReg()
9401 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9421 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), APSR.C); in EmulateSBCImm()
9468 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9490 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), APSR.C); in EmulateSBCReg()
9555 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9573 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmThumb()
9644 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9663 (result, carry, overflow) = AddWithCarry(R[n], NOT(imm32), '1'); in EmulateSUBImmARM()
9711 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
9994 (result, carry, overflow) = AddWithCarry(SP, NOT(shifted), '1'); in EmulateSUBSPReg()
10068 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10093 (result, carry, overflow) = AddWithCarry(R[n], shifted, '0'); in EmulateADDRegShift()
10154 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10188 (result, carry, overflow) = AddWithCarry(R[n], NOT(shifted), '1'); in EmulateSUBReg()
10286 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12637 when '0010' (result, -, -) = AddWithCarry(R[n], NOT(operand2), '1'); // SUB in EmulateSUBSPcLrEtc()
12638 when '0011' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, '1'); // RSB in EmulateSUBSPcLrEtc()
12639 when '0100' (result, -, -) = AddWithCarry(R[n], operand2, '0'); // ADD in EmulateSUBSPcLrEtc()
12640 when '0101' (result, -, -) = AddWithCarry(R[n], operand2, APSR.c); // ADC in EmulateSUBSPcLrEtc()
12641 when '0110' (result, -, -) = AddWithCarry(R[n], NOT(operand2), APSR.C); // SBC in EmulateSUBSPcLrEtc()
12642 when '0111' (result, -, -) = AddWithCarry(NOT(R[n]), operand2, APSR.C); // RSC in EmulateSUBSPcLrEtc()
12737 result = AddWithCarry(Rn, ~(operand2), 1); in EmulateSUBSPcLrEtc()
12742 result = AddWithCarry(~(Rn), operand2, 1); in EmulateSUBSPcLrEtc()
12747 result = AddWithCarry(Rn, operand2, 0); in EmulateSUBSPcLrEtc()
12752 result = AddWithCarry(Rn, operand2, APSR_C); in EmulateSUBSPcLrEtc()
12757 result = AddWithCarry(Rn, ~(operand2), APSR_C); in EmulateSUBSPcLrEtc()
12762 result = AddWithCarry(~(Rn), operand2, APSR_C); in EmulateSUBSPcLrEtc()
14132 EmulateInstructionARM::AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in) { in AddWithCarry() function in EmulateInstructionARM