| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index 59b1a652a2fae50264d37b9c02db9a2e58192b58..2dda57b831d5355bc6ba8de46c4bfa0c2a084ab7 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -2500,7 +2500,6 @@ void CallIC::HandleMiss(Handle<Object> function) {
|
|
|
| // Used from ic-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_CallIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(3, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2517,7 +2516,6 @@ RUNTIME_FUNCTION(Runtime_CallIC_Miss) {
|
|
|
| // Used from ic-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_LoadIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(4, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2557,7 +2555,6 @@ RUNTIME_FUNCTION(Runtime_LoadIC_Miss) {
|
|
|
| // Used from ic-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_LoadGlobalIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(2, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2629,7 +2626,6 @@ RUNTIME_FUNCTION(Runtime_LoadGlobalIC_Slow) {
|
|
|
| // Used from ic-<arch>.cc
|
| RUNTIME_FUNCTION(Runtime_KeyedLoadIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(4, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2646,7 +2642,6 @@ RUNTIME_FUNCTION(Runtime_KeyedLoadIC_Miss) {
|
|
|
|
|
| RUNTIME_FUNCTION(Runtime_KeyedLoadIC_MissFromStubFailure) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| typedef LoadWithVectorDescriptor Descriptor;
|
| DCHECK_EQ(Descriptor::kParameterCount, args.length());
|
| @@ -2665,7 +2660,6 @@ RUNTIME_FUNCTION(Runtime_KeyedLoadIC_MissFromStubFailure) {
|
|
|
| // Used from ic-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_StoreIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(5, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2693,7 +2687,6 @@ RUNTIME_FUNCTION(Runtime_StoreIC_Miss) {
|
|
|
| // Used from ic-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_KeyedStoreIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(5, args.length());
|
| // Runtime functions don't follow the IC's calling convention.
|
| @@ -2729,7 +2722,6 @@ RUNTIME_FUNCTION(Runtime_KeyedStoreIC_Slow) {
|
|
|
|
|
| RUNTIME_FUNCTION(Runtime_ElementsTransitionAndStoreIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| // Runtime functions don't follow the IC's calling convention.
|
| Handle<Object> object = args.at<Object>(0);
|
| @@ -2868,7 +2860,6 @@ MaybeHandle<Object> BinaryOpIC::Transition(
|
|
|
|
|
| RUNTIME_FUNCTION(Runtime_BinaryOpIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(2, args.length());
|
| typedef BinaryOpDescriptor Descriptor;
|
| @@ -2881,7 +2872,6 @@ RUNTIME_FUNCTION(Runtime_BinaryOpIC_Miss) {
|
|
|
|
|
| RUNTIME_FUNCTION(Runtime_BinaryOpIC_MissWithAllocationSite) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(3, args.length());
|
| typedef BinaryOpWithAllocationSiteDescriptor Descriptor;
|
| @@ -2945,7 +2935,6 @@ Code* CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
|
|
|
| // Used from CompareICStub::GenerateMiss in code-stubs-<arch>.cc.
|
| RUNTIME_FUNCTION(Runtime_CompareIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| HandleScope scope(isolate);
|
| DCHECK(args.length() == 3);
|
| CompareIC ic(isolate, static_cast<Token::Value>(args.smi_at(2)));
|
| @@ -2970,7 +2959,6 @@ Handle<Object> ToBooleanIC::ToBoolean(Handle<Object> object) {
|
|
|
|
|
| RUNTIME_FUNCTION(Runtime_ToBooleanIC_Miss) {
|
| - TimerEventScope<TimerEventIcMiss> timer(isolate);
|
| DCHECK(args.length() == 1);
|
| HandleScope scope(isolate);
|
| Handle<Object> object = args.at<Object>(0);
|
|
|