Lines Matching defs:waves
301 struct ac_wave_info *waves, unsigned num_waves, FILE *f)
314 if (start_addr <= waves[i].pc && waves[i].pc <= end_addr)
321 /* Remember the first found wave. The waves are sorted according to PC. */
322 waves = &waves[i];
343 /* Print which waves execute the instruction right now. */
344 while (num_waves && start_addr + inst->offset == waves->pc) {
348 waves->se, waves->sh, waves->cu, waves->simd, waves->wave, waves->exec);
351 fprintf(f, "INST32=%08X" COLOR_RESET "\n", waves->inst_dw0);
353 fprintf(f, "INST64=%08X %08X" COLOR_RESET "\n", waves->inst_dw0, waves->inst_dw1);
356 waves->matched = true;
357 waves = &waves[1];
370 struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP];
372 unsigned num_waves = ac_get_wave_info(chip_class, waves);
374 fprintf(f, COLOR_CYAN "The number of active waves = %u" COLOR_RESET "\n\n", num_waves);
381 radv_dump_annotated_shader(pipeline->shaders[stage], stage, waves, num_waves, f);
384 /* Print waves executing shaders that are not currently bound. */
388 if (waves[i].matched)
398 waves[i].se, waves[i].sh, waves[i].cu, waves[i].simd, waves[i].wave, waves[i].exec,
399 waves[i].inst_dw0, waves[i].inst_dw1, waves[i].pc);
641 fprintf(f, "\nUMR GFX waves:\n\n");
722 /* Dump UMR waves. */