Lines Matching refs:proc_state
572 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry() argument
581 proc_state.N = Bit64(result, N - 1); in AddWithCarry()
582 proc_state.Z = IsZero(result); in AddWithCarry()
583 proc_state.C = UInt(result) != unsigned_sum; in AddWithCarry()
584 proc_state.V = overflow; in AddWithCarry()
665 ProcState proc_state; in EmulateADDSUBImm() local
667 result = AddWithCarry(datasize, operand1, operand2, carry_in, proc_state); in EmulateADDSUBImm()
670 m_emulated_pstate.N = proc_state.N; in EmulateADDSUBImm()
671 m_emulated_pstate.Z = proc_state.Z; in EmulateADDSUBImm()
672 m_emulated_pstate.C = proc_state.C; in EmulateADDSUBImm()
673 m_emulated_pstate.V = proc_state.V; in EmulateADDSUBImm()