Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/Instruction/
H A DTestAArch64Emulator.cpp26 static uint64_t AddWithCarry(uint32_t N, uint64_t x, uint64_t y, bool carry_in, in AddWithCarry() function
28 return EmulateInstructionARM64::AddWithCarry(N, x, y, carry_in, proc_state); in AddWithCarry()
53 ASSERT_EQ(emu.AddWithCarry(64, ll_max, 0, 0, pstate), ll_max); in TEST_F()
56 ASSERT_EQ(emu.AddWithCarry(64, ll_max, 1, 0, pstate), (uint64_t)(ll_max + 1)); in TEST_F()
59 ASSERT_EQ(emu.AddWithCarry(64, ll_max, 0, 1, pstate), (uint64_t)(ll_max + 1)); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1903 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
2433 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3107 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3173 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3389 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
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()
[all …]
H A DEmulateInstructionARM.h187 AddWithCarryResult AddWithCarry(uint32_t x, uint32_t y, uint8_t carry_in);
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h153 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()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMInstrThumb2.td2412 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
H A DARMInstrInfo.td3872 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory