![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <profile-generator.h>
Classes | |
| struct | SourcePositionTuple |
Public Member Functions | |
| SourcePositionTable ()=default | |
| SourcePositionTable (const SourcePositionTable &)=delete | |
| SourcePositionTable & | operator= (const SourcePositionTable &)=delete |
| void | SetPosition (int pc_offset, int line, int inlining_id) |
| int | GetSourceLineNumber (int pc_offset) const |
| int | GetInliningId (int pc_offset) const |
| size_t | Size () const |
| void | print () const |
Private Attributes | |
| std::vector< SourcePositionTuple > | pc_offsets_to_lines_ |
Additional Inherited Members | |
Static Public Member Functions inherited from v8::internal::Malloced | |
| static void * | operator new (size_t size) |
| static void | operator delete (void *p) |
Definition at line 33 of file profile-generator.h.
|
default |
|
delete |
| int v8::internal::SourcePositionTable::GetInliningId | ( | int | pc_offset | ) | const |
Definition at line 58 of file profile-generator.cc.
| int v8::internal::SourcePositionTable::GetSourceLineNumber | ( | int | pc_offset | ) | const |
Definition at line 47 of file profile-generator.cc.
|
delete |
| void v8::internal::SourcePositionTable::print | ( | ) | const |
Definition at line 74 of file profile-generator.cc.
| void v8::internal::SourcePositionTable::SetPosition | ( | int | pc_offset, |
| int | line, | ||
| int | inlining_id ) |
Definition at line 24 of file profile-generator.cc.
| size_t v8::internal::SourcePositionTable::Size | ( | ) | const |
Definition at line 69 of file profile-generator.cc.
|
private |
Definition at line 58 of file profile-generator.h.