Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/
Djs-call-reducer.cc748 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
[all …]
/third_party/node/deps/v8/src/compiler/backend/
Dcode-generator-impl.h219 Label* continue_label() { return &continue_label_; } in continue_label() function
Dcode-generator.cc179 deopt_kind, exit->continue_label(), in AssembleDeoptimizerCall()
761 branch.false_label = exit->continue_label(); in AssembleInstruction()
764 tasm()->bind(exit->continue_label()); in AssembleInstruction()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-internal-gen.cc835 Label continue_label(this); in SetOrCopyDataProperties() local
836 BranchIfSameValue(key, property, &skip, &continue_label); in SetOrCopyDataProperties()
837 Bind(&continue_label); in SetOrCopyDataProperties()
/third_party/node/deps/v8/src/torque/
Dimplementation-visitor.cc1707 base::Optional<Binding<LocalLabel>*> continue_label = in Visit() local
1709 if (!continue_label) { in Visit()
1712 assembler().Goto((*continue_label)->block); in Visit()