Home
last modified time | relevance | path

Searched refs:AddWithCarry (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1916 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
2446 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3120 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3186 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3402 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
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()
[all …]
H A DEmulateInstructionARM.h191 AddWithCarryResult AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp90 AddWithCarry(uint32_t N, uint64_t x, uint64_t y, bit carry_in, in AddWithCarry() function
673 result = AddWithCarry(datasize, operand1, operand2, carry_in, proc_state); in EmulateADDSUBImm()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMInstrThumb2.td2137 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
H A DARMInstrInfo.td3681 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory