40 #if defined(BUILDING_V8_SHARED) && defined(USING_V8_SHARED)
41 #error both BUILDING_V8_SHARED and USING_V8_SHARED are set - please check the\
42 build configuration to ensure that at most one of these is set
45 #ifdef BUILDING_V8_SHARED
46 #define V8EXPORT __declspec(dllexport)
48 #define V8EXPORT __declspec(dllimport)
51 #endif // BUILDING_V8_SHARED
58 #if defined(__GNUC__) && (__GNUC__ >= 4) && defined(V8_SHARED)
59 #define V8EXPORT __attribute__ ((visibility("default")))
60 #else // defined(__GNUC__) && (__GNUC__ >= 4)
62 #endif // defined(__GNUC__) && (__GNUC__ >= 4)
74 : data_(data), size_(size) { }
84 size_t size()
const {
return size_; }
87 const uint8_t*
data()
const {
return data_; }
90 const uint8_t*
const data_;
113 size_t max_stack_size);
117 #endif // PREPARSER_H
activate correct semantics for inheriting readonliness enable harmony semantics for typeof enable harmony enable harmony proxies enable all harmony harmony_scoping harmony_proxies harmony_scoping tracks arrays with only smi values automatically unbox arrays of doubles use crankshaft use hydrogen range analysis use hydrogen global value numbering use function inlining maximum number of AST nodes considered for a single inlining loop invariant code motion print statistics for hydrogen trace generated IR for specified phases trace register allocator trace range analysis trace representation types environment for every instruction put a break point before deoptimizing polymorphic inlining perform array bounds checks elimination trace on stack replacement optimize closures functions with arguments object optimize functions containing for in loops profiler considers IC stability primitive functions trigger their own optimization re try self optimization if it failed insert an interrupt check at function exit execution budget before interrupt is triggered call count before self optimization self_optimization count_based_interrupts weighted_back_edges trace_opt emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of SAHF instruction if enable use of VFP3 instructions if available this implies enabling ARMv7 enable use of ARMv7 instructions if enable use of MIPS FPU instructions if NULL
const uint8_t * data() const
PreParserData V8EXPORT Preparse(UnicodeInputStream *input, size_t max_stack_size)
PreParserData(size_t size, const uint8_t *data)
static PreParserData StackOverflow()