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

s390x: Reduce the Block Size increased by JDK-8313438

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P5 P5
    • tbd
    • 22
    • hotspot
    • s390x
    • linux

      While fixing issue JDK-8313438, new code/instructions were added which unintentionally increased the block size and multiple test failures appeared with error: "guarantee(len <= bsize) failed: block too large".

      Code Change, done (in putfield_or_static method), for fixing the testcases:
        - const unsigned int bsize = is_static ? BTB_MINSIZE*1 : BTB_MINSIZE*4;
       + const unsigned int bsize = is_static ? BTB_MINSIZE*1 : BTB_MINSIZE*8;

      This needs to be addressed, if we can shrink the block size back to normal.

            Unassigned Unassigned
            amitkumar Amit Kumar
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: