Index: src/runtime/runtime-compiler.cc |
diff --git a/src/runtime/runtime-compiler.cc b/src/runtime/runtime-compiler.cc |
index de974a2df505aee31ec1604508e95b362ed3d13e..119f1c3875837601b98e64c840573b482cba3d03 100644 |
--- a/src/runtime/runtime-compiler.cc |
+++ b/src/runtime/runtime-compiler.cc |
@@ -128,6 +128,7 @@ class ActivationsFinder : public ThreadVisitor { |
RUNTIME_FUNCTION(Runtime_NotifyDeoptimized) { |
HandleScope scope(isolate); |
+ TimerEventScope<TimerEventDeoptimizeCode> timer(isolate); |
Michael Starzinger
2016/02/03 15:36:26
nit: Please move this down to after the usual runt
Camillo Bruni
2016/02/04 17:48:33
moved.
|
DCHECK(args.length() == 1); |
CONVERT_SMI_ARG_CHECKED(type_arg, 0); |
Deoptimizer::BailoutType type = |