![]() |
v8
3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
|
#include <jsregexp.h>


Public Types | |
| enum | Action { ACCEPT, BACKTRACK, NEGATIVE_SUBMATCH_SUCCESS } |
Public Member Functions | |
| EndNode (Action action, Zone *zone) | |
| virtual void | Accept (NodeVisitor *visitor) |
| virtual void | Emit (RegExpCompiler *compiler, Trace *trace) |
| virtual int | EatsAtLeast (int still_to_find, int recursion_depth, bool not_at_start) |
| virtual void | GetQuickCheckDetails (QuickCheckDetails *details, RegExpCompiler *compiler, int characters_filled_in, bool not_at_start) |
| virtual void | FillInBMInfo (int offset, int recursion_depth, int budget, BoyerMooreLookahead *bm, bool not_at_start) |
Public Member Functions inherited from RegExpNode | |
| RegExpNode (Zone *zone) | |
| virtual | ~RegExpNode () |
| bool | EmitQuickCheck (RegExpCompiler *compiler, Trace *trace, bool preload_has_checked_bounds, Label *on_possible_success, QuickCheckDetails *details_return, bool fall_through_on_failure) |
| virtual int | GreedyLoopTextLength () |
| virtual RegExpNode * | GetSuccessorOfOmnivorousTextNode (RegExpCompiler *compiler) |
| virtual RegExpNode * | FilterASCII (int depth) |
| RegExpNode * | replacement () |
| RegExpNode * | set_replacement (RegExpNode *replacement) |
| void | SaveBMInfo (BoyerMooreLookahead *bm, bool not_at_start, int offset) |
| Label * | label () |
| NodeInfo * | info () |
| BoyerMooreLookahead * | bm_info (bool not_at_start) |
| Zone * | zone () const |
Public Member Functions inherited from ZoneObject | |
| INLINE (void *operator new(size_t size, Zone *zone)) | |
| void | operator delete (void *, size_t) |
| void | operator delete (void *pointer, Zone *zone) |
Additional Inherited Members | |
Static Public Attributes inherited from RegExpNode | |
| static const int | kNodeIsTooComplexForGreedyLoops = -1 |
| static const int | kFillInBMBudget = 200 |
| static const int | kMaxCopiesCodeGenerated = 10 |
Protected Types inherited from RegExpNode | |
| enum | LimitResult { DONE, CONTINUE } |
Protected Member Functions inherited from RegExpNode | |
| LimitResult | LimitVersions (RegExpCompiler *compiler, Trace *trace) |
| void | set_bm_info (bool not_at_start, BoyerMooreLookahead *bm) |
Protected Attributes inherited from RegExpNode | |
| RegExpNode * | replacement_ |
Definition at line 974 of file jsregexp.h.
| enum Action |
| Enumerator | |
|---|---|
| ACCEPT | |
| BACKTRACK | |
| NEGATIVE_SUBMATCH_SUCCESS | |
Definition at line 976 of file jsregexp.h.
Definition at line 977 of file jsregexp.h.
|
virtual |
Implements RegExpNode.
|
inlinevirtual |
Implements RegExpNode.
Definition at line 981 of file jsregexp.h.
|
virtual |
Implements RegExpNode.
Reimplemented in NegativeSubmatchSuccess.
Definition at line 1523 of file jsregexp.cc.
References Trace::backtrack(), RegExpMacroAssembler::Bind(), Trace::Flush(), RegExpMacroAssembler::GoTo(), Trace::is_trivial(), RegExpCompiler::macro_assembler(), RegExpMacroAssembler::Succeed(), UNIMPLEMENTED, and UNREACHABLE.
|
inlinevirtual |
|
inlinevirtual |