HomeSort by relevance Sort by last modified time
    Searched full:osr_ast_id (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/v8/src/
optimizing-compiler-thread.cc 124 uint32_t offset = code->TranslateAstIdToPcOffset(info->osr_ast_id());
231 info->osr_ast_id().ToInt());
236 uint32_t offset = code->TranslateAstIdToPcOffset(info->osr_ast_id());
295 Handle<JSFunction> function, BailoutId osr_ast_id) {
301 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
312 BailoutId osr_ast_id) {
317 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
354 PrintF(", AST id %d]\n", info->osr_ast_id().ToInt());
optimizing-compiler-thread.h 60 BailoutId osr_ast_id);
61 bool IsQueuedForOSR(Handle<JSFunction> function, BailoutId osr_ast_id);
compiler.h 126 BailoutId osr_ast_id() const { return osr_ast_id_; } function in class:v8::internal::CompilationInfo
279 void SetOptimizing(BailoutId osr_ast_id, Handle<Code> unoptimized) {
282 osr_ast_id_ = osr_ast_id;
376 bool HasSameOsrEntry(Handle<JSFunction> function, BailoutId osr_ast_id) {
377 return osr_ast_id_ == osr_ast_id && function.is_identical_to(closure_);
714 BailoutId osr_ast_id = BailoutId::None());
hydrogen-osr.cc 13 return statement->OsrEntryId() == builder_->current_info()->osr_ast_id();
compiler.cc 690 Handle<JSFunction> function, BailoutId osr_ast_id) {
697 function->context()->native_context(), osr_ast_id);
702 if (!osr_ast_id.IsNone()) {
703 PrintF(" at OSR AST id %d", osr_ast_id.ToInt());
732 literals, info->osr_ast_id());
803 PrintF(" for concurrent OSR at %d.\n", info->osr_ast_id().ToInt());
    [all...]
full-codegen.h 461 void RecordBackEdge(BailoutId osr_ast_id);
    [all...]
typing.cc 71 if (stmt->OsrEntryId() != info_->osr_ast_id()) return;
objects.cc     [all...]
objects.h     [all...]
  /external/chromium_org/v8/src/compiler/
code-generator.cc 213 BailoutId osr_ast_id = BailoutId::None(); local
214 data->SetOsrAstId(Smi::FromInt(osr_ast_id.ToInt()));
  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.cc 64 !info()->osr_ast_id().IsNone());
927 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-codegen-x87.cc 65 !info()->osr_ast_id().IsNone());
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 958 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]
  /external/chromium_org/v8/src/arm64/
lithium-codegen-arm64.cc 960 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 922 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]
  /external/chromium_org/v8/src/mips64/
lithium-codegen-mips64.cc 872 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-codegen-x64.cc 837 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
    [all...]

Completed in 1039 milliseconds