Home
last modified time | relevance | path

Searched refs:continue_label (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Djs-call-reducer.cc728 GraphAssemblerLabel<sizeof...(Vars)>* continue_label, in MaybeSkipHole() argument
736 BranchWithHint(HoleCheck(kind, o), continue_label, &if_not_hole, in MaybeSkipHole()
1278 auto continue_label = MakeLabel(); in ReduceArrayPrototypeForEach() local
1279 element = MaybeSkipHole(element, kind, &continue_label); in ReduceArrayPrototypeForEach()
1285 Goto(&continue_label); in ReduceArrayPrototypeForEach()
1286 Bind(&continue_label); in ReduceArrayPrototypeForEach()
1422 auto continue_label = MakeLabel(); in ReduceArrayPrototypeReduce() local
1423 GotoIf(HoleCheck(kind, element), &continue_label); in ReduceArrayPrototypeReduce()
1426 Bind(&continue_label); in ReduceArrayPrototypeReduce()
1450 auto continue_label = MakeLabel(MachineRepresentation::kTagged); in ReduceArrayPrototypeReduce() local
[all …]
/external/v8/src/compiler/backend/
Dcode-generator.cc791 Label continue_label; in AssembleInstruction() local
795 branch.false_label = &continue_label; in AssembleInstruction()
799 tasm()->bind(&continue_label); in AssembleInstruction()
/external/v8/src/torque/
Dimplementation-visitor.cc1621 base::Optional<Binding<LocalLabel>*> continue_label = in Visit() local
1623 if (!continue_label) { in Visit()
1626 assembler().Goto((*continue_label)->block); in Visit()