Searched refs:proc_state (Results 1 – 4 of 4) sorted by relevance
107 ProcessState& proc_state = ds.process_states[pid]; // insert if new in AdoptProcDescriptors() local108 PERFETTO_DCHECK(proc_state.status != ProcessState::Status::kResolved); in AdoptProcDescriptors()109 PERFETTO_DCHECK(!proc_state.unwind_state.has_value()); in AdoptProcDescriptors()113 proc_state.status = ProcessState::Status::kResolved; in AdoptProcDescriptors()114 proc_state.unwind_state = in AdoptProcDescriptors()135 ProcessState& proc_state = ds.process_states[pid]; // insert if new in RecordTimedOutProcDescriptors() local136 PERFETTO_DCHECK(proc_state.status == ProcessState::Status::kResolving); in RecordTimedOutProcDescriptors()137 PERFETTO_DCHECK(!proc_state.unwind_state.has_value()); in RecordTimedOutProcDescriptors()139 proc_state.status = ProcessState::Status::kExpired; in RecordTimedOutProcDescriptors()227 ProcessState& proc_state = ds.process_states[pid]; // insert if new in ConsumeAndUnwindReadySamples() local[all …]
27 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry()28 return EmulateInstructionARM64::AddWithCarry(N, x, y, carry_in, proc_state); in AddWithCarry()
572 EmulateInstructionARM64::ProcState &proc_state) { in AddWithCarry() argument581 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() local667 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()[all …]
156 EmulateInstructionARM64::ProcState &proc_state);