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

  /external/v8/src/
compiler.cc 177 opt_count_(has_shared_info() ? shared_info()->opt_count() : 0),
383 if (info()->opt_count() > kMaxOptCount) {
666 int opt_count = function->shared()->opt_count(); local
667 function->shared()->set_opt_count(opt_count + 1);
    [all...]
compiler.h 165 int opt_count() const { return opt_count_; } function in class:v8::internal::CompilationInfo
510 // A copy of shared_info()->opt_count() to avoid handle deref
deoptimizer.cc 544 int opt_count = function->shared()->opt_count(); local
545 if (opt_count > 0) opt_count--;
546 function->shared()->set_opt_count(opt_count);
    [all...]

Completed in 87 milliseconds