зеркало из https://github.com/mozilla/pluotsorbet.git
profile calls to native/override functions
This commit is contained in:
Родитель
85616f1e6a
Коммит
bd1b5ab242
11
vm.js
11
vm.js
|
@ -1050,7 +1050,16 @@ VM.execute = function(ctx) {
|
|||
if (Alt) {
|
||||
try {
|
||||
Instrument.callPauseHooks(ctx.current());
|
||||
Alt.invoke(ctx, methodInfo);
|
||||
if (Instrument.profiling) {
|
||||
var then = performance.now();
|
||||
Alt.invoke(ctx, methodInfo);
|
||||
var key = Instrument.getKey(methodInfo);
|
||||
var methodProfileData = Instrument.profile[key] || (Instrument.profile[key] = { count: 0, cost: 0 });
|
||||
methodProfileData.count++;
|
||||
methodProfileData.cost += performance.now() - then;
|
||||
} else {
|
||||
Alt.invoke(ctx, methodInfo);
|
||||
}
|
||||
Instrument.callResumeHooks(ctx.current());
|
||||
} catch (e) {
|
||||
Instrument.callResumeHooks(ctx.current());
|
||||
|
|
Загрузка…
Ссылка в новой задаче