Searched refs:opt_count (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/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 Ddebug-debugger.js940 ExecutionState.prototype.prepareStep = function(opt_action, opt_count,
944 var count = opt_count ? %ToNumber(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 Dhydrogen-gvn.cc633 return info()->IsStub() || info()->opt_count() + 1 < FLAG_max_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));
H A Dobjects.h6734 // disposal or not. In the former case we reset the opt_count.
6835 inline int opt_count();
6836 inline void set_opt_count(int opt_count);
6854 // Stores opt_count and bailout_reason as bit-fields.
H A Druntime.cc8778 return Smi::FromInt(function->shared()->opt_count());
H A Dobjects.cc9935 opt_count() >= FLAG_max_opt_count) {
9936 // Re-enable optimizations if they were disabled due to opt_count limit.
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc2138 CHECK_EQ(0, f->shared()->opt_count());
2181 CHECK_EQ(0, f->shared()->opt_count());

Completed in 1138 milliseconds