Searched refs:IRREGEXP (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | js-regexp.cc | 110 CHECK_EQ(type_tag(), IRREGEXP); in backtrack_limit() 161 DCHECK_EQ(type_tag(), JSRegExp::IRREGEXP); in code() 172 DCHECK(type_tag() == JSRegExp::IRREGEXP || in bytecode() 195 return FLAG_regexp_tier_up && type_tag() == JSRegExp::IRREGEXP; in CanTierUp() 212 DCHECK_EQ(type_tag(), JSRegExp::IRREGEXP); in ResetLastTierUpTick() 220 DCHECK_EQ(type_tag(), JSRegExp::IRREGEXP); in TierUpTick() 231 DCHECK_EQ(type_tag(), JSRegExp::IRREGEXP); in MarkTierUpForNextExec()
|
D | js-regexp-inl.h | 42 case IRREGEXP: in capture_count() 50 CHECK_EQ(type_tag(), IRREGEXP); in max_register_count() 101 if (type_tag() != IRREGEXP) return false; in HasCompiledCode()
|
D | js-regexp.h | 43 IRREGEXP, // Compiled with Irregexp (code or bytecode). enumerator 134 return t == IRREGEXP || t == EXPERIMENTAL; in TypeSupportsCaptures()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp.cc | 285 case JSRegExp::IRREGEXP: in EnsureFullyCompiled() 321 case JSRegExp::IRREGEXP: in Exec() 731 DCHECK_EQ(regexp->type_tag(), JSRegExp::IRREGEXP); in IrregexpExec() 1064 case JSRegExp::IRREGEXP: { in RegExpGlobalCache() 1167 case JSRegExp::IRREGEXP: { in FetchNext()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-test.cc | 1335 if (regexp.type_tag() == JSRegExp::IRREGEXP) { in RUNTIME_FUNCTION() 1349 if (regexp.type_tag() == JSRegExp::IRREGEXP) { in RUNTIME_FUNCTION() 1369 case JSRegExp::IRREGEXP: in RUNTIME_FUNCTION()
|
D | runtime-regexp.cc | 1179 if (FLAG_regexp_tier_up && regexp->type_tag() == JSRegExp::IRREGEXP) { in SearchRegExpMultiple() 1428 if (FLAG_regexp_tier_up && regexp->type_tag() == JSRegExp::IRREGEXP) { in RegExpReplace()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-regexp-gen.cc | 309 SmiConstant(JSRegExp::IRREGEXP)), in ConstructNewResultFromMatchInfo() 475 JSRegExp::IRREGEXP, in RegExpExecInternal()
|
/third_party/node/deps/v8/src/diagnostics/ |
D | objects-debug.cc | 1525 case JSRegExp::IRREGEXP: { in JSRegExpVerify()
|
/third_party/node/deps/v8/src/heap/ |
D | factory.cc | 3597 store.set(JSRegExp::kTagIndex, Smi::FromInt(JSRegExp::IRREGEXP)); in SetRegExpIrregexpData()
|