Searched refs:proc_state (Results 1 – 3 of 3) sorted by relevance
27 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry()28 return EmulateInstructionARM64::AddWithCarry(N, x, y, carry_in, proc_state); in AddWithCarry()
562 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry() argument571 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() local657 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 …]
154 EmulateInstructionARM64::ProcState &proc_state);