#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <algorithm>
#include "src/d8.h"
#include "include/libplatform/libplatform.h"
#include "src/api.h"
#include "src/base/cpu.h"
#include "src/base/logging.h"
#include "src/base/platform/platform.h"
#include "src/base/sys-info.h"
#include "src/basic-block-profiler.h"
#include "src/d8-debug.h"
#include "src/debug.h"
#include "src/natives.h"
#include "src/v8.h"
#include <unistd.h>
Go to the source code of this file.
|
| v8 |
| Debugger support for the V8 JavaScript engine.
|
|
◆ DCHECK
#define DCHECK |
( |
|
condition | ) |
assert(condition) |
Definition at line 66 of file d8.cc.
◆ DUMP_TYPE
#define DUMP_TYPE |
( |
|
T | ) |
printf(" %d: \"%s\",\n", i::T, #T); |
◆ ROOT_LIST_CASE [1/2]
#define ROOT_LIST_CASE |
( |
|
type, |
|
|
|
name, |
|
|
|
camel_name |
|
) |
| if (n == NULL && o == heap->name()) n = #camel_name; |
◆ ROOT_LIST_CASE [2/2]
#define ROOT_LIST_CASE |
( |
|
type, |
|
|
|
name, |
|
|
|
camel_name |
|
) |
| if (n == NULL && o == heap->name()) n = #camel_name; |
◆ STRUCT_LIST_CASE
#define STRUCT_LIST_CASE |
( |
|
upper_name, |
|
|
|
camel_name, |
|
|
|
name |
|
) |
| if (n == NULL && o == heap->name##_map()) n = #camel_name "Map"; |
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |