Home
last modified time | relevance | path

Searched refs:calls_eval (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/parsing/
Dpreparse-data.h57 bool calls_eval) = 0;
81 bool calls_eval) { in LogFunction() argument
89 calls_eval_ = calls_eval; in LogFunction()
126 bool calls_eval() const { in calls_eval() function
172 bool calls_eval) { in LogFunction() argument
179 function_store_.Add(calls_eval); in LogFunction()
Dpreparser.cc1187 scope_->uses_super_property(), scope_->calls_eval()); in ParseLazyFunctionLiteralBody()
Dparser.h239 bool calls_eval() { return backing_[kCallsEvalIndex]; } in calls_eval() function
Dparser.cc4377 if (entry.calls_eval()) scope_->RecordEvalCall(); in SkipLazyFunctionBody()
4415 if (logger.calls_eval()) { in SkipLazyFunctionBody()
4424 scope_->uses_super_property(), scope_->calls_eval()); in SkipLazyFunctionBody()
/external/v8/src/ast/
Dscopes.h344 bool calls_eval() const { return scope_calls_eval_; } in calls_eval() function
Dast-numbering.cc584 if (scope->calls_eval()) DisableOptimization(kFunctionCallsEval); in Renumber()
Dscopeinfo.cc91 CallsEvalField::encode(scope->calls_eval()) | in Create()
Dscopes.cc407 if (calls_eval()) other->RecordEvalCall(); in PropagateUsageFlagsToScope()
/external/v8/src/
Dcompiler.cc775 scope->calls_eval()) { in IgnitionShouldFallbackToFullCodeGen()
/external/v8/test/cctest/
Dtest-parsing.cc1094 CHECK_EQ((source_data[i].expected & EVAL) != 0, scope->calls_eval()); in TEST()