/third_party/python/Tools/peg_generator/pegen/ |
H A D | python_generator.py | 248 is_loop = node.is_loop() 268 if is_loop: 270 self.visit(rhs, is_loop=is_loop, is_gather=is_gather) 271 if is_loop: 287 def visit_Rhs(self, node: Rhs, is_loop: bool = False, is_gather: bool = False) -> None: 288 if is_loop: 291 self.visit(alt, is_loop=is_loop, is_gathe [all...] |
H A D | c_generator.py | 175 type = "asdl_seq *" if rule.is_loop() or rule.is_gather() else rule.type 449 if rule.is_loop() or rule.is_gather(): 595 is_loop=False, 632 is_loop=True, 651 is_loop = node.is_loop() 654 if is_loop or is_gather: 680 if is_loop: 697 self, node: Rhs, is_loop: bool, is_gather: bool, rulename: Optional[str] 699 if is_loop [all...] |
H A D | grammar.py | 78 def is_loop(self) -> bool: member in Rule 105 not self.is_loop()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | r3xx_vertprog_dump.c | 193 unsigned is_loop = 0; in r300_vertex_program_dump() local 197 case 2: fprintf(stderr, "LOOP"); is_loop = 1; break; in r300_vertex_program_dump() 206 if (is_loop) { in r300_vertex_program_dump()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_liverangeevaluator_helpers.cpp | 71 bool ProgramScope::is_loop() const in is_loop() function in r600::ProgramScope 587 if (last_read_scope->is_loop()) in update_required_live_range() 596 if (keep_for_full_loop && first_write_scope->is_loop()) in update_required_live_range() 613 if (keep_for_full_loop && first_write_scope->is_loop()) in update_required_live_range()
|
H A D | sfn_liverangeevaluator_helpers.h | 66 bool is_loop() const;
|
/third_party/spirv-tools/source/val/ |
H A D | construct.cpp | 76 const bool is_loop = type() == ConstructType::kLoop; in blocks() local 78 if (is_loop) { in blocks() 99 if (is_loop && continue_header->structurally_dominates(*block)) { in blocks()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_bc_finalize.cpp | 64 bool loop = r->is_loop(); in run() 220 if (dep1->target != r && dep1->target->is_loop()) in finalize_if() 226 if (rep1->target != r && rep1->target->is_loop()) in finalize_if() 901 if (r->is_loop()) { in get_stack_depth()
|
H A D | sb_ir.cpp | 473 if(r->is_loop()) in collect_stats()
|
H A D | sb_shader.cpp | 549 loop = static_cast<region_node*>(k)->is_loop(); in create_bbs()
|
H A D | sb_ir.h | 1143 bool is_loop() { return src_loop || !repeats.empty(); } in is_loop() function in r600_sb::region_node
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-printer.cc | 121 bool is_loop = false) { 131 c.Connect(is_loop ? kTop : kBottom);
|
/third_party/node/deps/v8/src/wasm/ |
H A D | graph-builder-interface.cc | 211 if (decoder->control_at(depth)->is_loop()) { in Loop() 317 DCHECK(!c->is_loop()); in FallThruTo() 325 if (block->is_loop()) { in PopControl() 1835 if (c->is_loop()) { in BuildNestedLoopExits()
|
H A D | function-body-decoder-impl.h | 878 bool is_loop() const { return kind == kControlLoop; } in is_loop() function 887 return is_loop() ? &this->start_merge : &this->end_merge; in br_merge() 3747 if (!c->is_loop() || c->unreachable()) { in PopControl()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | escape-analysis.cc | 419 bool is_loop = control->opcode() == IrOpcode::kLoop; in MergeInputs() local 470 if (num_defined_inputs == 1 && is_loop) { in MergeInputs()
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-compiler.cc | 1470 if (c->is_loop()) return; // A loop just falls through. in PopControl() 2596 if (target->is_loop()) { 2617 target->is_loop() ? LiftoffAssembler::kBackwardJump
|