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

Side by Side Diff: src/profiler/profile-generator.cc

Issue 1952393002: Split TickSample and Sampler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/profiler/profile-generator.h" 5 #include "src/profiler/profile-generator.h"
6 6
7 #include "src/ast/scopeinfo.h" 7 #include "src/ast/scopeinfo.h"
8 #include "src/debug/debug.h" 8 #include "src/debug/debug.h"
9 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
10 #include "src/global-handles.h" 10 #include "src/global-handles.h"
11 #include "src/profiler/profile-generator-inl.h" 11 #include "src/profiler/profile-generator-inl.h"
12 #include "src/profiler/sampler.h" 12 #include "src/profiler/tick-sample.h"
13 #include "src/splay-tree-inl.h" 13 #include "src/splay-tree-inl.h"
14 #include "src/unicode.h" 14 #include "src/unicode.h"
15 15
16 namespace v8 { 16 namespace v8 {
17 namespace internal { 17 namespace internal {
18 18
19 19
20 JITLineInfoTable::JITLineInfoTable() {} 20 JITLineInfoTable::JITLineInfoTable() {}
21 21
22 22
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 case EXTERNAL: 710 case EXTERNAL:
711 return program_entry_; 711 return program_entry_;
712 case IDLE: 712 case IDLE:
713 return idle_entry_; 713 return idle_entry_;
714 default: return NULL; 714 default: return NULL;
715 } 715 }
716 } 716 }
717 717
718 } // namespace internal 718 } // namespace internal
719 } // namespace v8 719 } // namespace v8
OLDNEW
« no previous file with comments | « src/profiler/cpu-profiler.h ('k') | src/profiler/sampler.h » ('j') | src/profiler/sampler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698