Home
last modified time | relevance | path

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

/third_party/gn/src/gn/
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()
Dfunctions.cc1443 const FunctionInfoMap& function_map = GetFunctions(); in RunFunction() local
1445 function_map.find(name.value()); in RunFunction()
1446 if (found_function == function_map.end()) { in RunFunction()
/third_party/node/deps/v8/src/extensions/
Dvtunedomain-support-extension.cc21 const auto& function_map =
87 auto it = function_map.find(vparams[0]); in invoke()
88 if (it != function_map.end()) { in invoke()
/third_party/node/deps/v8/src/builtins/
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()
Dbuiltins-shadowrealm-gen.cc121 TNode<Object> function_map = in TF_BUILTIN() local
123 TNode<Object> function_prototype = LoadMapPrototype(CAST(function_map)); in TF_BUILTIN()
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()
/third_party/node/deps/v8/src/compiler/
Djs-create-lowering.cc945 MapRef function_map = in ReduceJSCreateClosure() local
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()
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()
Djs-generic-lowering.cc545 Node* function_map = effect = graph()->NewNode( in LowerJSGetSuperConstructor() local
550 node->ReplaceInput(0, function_map); in LowerJSGetSuperConstructor()
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/
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()
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/
Druntime-object.cc1160 Handle<Map> function_map(function->map(), isolate); in RUNTIME_FUNCTION() local
1167 *function_map == function->map()); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
Dmap.cc1596 Handle<Map> function_map(Map::cast(isolate->native_context()->get( in AsLanguageMode() local
1614 Map::CopyInitialMap(isolate, function_map, initial_map->instance_size(), in AsLanguageMode()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc9259 TNode<Map> function_map = LoadMap(CAST(constructor)); in GetCreationContext() local
9260 GotoIf(IsJSFunctionMap(function_map), &if_jsfunction); in GetCreationContext()
9261 GotoIf(IsJSGeneratorMap(function_map), &if_jsgenerator); in GetCreationContext()
9263 GotoIf(IsFunctionTemplateInfoMap(function_map), if_bailout); in GetCreationContext()