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

aarch64: combine andr+cbnz into tbnz when possible

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P4 P4
    • 10
    • None
    • 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.

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

              Created:
              Updated:
              Resolved: