1. 15 Aug, 2016 1 commit
  2. 14 Aug, 2016 1 commit
    • v8-autoroll's avatar
      Update V8 DEPS. · d1dcebd1
      v8-autoroll authored
      Rolling v8/build to 4155375bddb65fe3d2dbc42ab0d64c4d72527165
      
      Rolling v8/third_party/WebKit/Source/platform/inspector_protocol to 9d440c96636c5a41ce3e40f1924fe41dd2694f51
      
      TBR=machenbach@chromium.org,vogelheim@chromium.org,hablich@chromium.org
      
      Review-Url: https://codereview.chromium.org/2244113002
      Cr-Commit-Position: refs/heads/master@{#38629}
      d1dcebd1
  3. 13 Aug, 2016 1 commit
    • v8-autoroll's avatar
      Update V8 DEPS. · 6cd99501
      v8-autoroll authored
      Rolling v8/build to 45574dce74fca42e485fbc5cd78bd24bcfeb905f
      
      Rolling v8/buildtools to adb8bf4e8fc92aa1717bf151b862d58e6f27c4f2
      
      Rolling v8/tools/clang to 6d377a47e9c668c7550d17a7d4e6ba9f5931703a
      
      Rolling v8/tools/mb to c78da3f5bccc979b35907c4cbf937aa5187e41fa
      
      TBR=machenbach@chromium.org,vogelheim@chromium.org,hablich@chromium.org
      
      Review-Url: https://codereview.chromium.org/2240213004
      Cr-Commit-Position: refs/heads/master@{#38628}
      6cd99501
  4. 12 Aug, 2016 36 commits
  5. 11 Aug, 2016 1 commit
    • vogelheim's avatar
      Speed up parsing w/ grammar shortcut. · 7a100dff
      vogelheim authored
      Certain token combinations (e.g. number literal followed by semicolon) will
      result in a single AST node, but require many levels of recursive descent
      parsing to determine this (11 in this example). For some 'obvious'
      combinations, we'll simply generate the appropriate AST node fairly far up
      in the call tree.
      
      This yields a mild but consistent parser speedup. The main con is code duplication.
      
      [Speedup between 0..20ms in parse time among a set of 25 commonly used sites. Speedup of ~180ms for a site w/ a very large codebase (adwords.google.com). Minor slow-downs between 0..8ms for <20% of sites.]
      
      R=marja@chromium.org
      BUG=v8:4947
      
      Review-Url: https://codereview.chromium.org/2188153002
      Cr-Commit-Position: refs/heads/master@{#38591}
      7a100dff