Home | History | Annotate | Download | only in compiler

Lines Matching defs:num_loops

786     Zone* zone, SpecialRPOStackFrame* queue, int num_loops, int num_blocks,
788 LoopInfo* loops = zone->NewArray<LoopInfo>(num_loops);
789 memset(loops, 0, num_loops * sizeof(LoopInfo));
832 static void PrintRPO(int num_loops, LoopInfo* loops, BasicBlockVector* order) {
833 PrintF("-- RPO with %d loops ", num_loops);
834 if (num_loops > 0) {
836 for (int i = 0; i < num_loops; i++) {
848 for (int i = 0; i < num_loops; i++) {
863 static void VerifySpecialRPO(int num_loops, LoopInfo* loops,
868 for (int i = 0; i < num_loops; i++) {
948 int num_loops = 0;
964 succ->loop_end_ = num_loops++;
981 if (num_loops != 0) {
984 loops = ComputeLoopInfo(zone, stack, num_loops, schedule->BasicBlockCount(),
1045 DCHECK(succ->loop_end_ >= 0 && succ->loop_end_ < num_loops);
1118 if (FLAG_trace_turbo_scheduler) PrintRPO(num_loops, loops, final_order);
1119 VerifySpecialRPO(num_loops, loops, final_order);