• bjaideep's avatar
    [Heap] Fix ArrayBuffer_SemiSpaceCopyMultipleTasks to respect PPC page size · b1683f05
    bjaideep authored
    The testcase allocates JSArraybuffer on 2 separate pages which should be
    on the New space. In the testcase semi space size is set to 2MB.
    Since page size on PPC is 4MB the semi new space size defaults to 4MB.
    Therefore when allocating 2nd buffer, scavenge GC kicks in as from-space is
    filled up and copies 1st buffer to to-space. Now, the 2nd buffer also gets
    allocated on the same to-space, therefore both buffer end up being on the
    same page. This fix should allocate enough semi new space to contain 2
    pages (for all platform).
    The testcase was added as part of https://codereview.chromium.org/2036643002
    
    R=mlippautz@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com, mbrandy@us.ibm.com
    
    BUG=
    LOG=N
    
    Review-Url: https://codereview.chromium.org/2167853002
    Cr-Commit-Position: refs/heads/master@{#38028}
    b1683f05
test-array-buffer-tracker.cc 11.2 KB