Home
last modified time | relevance | path

Searched refs:inferred_name (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/compiler-dispatcher/
H A Dlazy-compile-dispatcher.cc119 Handle<String> inferred_name(uncompiled_data.inferred_name(), isolate); in SetUncompiledDataJobPointer()
125 inferred_name, uncompiled_data.start_position(), in SetUncompiledDataJobPointer()
134 Handle<String> inferred_name(uncompiled_data.inferred_name(), isolate); in SetUncompiledDataJobPointer()
137 inferred_name, uncompiled_data.start_position(), in SetUncompiledDataJobPointer()
/third_party/node/deps/v8/src/objects/
H A Dshared-function-info-inl.h436 if (HasInferredName() && inferred_name().length() != 0) { in SetScopeInfo()
437 scope_info.SetInferredFunctionName(inferred_name()); in SetScopeInfo()
849 String inferred_name, int start_position, int end_position, in InitAfterBytecodeFlush()
852 set_inferred_name(inferred_name); in InitAfterBytecodeFlush()
854 inferred_name); in InitAfterBytecodeFlush()
904 String SharedFunctionInfo::inferred_name() { in inferred_name() function in v8::internal::SharedFunctionInfo
913 return uncompiled_data().inferred_name(); in inferred_name()
848 InitAfterBytecodeFlush( String inferred_name, int start_position, int end_position, std::function<void(HeapObject object, ObjectSlot slot, HeapObject target)> gc_notify_updated_slot) InitAfterBytecodeFlush() argument
H A Dshared-function-info.h120 String inferred_name, int start_position, int end_position,
384 // The inferred_name is inferred from variable or property assignment of this
389 inline String inferred_name();
H A Dshared-function-info.cc296 if (function_name.length() == 0) function_name = inferred_name(); in DebugNameCStr()
313 if (function_name.length() == 0) function_name = shared->inferred_name(); in DebugName()
370 handle(shared_info->inferred_name(), isolate); in DiscardCompiled()
H A Dcall-site-info.cc435 name = handle(function->shared().inferred_name(), isolate); in GetMethodName()
/third_party/node/deps/v8/src/heap/
H A Dfactory-base.h178 NewUncompiledDataWithoutPreparseData(Handle<String> inferred_name,
183 Handle<String> inferred_name, int32_t start_position,
187 NewUncompiledDataWithoutPreparseDataWithJob(Handle<String> inferred_name,
192 NewUncompiledDataWithPreparseDataAndJob(Handle<String> inferred_name,
H A Dfactory-base.cc370 Handle<String> inferred_name, int32_t start_position, in NewUncompiledDataWithoutPreparseData()
373 inferred_name, start_position, end_position, AllocationType::kOld); in NewUncompiledDataWithoutPreparseData()
379 Handle<String> inferred_name, int32_t start_position, int32_t end_position, in NewUncompiledDataWithPreparseData()
382 inferred_name, start_position, end_position, preparse_data, in NewUncompiledDataWithPreparseData()
389 Handle<String> inferred_name, int32_t start_position, in NewUncompiledDataWithoutPreparseDataWithJob()
392 Impl>::NewUncompiledDataWithoutPreparseDataWithJob(inferred_name, in NewUncompiledDataWithoutPreparseDataWithJob()
402 Handle<String> inferred_name, int32_t start_position, int32_t end_position, in NewUncompiledDataWithPreparseDataAndJob()
405 inferred_name, start_position, end_position, preparse_data, kNullAddress, in NewUncompiledDataWithPreparseDataAndJob()
369 NewUncompiledDataWithoutPreparseData( Handle<String> inferred_name, int32_t start_position, int32_t end_position) NewUncompiledDataWithoutPreparseData() argument
378 NewUncompiledDataWithPreparseData( Handle<String> inferred_name, int32_t start_position, int32_t end_position, Handle<PreparseData> preparse_data) NewUncompiledDataWithPreparseData() argument
388 NewUncompiledDataWithoutPreparseDataWithJob( Handle<String> inferred_name, int32_t start_position, int32_t end_position) NewUncompiledDataWithoutPreparseDataWithJob() argument
401 NewUncompiledDataWithPreparseDataAndJob( Handle<String> inferred_name, int32_t start_position, int32_t end_position, Handle<PreparseData> preparse_data) NewUncompiledDataWithPreparseDataAndJob() argument
H A Dmark-compact.cc2626 String inferred_name = shared_info.inferred_name(); in FlushBytecodeFromSFI() local
2671 inferred_name, start_position, end_position, in FlushBytecodeFromSFI()
2678 DCHECK(non_atomic_marking_state()->IsBlackOrGrey(inferred_name)); in FlushBytecodeFromSFI()
/third_party/node/deps/v8/src/ast/
H A Dast.cc198 void FunctionLiteral::set_inferred_name(Handle<String> inferred_name) { in set_inferred_name() argument
199 DCHECK(!inferred_name.is_null()); in set_inferred_name()
200 inferred_name_ = inferred_name; in set_inferred_name()
H A Dast.h2229 void set_inferred_name(Handle<String> inferred_name);
/third_party/node/deps/v8/tools/
H A Dgrokdump.py1614 p.Print("inferred name: %s" % self.shared.inferred_name)
1628 inferred_name = ""
1630 inferred_name = self.shared.inferred_name
1632 (self.heap.reader.FormatIntPtr(self.address), inferred_name)
1667 self.inferred_name = self.ObjectField(self.InferredNameOffset())
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc3350 Handle<String> inferred_name = in Compile() local
3351 handle(existing_uncompiled_data->inferred_name(), isolate); in Compile()
3356 inferred_name, existing_uncompiled_data->start_position(), in Compile()
/third_party/node/deps/v8/src/parsing/
H A Dparser.cc919 Handle<String> inferred_name(shared_info->inferred_name(), isolate); in ParseFunction()
920 result->set_inferred_name(inferred_name); in ParseFunction()
/third_party/node/deps/v8/src/runtime/
H A Druntime-debug.cc534 return JSFunction::cast(f).shared().inferred_name(); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/diagnostics/
H A Dobjects-printer.cc1611 os << "\n - inferred name: " << Brief(inferred_name()); in SharedFunctionInfoPrint()
/third_party/node/deps/v8/src/api/
H A Dapi.cc5304 i::Handle<i::Object>(func->shared().inferred_name(), func->GetIsolate())); in GetInferredName()

Completed in 68 milliseconds