On 17 January 2024 14:20:49 CET, Jan Hubicka <hubi...@ucw.cz> wrote: >--- a/gcc/predict.def >+++ b/gcc/predict.def >@@ -94,6 +94,16 @@ DEF_PREDICTOR (PRED_LOOP_ITERATIONS_GUESSED, "guessed loop >iterations", > DEF_PREDICTOR (PRED_LOOP_ITERATIONS_MAX, "guessed loop iterations", > PROB_UNINITIALIZED, PRED_FLAG_FIRST_MATCH) > >+/* Prediction which is an outcome of combining multiple value predictions. */ >+DEF_PREDICTOR (PRED_COMBINED_VALUE_PREDICTIONS, >+ "combined value predictions", PROB_UNINITIALIZED, 0) >+ >+/* Prediction which is an outcome of combining multiple value predictions >+ on PHI statement (this is less accurate since we do not know reverse >+ edge probabilities at that time). */ >+DEF_PREDICTOR (PRED_COMBINED_VALUE_PREDICTIONS_PHI, >+ "combined value predictions", PROB_UNINITIALIZED, 0) >+
Do you want to add "phi" somewhere to the latter (to distinguish them in the dumps)? thanks