Home | History | Annotate | Download | only in interpreter

Lines Matching defs:profiler

57 #include "Profiler.h"
682 if (Profiler* profiler = *Profiler::enabledProfilerReference())
683 profiler->exceptionUnwind(callFrame);
688 if (Profiler* profiler = *Profiler::enabledProfilerReference())
689 profiler->exceptionUnwind(callFrame);
756 Profiler** profiler = Profiler::enabledProfilerReference();
757 if (*profiler)
758 (*profiler)->willExecute(callFrame, program->sourceURL(), program->lineNo());
775 if (*profiler)
776 (*profiler)->didExecute(callFrame, program->sourceURL(), program->lineNo());
827 Profiler** profiler = Profiler::enabledProfilerReference();
828 if (*profiler)
829 (*profiler)->willExecute(callFrame, function);
845 if (*profiler)
846 (*profiler)->didExecute(callFrame, function);
859 Profiler** profiler = Profiler::enabledProfilerReference();
860 if (*profiler)
861 (*profiler)->willExecute(callFrame, function);
869 if (*profiler)
870 (*profiler)->didExecute(callFrame, function);
916 Profiler** profiler = Profiler::enabledProfilerReference();
917 if (*profiler)
918 (*profiler)->willExecute(callFrame, constructor);
934 if (*profiler)
935 (*profiler)->didExecute(callFrame, constructor);
951 Profiler** profiler = Profiler::enabledProfilerReference();
952 if (*profiler)
953 (*profiler)->willExecute(callFrame, constructor);
961 if (*profiler)
962 (*profiler)->didExecute(callFrame, constructor);
1018 Profiler** profiler = Profiler::enabledProfilerReference();
1019 if (*profiler)
1020 (*profiler)->willExecute(closure.oldCallFrame, closure.function);
1042 if (*profiler)
1043 (*profiler)->didExecute(closure.oldCallFrame, closure.function);
1124 Profiler** profiler = Profiler::enabledProfilerReference();
1125 if (*profiler)
1126 (*profiler)->willExecute(callFrame, eval->sourceURL(), eval->lineNo());
1149 if (*profiler)
1150 (*profiler)->didExecute(callFrame, eval->sourceURL(), eval->lineNo());
1452 Profiler** enabledProfilerReference = Profiler::enabledProfilerReference();
4736 Notifies the profiler of the beginning of a function call. This opcode
4750 Notifies the profiler of the end of a function call. This opcode