Home
last modified time | relevance | path

Searched refs:function_map (Results 1 - 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/extensions/
H A Dvtunedomain-support-extension.cc21 const auto& function_map = member
87 auto it = function_map.find(vparams[0]); in invoke()
88 if (it != function_map.end()) { in invoke()
/third_party/gn/src/gn/
H A Dcommand_help.cc302 const functions::FunctionInfoMap& function_map = functions::GetFunctions(); in RunHelp() local
303 auto found_function = function_map.find(what); in RunHelp()
304 if (found_function != function_map.end()) in RunHelp()
306 for (const auto& entry : function_map) in RunHelp()
327 if (found_function != function_map.end() || in RunHelp()
H A Dfunctions.cc1553 const FunctionInfoMap& function_map = GetFunctions();
1555 function_map.find(name.value());
1556 if (found_function == function_map.end()) {
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-async-gen.cc155 TNode<Map> function_map = CAST(LoadContextElement( in InitializeNativeClosure() local
160 IntPtrEqual(LoadMapInstanceSizeInWords(function_map), in InitializeNativeClosure()
164 StoreMapNoWriteBarrier(function, function_map); in InitializeNativeClosure()
H A Dbuiltins-constructor-gen.cc221 const TNode<Map> function_map = in TF_BUILTIN() local
226 TimesTaggedSize(LoadMapInstanceSizeInWords(function_map)); in TF_BUILTIN()
228 StoreMapNoWriteBarrier(result, function_map); in TF_BUILTIN()
229 InitializeJSObjectBodyNoSlackTracking(result, function_map, in TF_BUILTIN()
241 Branch(IsFunctionWithPrototypeSlotMap(function_map), &init_prototype, in TF_BUILTIN()
H A Dbuiltins-shadowrealm-gen.cc121 TNode<Object> function_map = in TF_BUILTIN() local
123 TNode<Object> function_prototype = LoadMapPrototype(CAST(function_map)); in TF_BUILTIN()
/third_party/node/deps/v8/src/compiler/
H A Djs-create-lowering.cc945 MapRef function_map = in ReduceJSCreateClosure()
947 DCHECK(!function_map.IsInobjectSlackTrackingInProgress()); in ReduceJSCreateClosure()
948 DCHECK(!function_map.is_dictionary_map()); in ReduceJSCreateClosure()
964 a.Allocate(function_map.instance_size(), allocation, in ReduceJSCreateClosure()
966 a.Store(AccessBuilder::ForMap(), function_map); in ReduceJSCreateClosure() local
976 if (function_map.has_prototype_slot()) { in ReduceJSCreateClosure()
981 for (int i = 0; i < function_map.GetInObjectProperties(); i++) { in ReduceJSCreateClosure()
982 a.Store(AccessBuilder::ForJSObjectInObjectProperty(function_map, i), in ReduceJSCreateClosure()
H A Djs-generic-lowering.cc545 Node* function_map = effect = graph()->NewNode( in LowerJSGetSuperConstructor() local
550 node->ReplaceInput(0, function_map); in LowerJSGetSuperConstructor()
H A Djs-native-context-specialization.cc367 MapRef function_map = function.map(); in ReduceJSGetSuperConstructor() local
368 HeapObjectRef function_prototype = function_map.prototype(); in ReduceJSGetSuperConstructor()
373 if (function_map.is_stable()) { in ReduceJSGetSuperConstructor()
374 dependencies()->DependOnStableMap(function_map); in ReduceJSGetSuperConstructor()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc1990 Handle<Map> function_map; in New() local
1993 function_map = isolate->wasm_exported_function_map(); in New()
1996 function_map = isolate->sloppy_function_map(); in New()
1999 function_map = isolate->strict_function_map(); in New()
2009 .set_map(function_map) in New()
H A Dwasm-js.cc2947 Handle<Map> function_map = isolate->factory()->CreateSloppyFunctionMap( in Install() local
2954 JSFunction::SetInitialMap(isolate, function_constructor, function_map, in Install()
2959 context->set_wasm_exported_function_map(*function_map); in Install()
2962 Handle<Map> function_map = isolate->sloppy_function_without_prototype_map(); in Install() local
2963 context->set_wasm_exported_function_map(*function_map); in Install()
/third_party/node/deps/v8/src/runtime/
H A Druntime-object.cc1160 Handle<Map> function_map(function->map(), isolate); in RUNTIME_FUNCTION()
1167 *function_map == function->map()); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
H A Dmap.cc1596 Handle<Map> function_map(Map::cast(isolate->native_context()->get( in AsLanguageMode()
1611 // Create new map taking descriptors from the |function_map| and all in AsLanguageMode()
1614 Map::CopyInitialMap(isolate, function_map, initial_map->instance_size(), in AsLanguageMode()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc9259 TNode<Map> function_map = LoadMap(CAST(constructor));
9260 GotoIf(IsJSFunctionMap(function_map), &if_jsfunction);
9261 GotoIf(IsJSGeneratorMap(function_map), &if_jsgenerator);
9263 GotoIf(IsFunctionTemplateInfoMap(function_map), if_bailout);

Completed in 46 milliseconds