Home
last modified time | relevance | path

Searched refs:JumpLoop (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/maglev/
Dmaglev-graph-printer.cc223 if (block->control_node()->Is<JumpLoop>()) { in PreProcessGraph()
224 loop_headers_.insert(block->control_node()->Cast<JumpLoop>()->target()); in PreProcessGraph()
239 if (node->Is<JumpLoop>()) { in PreProcessGraph()
240 BasicBlock* target = node->Cast<JumpLoop>()->target(); in PreProcessGraph()
439 if (control_node->Is<JumpLoop>()) { in Process()
440 BasicBlock* target = control_node->Cast<JumpLoop>()->target(); in Process()
Dmaglev-ir.h97 V(JumpLoop)
1428 node->Is<JumpLoop>()); in set_next_post_dominating_hole()
1537 class JumpLoop : public UnconditionalControlNodeT<JumpLoop> {
1538 using Base = UnconditionalControlNodeT<JumpLoop>;
1541 explicit JumpLoop(uint32_t bitfield, BasicBlock* target) in JumpLoop() function
1544 explicit JumpLoop(uint32_t bitfield, BasicBlockRef* ref) in JumpLoop() function
Dmaglev-regalloc.cc179 first->Is<JumpLoop>()) { in ComputePostDominatingHoles()
231 if (!control->Is<JumpLoop>()) { in AllocateRegisters()
247 } else if (control->Is<JumpLoop>()) { in AllocateRegisters()
Dmaglev-compiler.cc89 void Process(JumpLoop* node, const ProcessingState& state) { in Process()
Dmaglev-graph-builder.cc739 ? FinishBlock<JumpLoop>(next_offset(), {}, &jump_targets_[target]) in MAGLEV_UNIMPLEMENTED_BYTECODE()
740 : FinishBlock<JumpLoop>(next_offset(), {}, in MAGLEV_UNIMPLEMENTED_BYTECODE()
Dmaglev-ir.cc903 void JumpLoop::AllocateVreg(MaglevVregAllocationState* vreg_state, in AllocateVreg()
905 void JumpLoop::GenerateCode(MaglevCodeGenState* code_gen_state, in GenerateCode()
/third_party/node/deps/v8/src/interpreter/
Dcontrol-flow-builders.cc86 builder()->JumpLoop(&loop_header_, in JumpToHeader()
Dbytecodes.h342 V(JumpLoop, ImplicitRegisterUse::kNone, OperandType::kUImm, \
472 V(JumpLoop) \
534 V(JumpLoop)
Dbytecode-array-builder.h430 BytecodeArrayBuilder& JumpLoop(BytecodeLoopHeader* loop_header,
Dbytecode-array-builder.cc1259 BytecodeArrayBuilder& BytecodeArrayBuilder::JumpLoop( in JumpLoop() function in v8::internal::interpreter::BytecodeArrayBuilder
Dinterpreter-generator.cc2170 IGNITION_HANDLER(JumpLoop, InterpreterAssembler) { in IGNITION_HANDLER() argument