Searched refs:is_not_constructor (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
D | builtins-array-gen.cc | 514 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local 515 GotoIf(TaggedIsSmi(receiver), &is_not_constructor); in ConstructArrayLike() 516 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike() 524 BIND(&is_not_constructor); in ConstructArrayLike() 545 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local 547 GotoIf(TaggedIsSmi(receiver), &is_not_constructor); in ConstructArrayLike() 548 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike() 556 BIND(&is_not_constructor); in ConstructArrayLike()
|
/third_party/node/deps/v8/src/interpreter/ |
D | interpreter-generator.cc | 2766 Label is_not_constructor(this, Label::kDeferred); in IGNITION_HANDLER() local 2768 GotoIfNot(IsConstructorMap(constructor_map), &is_not_constructor); in IGNITION_HANDLER() 2771 BIND(&is_not_constructor); in IGNITION_HANDLER()
|