Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1906 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
2435 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3107 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3172 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3388 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
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()
[all …]
H A DEmulateInstructionARM.h187 AddWithCarryResult AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h154 static uint64_t AddWithCarry(uint32_t N, uint64_t x, uint64_t y, bool carry_in,
H A DEmulateInstructionARM64.cpp561 AddWithCarry(uint32_t N, uint64_t x, uint64_t y, bit carry_in, in AddWithCarry() function in EmulateInstructionARM64
657 result = AddWithCarry(datasize, operand1, operand2, carry_in, proc_state); in EmulateADDSUBImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrThumb2.td2493 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
H A DARMInstrInfo.td3902 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory