1/* profiler.c */ 2void profile_start(proftime_T *tm); 3void profile_end(proftime_T *tm); 4void profile_sub(proftime_T *tm, proftime_T *tm2); 5char *profile_msg(proftime_T *tm); 6float_T profile_float(proftime_T *tm); 7void profile_setlimit(long msec, proftime_T *tm); 8int profile_passed_limit(proftime_T *tm); 9void profile_zero(proftime_T *tm); 10void profile_divide(proftime_T *tm, int count, proftime_T *tm2); 11void profile_add(proftime_T *tm, proftime_T *tm2); 12void profile_self(proftime_T *self, proftime_T *total, proftime_T *children); 13void profile_sub_wait(proftime_T *tm, proftime_T *tma); 14int profile_cmp(const proftime_T *tm1, const proftime_T *tm2); 15void ex_profile(exarg_T *eap); 16char_u *get_profile_name(expand_T *xp, int idx); 17void set_context_in_profile_cmd(expand_T *xp, char_u *arg); 18void prof_inchar_enter(void); 19void prof_inchar_exit(void); 20int prof_def_func(void); 21void func_do_profile(ufunc_T *fp); 22void prof_child_enter(proftime_T *tm); 23void prof_child_exit(proftime_T *tm); 24void func_line_start(void *cookie); 25void func_line_exec(void *cookie); 26void func_line_end(void *cookie); 27void script_do_profile(scriptitem_T *si); 28void script_prof_save(proftime_T *tm); 29void script_prof_restore(proftime_T *tm); 30void profile_dump(void); 31void script_line_start(void); 32void script_line_exec(void); 33void script_line_end(void); 34/* vim: set ft=c : */ 35