Searched defs:osr_ast_id (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Doptimizing-compiler-thread.cc124 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());
294 FindReadyOSRCandidate( Handle<JSFunction> function, BailoutId osr_ast_id) argument
311 IsQueuedForOSR(Handle<JSFunction> function, BailoutId osr_ast_id) argument
H A Dcompiler.cc690 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());
1306 BailoutId osr_ast_id) {
1309 function, osr_ast_id).ToHandle(&cached_code)) {
1334 info->SetOptimizing(osr_ast_id, current_code);
1378 info->context()->native_context(), info->osr_ast_id())
689 GetCodeFromOptimizedCodeMap( Handle<JSFunction> function, BailoutId osr_ast_id) argument
1303 GetOptimizedCode(Handle<JSFunction> function, Handle<Code> current_code, ConcurrencyMode mode, BailoutId osr_ast_id) argument
[all...]
H A Dcompiler.h126 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) { argument
282 osr_ast_id_ = osr_ast_id;
376 bool HasSameOsrEntry(Handle<JSFunction> function, BailoutId osr_ast_id) { argument
377 return osr_ast_id_ == osr_ast_id && function.is_identical_to(closure_);
714 BailoutId osr_ast_id = BailoutId::None());
H A Dobjects.cc9172 BailoutId osr_ast_id) {
9189 DCHECK_EQ(-1, shared->SearchOptimizedCodeMap(*native_context, osr_ast_id));
9203 Smi::FromInt(osr_ast_id.ToInt()));
9982 BailoutId osr_ast_id) {
9990 Smi* osr_ast_id_smi = Smi::FromInt(osr_ast_id.ToInt());
9167 AddToOptimizedCodeMap( Handle<SharedFunctionInfo> shared, Handle<Context> native_context, Handle<Code> code, Handle<FixedArray> literals, BailoutId osr_ast_id) argument
9981 SearchOptimizedCodeMap(Context* native_context, BailoutId osr_ast_id) argument
/external/v8/src/compiler/
H A Dcode-generator.cc213 BailoutId osr_ast_id = BailoutId::None(); local
214 data->SetOsrAstId(Smi::FromInt(osr_ast_id.ToInt()));

Completed in 132 milliseconds