Lines Matching refs:proc_state
562 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()
663 m_emulated_pstate.V = proc_state.V; in EmulateADDSUBImm()