int parm_start;
int locals; // total ints of parms + locals
- int profile; // runtime
- int builtinsprofile; // cost of builtin functions called by this function
- int callcount; // times the functions has been called since the last profile call
+ // these are doubles so that they can count up to 54bits or so rather than 32bit
+ double profile; // runtime
+ double builtinsprofile; // cost of builtin functions called by this function
+ double callcount; // times the functions has been called since the last profile call
int s_name;
int s_file; // source file defined in
prog->statements = (dstatement_t *)((unsigned char *)prog->progs + prog->progs->ofs_statements);
- prog->statement_profile = (int *)Mem_Alloc(prog->progs_mempool, prog->progs->numstatements * sizeof(*prog->statement_profile));
+ prog->statement_profile = (double *)Mem_Alloc(prog->progs_mempool, prog->progs->numstatements * sizeof(*prog->statement_profile));
// moved edict_size calculation down below field adding code
Con_Printf( "%s:%i: ", PRVM_GetString( prog->xfunction->s_file ), prog->statement_linenums[ opnum ] );
if (prvm_statementprofiling.integer)
- Con_Printf("%7i ", prog->statement_profile[s - prog->statements]);
+ Con_Printf("%7.0f ", prog->statement_profile[s - prog->statements]);
if ( (unsigned)s->op < sizeof(prvm_opnames)/sizeof(prvm_opnames[0]))
{
void PRVM_Profile_f (void)
{
mfunction_t *f, *best;
- int i, num, max/*, howmany*/;
+ int i, num, howmany;
+ double max;
- //howmany = 10;
- //if (Cmd_Argc() == 2)
- // howmany = atoi(Cmd_Argv(1));
- if(Cmd_Argc() != 2)
+ howmany = 1<<30;
+ if (Cmd_Argc() == 3)
+ howmany = atoi(Cmd_Argv(2));
+ else if (Cmd_Argc() != 2)
{
Con_Print("prvm_profile <program name>\n");
return;
}
if (best)
{
- //if (num < howmany)
- if (best->first_statement < 0)
- Con_Printf("%10i ----- builtin ----- %s\n", best->callcount, PRVM_GetString(best->s_name));
- else
- Con_Printf("%10i%10i%10i %s\n", best->callcount, best->profile, best->builtinsprofile, PRVM_GetString(best->s_name));
+ if (num < howmany)
+ {
+ if (best->first_statement < 0)
+ Con_Printf("%9.0f ----- builtin ----- %s\n", best->callcount, PRVM_GetString(best->s_name));
+ else
+ Con_Printf("%9.0f %9.0f %9.0f %s\n", best->callcount, best->profile, best->builtinsprofile, PRVM_GetString(best->s_name));
+ }
num++;
best->profile = 0;
best->builtinsprofile = 0;