HomeSort by relevance Sort by last modified time
    Searched defs:opt_count (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
compiler.cc 158 int opt_count = function->shared()->opt_count(); local
159 function->shared()->set_opt_count(opt_count + 1);
217 if (info->shared_info()->opt_count() > kMaxOptCount) {
  /external/chromium_org/v8/src/
compiler.cc 112 opt_count_ = shared_info().is_null() ? 0 : shared_info()->opt_count();
267 int opt_count = function->shared()->opt_count(); local
268 function->shared()->set_opt_count(opt_count + 1);
345 if (info()->opt_count() > kMaxOptCount) {
    [all...]
deoptimizer.cc 624 int opt_count = function->shared()->opt_count(); local
625 if (opt_count > 0) opt_count--;
626 function->shared()->set_opt_count(opt_count);
    [all...]
compiler.h 89 int opt_count() const { return opt_count_; } function in class:v8::internal::CompilationInfo
430 // A copy of shared_info()->opt_count() to avoid handle deref

Completed in 44 milliseconds