HomeSort by relevance Sort by last modified time
    Searched refs:opt_count (Results 1 - 9 of 9) 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...]
objects-inl.h     [all...]
objects.h     [all...]
objects.cc     [all...]
  /external/v8/src/runtime/
runtime-test.cc 212 return Smi::FromInt(function->shared()->opt_count());
  /external/v8/src/crankshaft/
hydrogen-gvn.cc 641 return info()->IsStub() || info()->opt_count() + 1 < FLAG_max_opt_count;
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]

Completed in 222 milliseconds