v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
execution.cc File Reference
#include <stdlib.h>
#include "v8.h"
#include "api.h"
#include "bootstrapper.h"
#include "codegen.h"
#include "debug.h"
#include "deoptimizer.h"
#include "isolate-inl.h"
#include "runtime-profiler.h"
#include "simulator.h"
#include "v8threads.h"
#include "vm-state-inl.h"
Include dependency graph for execution.cc:

Go to the source code of this file.

Namespaces

 v8
 
 v8::internal
 

Macros

#define RETURN_NATIVE_CALL(name, args, has_pending_exception)
 

Macro Definition Documentation

#define RETURN_NATIVE_CALL (   name,
  args,
  has_pending_exception 
)
Value:
do { \
Handle<Object> argv[] = args; \
ASSERT(has_pending_exception != NULL); \
return Call(isolate, \
isolate->name##_fun(), \
isolate->js_builtins_object(), \
ARRAY_SIZE(argv), argv, \
has_pending_exception); \
} while (false)
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
#define ASSERT(condition)
Definition: checks.h:329
#define ARRAY_SIZE(a)
Definition: globals.h:333

Definition at line 701 of file execution.cc.

Referenced by Execution::NewDate(), Execution::ToDetailString(), Execution::ToInt32(), Execution::ToInteger(), Execution::ToNumber(), Execution::ToObject(), Execution::ToString(), and Execution::ToUint32().