#include "v8.h"
Go to the source code of this file.
#define DEFINE_EXTENSION_FLAG |
( |
|
Name, |
|
|
|
Ident |
|
) |
| static const CcTestExtensionFlags Name(1 << Name##_ID); |
#define DEFINE_EXTENSION_ID |
( |
|
Name, |
|
|
|
Ident |
|
) |
| Name##_ID, |
#define DEPENDENT_TEST |
( |
|
Name, |
|
|
|
Dep |
|
) |
| |
Value:static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true, true); \
static void Test##Name()
Definition at line 48 of file cctest.h.
#define DISABLED_TEST |
( |
|
Name | ) |
|
Value:static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name,
NULL,
false,
true); \
static void Test##Name()
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter NULL
Definition at line 55 of file cctest.h.
#define EXTENSION_LIST |
( |
|
V | ) |
|
Value:V(GC_EXTENSION, "v8/gc") \
V(PRINT_EXTENSION, "v8/print") \
V(PROFILER_EXTENSION, "v8/profiler") \
V(TRACE_EXTENSION, "v8/trace")
Definition at line 61 of file cctest.h.
Referenced by CcTest::NewContext().
Value:static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name,
NULL,
true,
true); \
static void Test##Name()
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter NULL
Definition at line 34 of file cctest.h.
#define THREADED_TEST |
( |
|
Name | ) |
|
Value:static void Test##Name(); \
RegisterThreadedTest register_##Name(Test##Name, #Name); \
Definition at line 205 of file cctest.h.
#define UNINITIALIZED_TEST |
( |
|
Name | ) |
|
Value:static void Test##Name(); \
CcTest register_test_##Name(Test##Name, __FILE__, #Name,
NULL,
true,
false); \
static void Test##Name()
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter NULL
Definition at line 41 of file cctest.h.