Home
last modified time | relevance | path

Searched refs:proc_state (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Instruction/
H A DTestAArch64Emulator.cpp27 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry()
28 return EmulateInstructionARM64::AddWithCarry(N, x, y, carry_in, proc_state); in AddWithCarry()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp562 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry() argument
571 proc_state.N = Bit64(result, N - 1); in AddWithCarry()
572 proc_state.Z = IsZero(result); in AddWithCarry()
573 proc_state.C = UInt(result) != unsigned_sum; in AddWithCarry()
574 proc_state.V = overflow; in AddWithCarry()
655 ProcState proc_state; in EmulateADDSUBImm() local
657 result = AddWithCarry(datasize, operand1, operand2, carry_in, proc_state); in EmulateADDSUBImm()
660 m_emulated_pstate.N = proc_state.N; in EmulateADDSUBImm()
661 m_emulated_pstate.Z = proc_state.Z; in EmulateADDSUBImm()
662 m_emulated_pstate.C = proc_state.C; in EmulateADDSUBImm()
[all …]
H A DEmulateInstructionARM64.h154 EmulateInstructionARM64::ProcState &proc_state);