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

/external/v8/src/
H A Dcontexts.cc420 BailoutId osr_ast_id) {
426 Smi* osr_ast_id_smi = Smi::FromInt(osr_ast_id.ToInt());
439 BailoutId osr_ast_id) {
441 int entry = SearchOptimizedCodeMapEntry(shared, osr_ast_id);
454 BailoutId osr_ast_id) {
468 entry = native_context->SearchOptimizedCodeMapEntry(*shared, osr_ast_id);
500 new_code_map->set(entry + kOsrAstIdOffset, Smi::FromInt(osr_ast_id.ToInt()));
419 SearchOptimizedCodeMapEntry(SharedFunctionInfo* shared, BailoutId osr_ast_id) argument
438 SearchOptimizedCodeMap(SharedFunctionInfo* shared, BailoutId osr_ast_id) argument
451 AddToOptimizedCodeMap(Handle<Context> native_context, Handle<SharedFunctionInfo> shared, Handle<Code> code, BailoutId osr_ast_id) argument
H A Dcompilation-info.h80 BailoutId osr_ast_id() const { return osr_ast_id_; } function in class:v8::internal::final
215 void SetOptimizingForOsr(BailoutId osr_ast_id, JavaScriptFrame* osr_frame) { argument
217 osr_ast_id_ = osr_ast_id;
H A Dcompiler.cc686 Handle<JSFunction> function, BailoutId osr_ast_id) {
693 function->context()->native_context(), osr_ast_id);
722 info->osr_ast_id());
811 BailoutId osr_ast_id = BailoutId::None(),
817 DCHECK_IMPLIES(ignition_osr, !osr_ast_id.IsNone());
827 GetCodeFromOptimizedCodeMap(function, osr_ast_id)
832 if (!osr_ast_id.IsNone()) {
833 PrintF(" at OSR AST id %d", osr_ast_id.ToInt());
862 info->SetOptimizingForOsr(osr_ast_id, osr_frame);
963 info->osr_ast_id())
685 GetCodeFromOptimizedCodeMap( Handle<JSFunction> function, BailoutId osr_ast_id) argument
1886 GetOptimizedCodeForOSR(Handle<JSFunction> function, BailoutId osr_ast_id, JavaScriptFrame* osr_frame) argument
[all...]
H A Dobjects.cc11908 Handle<Code> code, BailoutId osr_ast_id) {
11917 if (!osr_ast_id.IsNone()) {
11918 Context::AddToOptimizedCodeMap(native_context, shared, code, osr_ast_id);
11922 DCHECK(osr_ast_id.IsNone());
13642 BailoutId osr_ast_id) {
13644 if (!osr_ast_id.IsNone()) {
13645 return native_context->SearchOptimizedCodeMap(this, osr_ast_id);
13648 DCHECK(osr_ast_id.IsNone());
11906 AddToOptimizedCodeMap( Handle<SharedFunctionInfo> shared, Handle<Context> native_context, Handle<Code> code, BailoutId osr_ast_id) argument
13641 SearchOptimizedCodeMap(Context* native_context, BailoutId osr_ast_id) argument
/external/v8/src/compiler/
H A Dcode-generator.cc589 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
592 BailoutId osr_ast_id = BailoutId::None(); local
593 data->SetOsrAstId(Smi::FromInt(osr_ast_id.ToInt()));
H A Dbytecode-graph-builder.cc466 Handle<FeedbackVector> feedback_vector, BailoutId osr_ast_id,
483 osr_ast_id_(osr_ast_id),
464 BytecodeGraphBuilder( Zone* local_zone, Handle<SharedFunctionInfo> shared_info, Handle<FeedbackVector> feedback_vector, BailoutId osr_ast_id, JSGraph* jsgraph, float invocation_frequency, SourcePositionTable* source_positions, int inlining_id) argument
/external/v8/src/crankshaft/
H A Dtyping.cc19 DeclarationScope* scope, BailoutId osr_ast_id,
25 osr_ast_id_(osr_ast_id),
18 AstTyper(Isolate* isolate, Zone* zone, Handle<JSFunction> closure, DeclarationScope* scope, BailoutId osr_ast_id, FunctionLiteral* root, AstTypeBounds* bounds) argument

Completed in 192 milliseconds