Lines Matching refs:continue_label
748 GraphAssemblerLabel<sizeof...(Vars)>* continue_label, in MaybeSkipHole() argument
756 BranchWithHint(HoleCheck(kind, o), continue_label, &if_not_hole, in MaybeSkipHole()
1396 auto continue_label = MakeLabel(); in ReduceArrayPrototypeForEach() local
1397 element = MaybeSkipHole(element, kind, &continue_label); in ReduceArrayPrototypeForEach()
1403 Goto(&continue_label); in ReduceArrayPrototypeForEach()
1404 Bind(&continue_label); in ReduceArrayPrototypeForEach()
1537 auto continue_label = MakeLabel(); in ReduceArrayPrototypeReduce() local
1538 GotoIf(HoleCheck(kind, element), &continue_label); in ReduceArrayPrototypeReduce()
1541 Bind(&continue_label); in ReduceArrayPrototypeReduce()
1565 auto continue_label = MakeLabel(MachineRepresentation::kTagged); in ReduceArrayPrototypeReduce() local
1567 MaybeSkipHole(element, kind, &continue_label, *accumulator); in ReduceArrayPrototypeReduce()
1575 Goto(&continue_label, next_accumulator); in ReduceArrayPrototypeReduce()
1577 Bind(&continue_label); in ReduceArrayPrototypeReduce()
1578 *accumulator = continue_label.PhiAt<Object>(0); in ReduceArrayPrototypeReduce()
1681 auto continue_label = MakeLabel(); in ReduceArrayPrototypeMap() local
1682 element = MaybeSkipHole(element, kind, &continue_label); in ReduceArrayPrototypeMap()
1695 Goto(&continue_label); in ReduceArrayPrototypeMap()
1696 Bind(&continue_label); in ReduceArrayPrototypeMap()
1817 auto continue_label = MakeLabel(MachineRepresentation::kTaggedSigned); in ReduceArrayPrototypeFilter() local
1818 element = MaybeSkipHole(element, kind, &continue_label, a_length); in ReduceArrayPrototypeFilter()
1829 GotoIfNot(ToBoolean(v), &continue_label, a_length); in ReduceArrayPrototypeFilter()
1843 Goto(&continue_label, new_a_length); in ReduceArrayPrototypeFilter()
1846 Bind(&continue_label); in ReduceArrayPrototypeFilter()
1848 TNode<Object>::UncheckedCast(continue_label.PhiAt(0)); in ReduceArrayPrototypeFilter()
2045 auto continue_label = MakeLabel(); in ReduceArrayPrototypeEverySome() local
2046 element = MaybeSkipHole(element, kind, &continue_label); in ReduceArrayPrototypeEverySome()
2058 Goto(&continue_label); in ReduceArrayPrototypeEverySome()
2059 Bind(&continue_label); in ReduceArrayPrototypeEverySome()