Lines Matching full:tse

303 	struct thread_stack_entry *tse;  in thread_stack__call_return()  local
311 tse = &ts->stack[idx]; in thread_stack__call_return()
312 cr.cp = tse->cp; in thread_stack__call_return()
313 cr.call_time = tse->timestamp; in thread_stack__call_return()
315 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
316 cr.insn_count = ts->insn_count - tse->insn_count; in thread_stack__call_return()
317 cr.cyc_count = ts->cyc_count - tse->cyc_count; in thread_stack__call_return()
318 cr.db_id = tse->db_id; in thread_stack__call_return()
319 cr.call_ref = tse->ref; in thread_stack__call_return()
321 if (tse->no_call) in thread_stack__call_return()
325 if (tse->non_call) in thread_stack__call_return()
333 parent_db_id = idx ? &(tse - 1)->db_id : NULL; in thread_stack__call_return()
786 struct thread_stack_entry *tse; in thread_stack__push_cp() local
798 tse = &ts->stack[ts->cnt++]; in thread_stack__push_cp()
799 tse->ret_addr = ret_addr; in thread_stack__push_cp()
800 tse->timestamp = timestamp; in thread_stack__push_cp()
801 tse->ref = ref; in thread_stack__push_cp()
802 tse->branch_count = ts->branch_count; in thread_stack__push_cp()
803 tse->insn_count = ts->insn_count; in thread_stack__push_cp()
804 tse->cyc_count = ts->cyc_count; in thread_stack__push_cp()
805 tse->cp = cp; in thread_stack__push_cp()
806 tse->no_call = no_call; in thread_stack__push_cp()
807 tse->trace_end = trace_end; in thread_stack__push_cp()
808 tse->non_call = false; in thread_stack__push_cp()
809 tse->db_id = 0; in thread_stack__push_cp()
824 struct thread_stack_entry *tse = &ts->stack[0]; in thread_stack__pop_cp() local
826 if (tse->cp->sym == sym) in thread_stack__pop_cp()
1001 struct thread_stack_entry *tse; in thread_stack__trace_begin() local
1008 tse = &ts->stack[ts->cnt - 1]; in thread_stack__trace_begin()
1009 if (tse->trace_end) { in thread_stack__trace_begin()
1053 struct thread_stack_entry *tse = &ts->stack[ts->cnt - 1]; in thread_stack__x86_retpoline() local
1055 struct symbol *sym = tse->cp->sym; in thread_stack__x86_retpoline()