| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |