1. 11 Dec, 2015 35 commits
  2. 10 Dec, 2015 5 commits
    • littledan's avatar
      Unstage non-standard Promise functions · 88c8361b
      littledan authored
      This patch removes Promise functions and methods which are absent
      from the ES2015 specification when the --es-staging flag is on.
      The patch is being relanded after being reverted due to an
      unrelated bug. This version is slightly different as promise_chain
      is installed on the context regardless of the flag value, so that
      the Promise::Chain API continues to work until it is deprecated.
      
      BUG=v8:3237
      R=rossberg
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1513873002
      
      Cr-Commit-Position: refs/heads/master@{#32772}
      88c8361b
    • sigurds's avatar
      [turbofan] Fix missing guard in native context specialization · 5aeb98ef
      sigurds authored
      Native context specialization was missing an SSI renaming.
      
      R=jarin@chromium.org
      
      Review URL: https://codereview.chromium.org/1520513002
      
      Cr-Commit-Position: refs/heads/master@{#32771}
      5aeb98ef
    • littledan's avatar
      Disable new regression tests with noi18n · 46cb23c2
      littledan authored
      BUG=chromium:487322
      R=adamk
      LOG=N
      
      Review URL: https://codereview.chromium.org/1514993002
      
      Cr-Commit-Position: refs/heads/master@{#32770}
      46cb23c2
    • littledan's avatar
      Allow ICU to normalize time zones · bff3074d
      littledan authored
      There's at least one case of a time zone alias: Asia/Kathmandu aliases
      Asia/Katmandu. ICU seems to normalize to the (deprecated) latter choice.
      V8 internationalization choked on this change; this patch interprets
      ICU's output more precisely and allows it.
      
      BUG=chromium:487322
      R=jungshik,adamk
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1509273007
      
      Cr-Commit-Position: refs/heads/master@{#32769}
      bff3074d
    • adamk's avatar
      Fix FuncNameInferrer usage in ParseAssignmentExpression · eb67f854
      adamk authored
      Without this fix, AssignmentExpressions that happen to be arrow functions
      would lead to unbalanced Enter/Leave calls on the fni_, causing thrashing
      while trying to infer function names. Symptoms include slow parsing
      or OOM (when we create too many AstConsStrings).
      
      To try to keep this from happening in the future, added an RAII helper
      class to handle Entering/Leaving FNI state.
      
      The included regression test crashes on my workstation without the patch.
      Note that it's too slow in debug mode (as well as under TurboFan),
      so I've skipped it there.
      
      BUG=v8:4595
      LOG=y
      
      Review URL: https://codereview.chromium.org/1507283003
      
      Cr-Commit-Position: refs/heads/master@{#32768}
      eb67f854