1. 08 Jul, 2022 1 commit
  2. 26 Apr, 2021 1 commit
  3. 10 Nov, 2020 1 commit
  4. 02 Mar, 2020 1 commit
  5. 20 Feb, 2020 1 commit
  6. 12 Jul, 2019 1 commit
  7. 22 May, 2019 1 commit
  8. 11 Sep, 2018 1 commit
  9. 27 Feb, 2018 1 commit
  10. 03 Aug, 2017 1 commit
  11. 27 Jan, 2017 1 commit
  12. 29 Nov, 2016 1 commit
  13. 20 Sep, 2016 1 commit
  14. 18 Aug, 2016 1 commit
  15. 22 Jul, 2016 1 commit
    • yangguo's avatar
      [debug] use catch prediction flag for promise rejections. · 6d0a4202
      yangguo authored
      This is in preparation to implementing exception prediction for async
      functions.  Each handler table entry can now predict "caught", "uncaught", or
      "promise". The latter indicates that the exception will lead to a promise
      rejection.
      
      To mark the relevant try-catch blocks, we add a new native syntax.
      try { } %catch (e) { } indicates a TryCatchStatement with the "promise"
      prediction.
      
      The previous implementation of using the function to tell the relevant
      try-catch apart from inner try-catch blocks will not work for async functions
      since these can have inner try-catch blocks inside the same function.
      
      BUG=v8:5167
      
      Review-Url: https://codereview.chromium.org/2161263003
      Cr-Commit-Position: refs/heads/master@{#37966}
      6d0a4202
  16. 15 Jul, 2016 1 commit
  17. 14 Jul, 2016 1 commit
  18. 13 Jul, 2016 1 commit
  19. 20 Jan, 2016 1 commit
    • mstarzinger's avatar
      [interpreter] Implement exception handler table building. · 82716f1c
      mstarzinger authored
      This implements a first version of exception handler table construction
      within the interpreter. Note that the local control flow for try-catch
      and try-finally statements is still off, and also stack unwinding does
      not yet respect interpreter frames. But generated handler tables should
      be populated correctly already.
      
      R=oth@chromium.org
      BUG=v8:4674
      LOG=n
      
      Review URL: https://codereview.chromium.org/1607433005
      
      Cr-Commit-Position: refs/heads/master@{#33400}
      82716f1c