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

Side by Side Diff: src/api.cc

Issue 941973002: CpuProfiler: eliminate cpu-profiler dependency from heap-inl.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments addressed Created 5 years, 10 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 | « no previous file | src/arm/lithium-codegen-arm.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 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/api.h" 5 #include "src/api.h"
6 6
7 #include <string.h> // For memcpy, strlen. 7 #include <string.h> // For memcpy, strlen.
8 #ifdef V8_USE_ADDRESS_SANITIZER 8 #ifdef V8_USE_ADDRESS_SANITIZER
9 #include <sanitizer/asan_interface.h> 9 #include <sanitizer/asan_interface.h>
10 #endif // V8_USE_ADDRESS_SANITIZER 10 #endif // V8_USE_ADDRESS_SANITIZER
(...skipping 7227 matching lines...) Expand 10 before | Expand all | Expand 10 after
7238 return node->entry()->bailout_reason(); 7238 return node->entry()->bailout_reason();
7239 } 7239 }
7240 7240
7241 7241
7242 unsigned CpuProfileNode::GetHitCount() const { 7242 unsigned CpuProfileNode::GetHitCount() const {
7243 return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks(); 7243 return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks();
7244 } 7244 }
7245 7245
7246 7246
7247 unsigned CpuProfileNode::GetCallUid() const { 7247 unsigned CpuProfileNode::GetCallUid() const {
7248 return reinterpret_cast<const i::ProfileNode*>(this)->entry()->GetCallUid(); 7248 return reinterpret_cast<const i::ProfileNode*>(this)->function_id();
7249 } 7249 }
7250 7250
7251 7251
7252 unsigned CpuProfileNode::GetNodeId() const { 7252 unsigned CpuProfileNode::GetNodeId() const {
7253 return reinterpret_cast<const i::ProfileNode*>(this)->id(); 7253 return reinterpret_cast<const i::ProfileNode*>(this)->id();
7254 } 7254 }
7255 7255
7256 7256
7257 int CpuProfileNode::GetChildrenCount() const { 7257 int CpuProfileNode::GetChildrenCount() const {
7258 return reinterpret_cast<const i::ProfileNode*>(this)->children()->length(); 7258 return reinterpret_cast<const i::ProfileNode*>(this)->children()->length();
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
7837 Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate()); 7837 Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate());
7838 Address callback_address = 7838 Address callback_address =
7839 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); 7839 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback));
7840 VMState<EXTERNAL> state(isolate); 7840 VMState<EXTERNAL> state(isolate);
7841 ExternalCallbackScope call_scope(isolate, callback_address); 7841 ExternalCallbackScope call_scope(isolate, callback_address);
7842 callback(info); 7842 callback(info);
7843 } 7843 }
7844 7844
7845 7845
7846 } } // namespace v8::internal 7846 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698