Home
last modified time | relevance | path

Searched refs:call_runtime (Results 1 - 10 of 10) sorted by relevance

/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-constructor-gen.cc268 Label call_runtime(this); in TF_BUILTIN()
271 FastNewObject(context, target, new_target, &call_runtime); in TF_BUILTIN()
274 BIND(&call_runtime); in TF_BUILTIN()
282 Label call_runtime(this), end(this); in FastNewObject()
284 var_obj = FastNewObject(context, target, new_target, &call_runtime); in FastNewObject()
287 BIND(&call_runtime); in FastNewObject()
297 TNode<JSReceiver> new_target, Label* call_runtime) { in FastNewObject()
301 HeapObjectToJSFunctionWithPrototypeSlot(new_target, call_runtime); in FastNewObject()
307 GotoIf(TaggedIsSmi(initial_map_or_proto), call_runtime); in FastNewObject() local
309 call_runtime); in FastNewObject()
295 FastNewObject( TNode<Context> context, TNode<JSFunction> target, TNode<JSReceiver> new_target, Label* call_runtime) FastNewObject() argument
316 GotoIf(TaggedNotEqual(target, new_target_constructor), call_runtime); FastNewObject() local
396 GotoIf(IsUndefined(maybe_feedback_vector), &call_runtime); CreateRegExpLiteral() local
402 GotoIfNot(HasBoilerplate(literal_site), &call_runtime); CreateRegExpLiteral() local
461 CreateShallowArrayLiteral( TNode<FeedbackVector> feedback_vector, TNode<TaggedIndex> slot, TNode<Context> context, AllocationSiteMode allocation_site_mode, Label* call_runtime) CreateShallowArrayLiteral() argument
470 GotoIfNot(HasBoilerplate(maybe_allocation_site), call_runtime); CreateShallowArrayLiteral() local
530 CreateShallowObjectLiteral( TNode<FeedbackVector> feedback_vector, TNode<TaggedIndex> slot, Label* call_runtime) CreateShallowObjectLiteral() argument
535 GotoIfNot(HasBoilerplate(maybe_allocation_site), call_runtime); CreateShallowObjectLiteral() local
545 GotoIf(IsSetWord32<Map::Bits3::IsDeprecatedBit>(bit_field_3), call_runtime); CreateShallowObjectLiteral() local
568 GotoIfNot(IsEmptyFixedArray(boilerplate_properties), call_runtime); CreateShallowObjectLiteral() local
[all...]
H A Dbuiltins-constructor-gen.h31 Label* call_runtime);
39 Label* call_runtime);
49 Label* call_runtime);
H A Dbuiltins-object-gen.cc364 Label call_runtime(this), return_true(this), return_false(this), in TF_BUILTIN()
385 &call_runtime, &if_notunique_name); in TF_BUILTIN()
389 &return_true, &return_false, &call_runtime); in TF_BUILTIN()
395 &call_runtime); in TF_BUILTIN()
402 &var_unique, &not_in_string_table, &call_runtime); in TF_BUILTIN() local
409 Branch(IsSpecialReceiverInstanceType(instance_type), &call_runtime, in TF_BUILTIN() local
416 Branch(IsName(CAST(key)), &return_false, &call_runtime); in TF_BUILTIN()
424 BIND(&call_runtime); in TF_BUILTIN()
1068 Label call_runtime(this, Label::kDeferred), prototype_valid(this), in TF_BUILTIN()
1074 BranchIfJSReceiver(prototype, &prototype_valid, &call_runtime); in TF_BUILTIN()
1081 GotoIf(TaggedIsSmi(properties), &call_runtime); TF_BUILTIN() local
1085 GotoIf(IsSpecialReceiverMap(properties_map), &call_runtime); TF_BUILTIN() local
1093 &call_runtime); TF_BUILTIN() local
1095 &call_runtime, &no_properties); TF_BUILTIN() local
1132 GotoIf(TaggedEqual(maybe_map, UndefinedConstant()), &call_runtime); TF_BUILTIN() local
1321 GotoIf(IsSpecialReceiverInstanceType(instance_type), &call_runtime); TF_BUILTIN() local
1334 &call_runtime); TF_BUILTIN() local
[all...]
H A Dbuiltins-string-gen.cc1250 Label done(this), call_runtime(this, Label::kDeferred), in StringToArray()
1255 GotoIfNot(IsOneByteStringInstanceType(instance_type), &call_runtime); in StringToArray() local
1266 to_direct.TryToDirect(&call_runtime); in StringToArray()
1271 &call_runtime); in StringToArray() local
1287 CSA_DCHECK(this, WordEqual(to_direct.PointerToData(&call_runtime), in StringToArray()
1311 Goto(&call_runtime); in StringToArray()
1315 BIND(&call_runtime); in StringToArray()
H A Dbuiltins-array-gen.cc628 Label init_index(this), return_not_found(this), call_runtime(this); in Generate()
632 BranchIfFastJSArrayForRead(receiver, context, &init_index, &call_runtime); in Generate()
661 GotoIfNot(IsUndefined(start_from), &call_runtime); in Generate() local
749 BIND(&call_runtime); in Generate()
1862 Label call_runtime(this, Label::kDeferred); in GenerateConstructor()
1864 Branch(TaggedIsSmi(array_size), &smi_size, &call_runtime); in GenerateConstructor() local
1881 &call_runtime, &small_smi_size); in GenerateConstructor() local
1895 BIND(&call_runtime); in GenerateConstructor()
H A Dbuiltins-collections-gen.cc2641 Label call_runtime(this), if_cannot_be_held_weakly(this);
2651 GotoIf(ShouldShrink(capacity, number_of_elements), &call_runtime);
2659 BIND(&call_runtime);
2674 Label call_runtime(this), if_no_hash(this), if_not_found(this);
2702 &call_runtime);
2709 BIND(&call_runtime);
/third_party/node/deps/v8/src/compiler/
H A Dmemory-lowering.cc280 auto call_runtime = __ MakeDeferredLabel(); in ReduceAllocateRaw() local
297 __ GotoIfNot(check, &call_runtime); in ReduceAllocateRaw()
300 __ Bind(&call_runtime); in ReduceAllocateRaw()
330 auto call_runtime = __ MakeDeferredLabel(); in ReduceAllocateRaw() local
344 __ GotoIfNot(check, &call_runtime); in ReduceAllocateRaw()
348 &call_runtime); in ReduceAllocateRaw() local
356 __ Bind(&call_runtime); in ReduceAllocateRaw()
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-generator.cc2284 Label fast_shallow_clone(this), call_runtime(this, Label::kDeferred); in IGNITION_HANDLER()
2286 GotoIf(IsUndefined(feedback_vector), &call_runtime); in IGNITION_HANDLER() local
2290 &fast_shallow_clone, &call_runtime); in IGNITION_HANDLER() local
2297 &call_runtime); in IGNITION_HANDLER()
2302 BIND(&call_runtime); in IGNITION_HANDLER()
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.cc4776 Label call_runtime(this, Label::kDeferred), done(this); in GenerateCloneObjectIC_Slow()
4779 GotoIfNot(IsJSObjectMap(source_map), &call_runtime); in GenerateCloneObjectIC_Slow() local
4780 GotoIfNot(IsEmptyFixedArray(LoadElements(CAST(source))), &call_runtime); in GenerateCloneObjectIC_Slow()
4787 &call_runtime); in GenerateCloneObjectIC_Slow()
4790 BIND(&call_runtime); in GenerateCloneObjectIC_Slow()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc13444 Label call_runtime(this, Label::kDeferred), return_true(this),
13468 &call_runtime, &if_proxy, kHandlePrivateNames);
13477 GotoIf(IsPrivateSymbol(name), &call_runtime);
13484 Goto(&call_runtime);
13501 BIND(&call_runtime);
14351 Label call_runtime(this), done(this);
14354 GotoIf(IsOnHeapTypedArray(array), &call_runtime);
14357 GotoIf(IsDetachedBuffer(buffer), &call_runtime);
14361 BIND(&call_runtime);

Completed in 42 milliseconds