Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: src/ic/ic-compiler.cc

Issue 1356223004: Move heap and CPU profilers into a dedicated directory. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebaseline Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ic/handler-compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/ic/handler-compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698