OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/ic/ic-compiler.h" | 5 #include "src/ic/ic-compiler.h" |
6 | 6 |
7 #include "src/cpu-profiler.h" | |
8 #include "src/ic/handler-compiler.h" | 7 #include "src/ic/handler-compiler.h" |
9 #include "src/ic/ic-inl.h" | 8 #include "src/ic/ic-inl.h" |
| 9 #include "src/profiler/cpu-profiler.h" |
10 | 10 |
11 | 11 |
12 namespace v8 { | 12 namespace v8 { |
13 namespace internal { | 13 namespace internal { |
14 | 14 |
15 | 15 |
16 Handle<Code> PropertyICCompiler::Find(Handle<Name> name, | 16 Handle<Code> PropertyICCompiler::Find(Handle<Name> name, |
17 Handle<Map> stub_holder, Code::Kind kind, | 17 Handle<Map> stub_holder, Code::Kind kind, |
18 ExtraICState extra_state, | 18 ExtraICState extra_state, |
19 CacheHolderFlag cache_holder) { | 19 CacheHolderFlag cache_holder) { |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 | 443 |
444 TailCallBuiltin(masm(), Builtins::kKeyedStoreIC_Miss); | 444 TailCallBuiltin(masm(), Builtins::kKeyedStoreIC_Miss); |
445 | 445 |
446 return GetCode(kind(), Code::NORMAL, factory()->empty_string()); | 446 return GetCode(kind(), Code::NORMAL, factory()->empty_string()); |
447 } | 447 } |
448 | 448 |
449 | 449 |
450 #undef __ | 450 #undef __ |
451 } // namespace internal | 451 } // namespace internal |
452 } // namespace v8 | 452 } // namespace v8 |
OLD | NEW |