This commit is contained in:
2025-03-12 12:37:19 +03:00
committed by Dudarenko
parent 0c9f0664fd
commit d4fb323f86
428 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#include "Interval.h"
#include "CallInfoStructs.h"
void FuncCall::IntervalTime()
{
binter_Info* tmp=(binter_Info*) call_params;
RegularTime(); // add time befor changing interval
switch(func_id) {
case binter_ :
Interval::Enter(__IT_USER, tmp->line, tmp->file, tmp->index);
break;
case bsloop_ :
Interval::Enter(__IT_SEQ, tmp->line, tmp->file, tmp->index);
break;
case bploop_ :
Interval::Enter(__IT_PAR, tmp->line, tmp->file, tmp->index);
break;
case einter_ :
case eloop_ :
Interval::Leave();
break;
}
}