Changeset 223025 in webkit


Ignore:
Timestamp:
Oct 7, 2017 7:06:28 PM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, disable Gigacage on ARM64 Linux
https://bugs.webkit.org/show_bug.cgi?id=177586

Gigacage's LLInt change breaks ARM64 Linux.
Currently we do not have maintainers for this.
Let's simply disable it.

  • bmalloc/Gigacage.h:
Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r223015 r223025  
     12017-10-07  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, disable Gigacage on ARM64 Linux
     4        https://bugs.webkit.org/show_bug.cgi?id=177586
     5
     6        Gigacage's LLInt change breaks ARM64 Linux.
     7        Currently we do not have maintainers for this.
     8        Let's simply disable it.
     9
     10        * bmalloc/Gigacage.h:
     11
    1122017-09-29  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Source/bmalloc/bmalloc/Gigacage.h

    r223015 r223025  
    5353#define STRING_GIGACAGE_MASK GIGACAGE_SIZE_TO_MASK(STRING_GIGACAGE_SIZE)
    5454
    55 #if (BOS(DARWIN) || BOS(LINUX)) && (BCPU(ARM64) || BCPU(X86_64))
     55#if (BOS(DARWIN) && (BCPU(ARM64) || BCPU(X86_64))) || (BOS(LINUX) && BCPU(X86_64))
    5656#define GIGACAGE_ENABLED 1
    5757#else
Note: See TracChangeset for help on using the changeset viewer.