Searched refs:if_done (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-iterator-gen.h | 39 TNode<Context> context, const IteratorRecord& iterator, Label* if_done, 43 base::Optional<TNode<Map>> fast_iterator_result_map, Label* if_done) { in IteratorStep() argument 44 return IteratorStep(context, iterator, if_done, fast_iterator_result_map); in IteratorStep()
|
D | builtins-iterator-gen.cc | 64 TNode<Context> context, const IteratorRecord& iterator, Label* if_done, in IteratorStep() argument 66 DCHECK_NOT_NULL(if_done); in IteratorStep() 87 BranchIfToBooleanIsTrue(done, if_done, &return_result); in IteratorStep() 101 BranchIfToBooleanIsTrue(done, if_done, &return_result); in IteratorStep()
|
D | builtins-call-gen.cc | 110 Label if_done(this), if_arguments(this), if_array(this), in CallOrConstructWithArrayLike() local 196 Branch(Word32And(kind, Int32Constant(1)), &if_holey_array, &if_done); in CallOrConstructWithArrayLike() 205 Branch(IsNoElementsProtectorCellInvalid(), &if_runtime, &if_done); in CallOrConstructWithArrayLike() 218 Goto(&if_done); in CallOrConstructWithArrayLike() 228 Goto(&if_done); in CallOrConstructWithArrayLike() 233 BIND(&if_done); in CallOrConstructWithArrayLike()
|
D | builtins-internal-gen.cc | 572 Label if_done(this), if_noelements(this), in SetOrCopyDataProperties() local 578 GotoIf(TaggedIsSmi(source), &if_done); in SetOrCopyDataProperties() 619 Goto(&if_done); in SetOrCopyDataProperties() 629 GotoIfNot(IsStringInstanceType(source_instance_type), &if_done); in SetOrCopyDataProperties() 631 Branch(IntPtrEqual(source_length, IntPtrConstant(0)), &if_done, in SetOrCopyDataProperties() 635 BIND(&if_done); in SetOrCopyDataProperties()
|
D | builtins-string-gen.cc | 619 Label if_done(this), if_notdone(this); in GenerateStringRelationalComparison() local 620 Branch(WordEqual(var_offset.value(), end), &if_done, &if_notdone); in GenerateStringRelationalComparison() 644 BIND(&if_done); in GenerateStringRelationalComparison()
|
D | builtins-collections-gen.cc | 1474 Label if_done(this), if_transition(this, Label::kDeferred); in Transition() local 1477 &if_done, &if_transition); in Transition() 1502 Goto(&if_done); in Transition() 1505 BIND(&if_done); in Transition()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 1507 Label if_done(this), if_objectissmi(this), if_objectisheapnumber(this), in ToNumberOrNumeric() local 1517 Goto(&if_done); in ToNumberOrNumeric() 1524 Goto(&if_done); in ToNumberOrNumeric() 1538 Goto(&if_done); in ToNumberOrNumeric() 1546 Goto(&if_done); in ToNumberOrNumeric() 1549 BIND(&if_done); in ToNumberOrNumeric()
|
/external/v8/src/codegen/ |
D | code-stub-assembler.cc | 6479 if_done(this); in StringFromSingleCharCode() local 6504 Goto(&if_done); in StringFromSingleCharCode() 6511 Goto(&if_done); in StringFromSingleCharCode() 6523 Goto(&if_done); in StringFromSingleCharCode() 6526 BIND(&if_done); in StringFromSingleCharCode() 6846 Label if_done(this), if_notdone(this); in NonNumberToNumberOrNumeric() local 6849 &if_done, &if_notdone); in NonNumberToNumberOrNumeric() 6851 BIND(&if_done); in NonNumberToNumberOrNumeric()
|