aarch64: combine andr+cbnz into tbnz when possible

XMLWordPrintable

    • Type: Enhancement
    • Resolution: Fixed
    • Priority: P4
    • 10
    • Affects Version/s: None
    • Component/s: hotspot
    • None
    • 9
    • b21
    • aarch64
    • linux

      Still exists some combine opportunities like this in the aarch64 hotspot runtime, one example:

       - __ andr(rscratch1, tmp, TypeEntries::type_unknown);
       - __ cbnz(rscratch1, next); // already unknown. Nothing to do anymore.
       + __ tbnz(tmp, exact_log2(TypeEntries::type_unknown), next); // already unknown. Nothing to do anymore.

            Assignee:
            Fei Yang
            Reporter:
            Fei Yang
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: