OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/heap-snapshot-generator.h" | 5 #include "src/profiler/heap-snapshot-generator.h" |
6 | 6 |
7 #include "src/allocation-tracker.h" | |
8 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
9 #include "src/conversions.h" | 8 #include "src/conversions.h" |
10 #include "src/debug/debug.h" | 9 #include "src/debug/debug.h" |
11 #include "src/heap-profiler.h" | 10 #include "src/profiler/allocation-tracker.h" |
12 #include "src/heap-snapshot-generator-inl.h" | 11 #include "src/profiler/heap-profiler.h" |
| 12 #include "src/profiler/heap-snapshot-generator-inl.h" |
13 #include "src/types.h" | 13 #include "src/types.h" |
14 | 14 |
15 namespace v8 { | 15 namespace v8 { |
16 namespace internal { | 16 namespace internal { |
17 | 17 |
18 | 18 |
19 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to) | 19 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to) |
20 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), | 20 : bit_field_(TypeField::encode(type) | FromIndexField::encode(from)), |
21 to_index_(to), | 21 to_index_(to), |
22 name_(name) { | 22 name_(name) { |
(...skipping 3149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3172 for (int i = 1; i < sorted_strings.length(); ++i) { | 3172 for (int i = 1; i < sorted_strings.length(); ++i) { |
3173 writer_->AddCharacter(','); | 3173 writer_->AddCharacter(','); |
3174 SerializeString(sorted_strings[i]); | 3174 SerializeString(sorted_strings[i]); |
3175 if (writer_->aborted()) return; | 3175 if (writer_->aborted()) return; |
3176 } | 3176 } |
3177 } | 3177 } |
3178 | 3178 |
3179 | 3179 |
3180 } // namespace internal | 3180 } // namespace internal |
3181 } // namespace v8 | 3181 } // namespace v8 |
OLD | NEW |