Searched defs:opt_count (Results 1 - 4 of 4) sorted by path

/external/v8/src/
H A Dcompiler.cc154 opt_count_ = shared_info().is_null() ? 0 : shared_info()->opt_count();
349 if (info()->opt_count() > kMaxOptCount) {
515 int opt_count = function->shared()->opt_count(); local
516 function->shared()->set_opt_count(opt_count + 1);
H A Dcompiler.h128 int opt_count() const { return opt_count_; } function in class:v8::internal::CompilationInfo
497 // A copy of shared_info()->opt_count() to avoid handle deref
H A Ddeoptimizer.cc589 int opt_count = function->shared()->opt_count(); local
590 if (opt_count > 0) opt_count--;
591 function->shared()->set_opt_count(opt_count);
H A Dobjects-inl.h5739 int SharedFunctionInfo::opt_count() { function in class:v8::internal::Code::FindAndReplacePattern::SharedFunctionInfo
5744 void SharedFunctionInfo::set_opt_count(int opt_count) { argument
5746 OptCountBits::update(opt_count_and_bailout_reason(), opt_count));

Completed in 250 milliseconds