Lines Matching refs:tse
280 struct thread_stack_entry *tse; in thread_stack__call_return() local
288 tse = &ts->stack[idx]; in thread_stack__call_return()
289 cr.cp = tse->cp; in thread_stack__call_return()
290 cr.call_time = tse->timestamp; in thread_stack__call_return()
292 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
293 cr.insn_count = ts->insn_count - tse->insn_count; in thread_stack__call_return()
294 cr.cyc_count = ts->cyc_count - tse->cyc_count; in thread_stack__call_return()
295 cr.db_id = tse->db_id; in thread_stack__call_return()
296 cr.call_ref = tse->ref; in thread_stack__call_return()
298 if (tse->no_call) in thread_stack__call_return()
302 if (tse->non_call) in thread_stack__call_return()
310 parent_db_id = idx ? &(tse - 1)->db_id : NULL; in thread_stack__call_return()
533 struct thread_stack_entry *tse; in thread_stack__push_cp() local
545 tse = &ts->stack[ts->cnt++]; in thread_stack__push_cp()
546 tse->ret_addr = ret_addr; in thread_stack__push_cp()
547 tse->timestamp = timestamp; in thread_stack__push_cp()
548 tse->ref = ref; in thread_stack__push_cp()
549 tse->branch_count = ts->branch_count; in thread_stack__push_cp()
550 tse->insn_count = ts->insn_count; in thread_stack__push_cp()
551 tse->cyc_count = ts->cyc_count; in thread_stack__push_cp()
552 tse->cp = cp; in thread_stack__push_cp()
553 tse->no_call = no_call; in thread_stack__push_cp()
554 tse->trace_end = trace_end; in thread_stack__push_cp()
555 tse->non_call = false; in thread_stack__push_cp()
556 tse->db_id = 0; in thread_stack__push_cp()
571 struct thread_stack_entry *tse = &ts->stack[0]; in thread_stack__pop_cp() local
573 if (tse->cp->sym == sym) in thread_stack__pop_cp()
748 struct thread_stack_entry *tse; in thread_stack__trace_begin() local
755 tse = &ts->stack[ts->cnt - 1]; in thread_stack__trace_begin()
756 if (tse->trace_end) { in thread_stack__trace_begin()
802 struct thread_stack_entry *tse = &ts->stack[ts->cnt - 1]; in thread_stack__x86_retpoline() local
804 struct symbol *sym = tse->cp->sym; in thread_stack__x86_retpoline()