V8 Project
v8::internal::DispatchTable::Entry Class Reference

#include <jsregexp.h>

+ Collaboration diagram for v8::internal::DispatchTable::Entry:

Public Member Functions

 Entry ()
 
 Entry (uc16 from, uc16 to, OutSet *out_set)
 
uc16 from ()
 
uc16 to ()
 
void set_to (uc16 value)
 
void AddValue (int value, Zone *zone)
 
OutSetout_set ()
 

Private Attributes

uc16 from_
 
uc16 to_
 
OutSetout_set_
 

Detailed Description

Definition at line 329 of file jsregexp.h.

Constructor & Destructor Documentation

◆ Entry() [1/2]

v8::internal::DispatchTable::Entry::Entry ( )
inline

Definition at line 331 of file jsregexp.h.

331 : from_(0), to_(0), out_set_(NULL) { }
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

◆ Entry() [2/2]

v8::internal::DispatchTable::Entry::Entry ( uc16  from,
uc16  to,
OutSet out_set 
)
inline

Member Function Documentation

◆ AddValue()

void v8::internal::DispatchTable::Entry::AddValue ( int  value,
Zone zone 
)
inline

Definition at line 337 of file jsregexp.h.

337  {
338  out_set_ = out_set_->Extend(value, zone);
339  }
OutSet * Extend(unsigned value, Zone *zone)
Definition: jsregexp.cc:5574

References v8::internal::OutSet::Extend(), and out_set_.

Referenced by v8::internal::DispatchTable::AddRange().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ from()

uc16 v8::internal::DispatchTable::Entry::from ( )
inline

Definition at line 334 of file jsregexp.h.

334 { return from_; }

References from_.

Referenced by v8::internal::DispatchTable::AddRange(), and v8::internal::CharacterRangeSplitter::Call().

+ Here is the caller graph for this function:

◆ out_set()

OutSet* v8::internal::DispatchTable::Entry::out_set ( )
inline

Definition at line 340 of file jsregexp.h.

340 { return out_set_; }

References out_set_.

Referenced by v8::internal::DispatchTable::AddRange(), v8::internal::CharacterRangeSplitter::Call(), and v8::internal::DispatchTable::Get().

+ Here is the caller graph for this function:

◆ set_to()

void v8::internal::DispatchTable::Entry::set_to ( uc16  value)
inline

Definition at line 336 of file jsregexp.h.

336 { to_ = value; }

References to_.

Referenced by v8::internal::DispatchTable::AddRange().

+ Here is the caller graph for this function:

◆ to()

uc16 v8::internal::DispatchTable::Entry::to ( )
inline

Definition at line 335 of file jsregexp.h.

335 { return to_; }

References to_.

Referenced by v8::internal::DispatchTable::AddRange(), v8::internal::CharacterRangeSplitter::Call(), and v8::internal::AddDispatchRange::Call().

+ Here is the caller graph for this function:

Member Data Documentation

◆ from_

uc16 v8::internal::DispatchTable::Entry::from_
private

Definition at line 342 of file jsregexp.h.

Referenced by from().

◆ out_set_

OutSet* v8::internal::DispatchTable::Entry::out_set_
private

Definition at line 344 of file jsregexp.h.

Referenced by AddValue(), and out_set().

◆ to_

uc16 v8::internal::DispatchTable::Entry::to_
private

Definition at line 343 of file jsregexp.h.

Referenced by set_to(), and to().


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