V8 Project
v8::internal::RegExpCompileData Struct Reference

#include <jsregexp.h>

+ Collaboration diagram for v8::internal::RegExpCompileData:

Public Member Functions

 RegExpCompileData ()
 

Public Attributes

RegExpTreetree
 
RegExpNodenode
 
bool simple
 
bool contains_anchor
 
Handle< Stringerror
 
int capture_count
 

Detailed Description

Definition at line 1631 of file jsregexp.h.

Constructor & Destructor Documentation

◆ RegExpCompileData()

v8::internal::RegExpCompileData::RegExpCompileData ( )
inline

Definition at line 1632 of file jsregexp.h.

1633  : tree(NULL),
1634  node(NULL),
1635  simple(true),
1636  contains_anchor(false),
1637  capture_count(0) { }
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL

Member Data Documentation

◆ capture_count

int v8::internal::RegExpCompileData::capture_count

◆ contains_anchor

bool v8::internal::RegExpCompileData::contains_anchor

Definition at line 1641 of file jsregexp.h.

Referenced by v8::internal::RegExpEngine::Compile().

◆ error

Handle<String> v8::internal::RegExpCompileData::error

◆ node

RegExpNode* v8::internal::RegExpCompileData::node

Definition at line 1639 of file jsregexp.h.

Referenced by v8::internal::RegExpEngine::Compile().

◆ simple

bool v8::internal::RegExpCompileData::simple

Definition at line 1640 of file jsregexp.h.

Referenced by v8::internal::RegExpImpl::Compile().

◆ tree

RegExpTree* v8::internal::RegExpCompileData::tree

The documentation for this struct was generated from the following file: