Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8005071

Incremental inlining for JSR 292

XMLWordPrintable

    • b15

        Current inlining heuristics are driven by the number of created nodes which is unrelated to the number of live nodes especially after optimizations are applied. C2 should perform inlining in a loop:

        while (more_inlining_candidates) {
            apply_optimizations();
            if (number_of_live_nodes > some_number) break;
            inline_more();
        }

              roland Roland Westrelin
              roland Roland Westrelin
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: