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

Aarch64: bad assert in spill generation code

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P4
    • 9
    • 9
    • hotspot
    • None
    • b120
    • aarch64

    Backports

      Description

        @@ -3077,7 +3077,7 @@
               assert((src_lo_rc != rc_int && dst_lo_rc != rc_int), "sanity");
               if (src_lo_rc == rc_stack && dst_lo_rc == rc_stack) {
                 // stack->stack
        - assert((src_offset & 7) && (dst_offset & 7), "unaligned stack offset");
        + assert((src_offset & 7) == 0 && (dst_offset & 7) == 0, "unaligned stack offset");
                 if (ireg == Op_VecD) {
                   __ unspill(rscratch1, true, src_offset);
                   __ spill(rscratch1, true, dst_offset);

        Attachments

          Issue Links

            Activity

              People

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

                Dates

                  Created:
                  Updated:
                  Resolved: