1. 21 Jul, 2016 3 commits
  2. 19 Jul, 2016 1 commit
  3. 13 Jul, 2016 1 commit
    • mstarzinger's avatar
      [runtime] Fully remove RUNTIME_ASSERT for good. · 04062e92
      mstarzinger authored
      This fully deprecates all uses of the RUNTIME_ASSERT macro and removes
      the macro and underlying logging function in question. All uses have
      been replaces with CHECK macros which crash safely even in production.
      
      It makes sure we discover abuse of runtime functions in the wild early
      and also abort the process safely. Breaking assumptions in any runtime
      function can no longer accidentally be caught by JavaScript.
      
      R=yangguo@chromium.org
      BUG=v8:5066
      
      Review-Url: https://codereview.chromium.org/2132493002
      Cr-Commit-Position: refs/heads/master@{#37704}
      04062e92
  4. 12 Jul, 2016 1 commit
  5. 07 Jul, 2016 1 commit
  6. 05 Jul, 2016 3 commits
  7. 04 Jul, 2016 1 commit
  8. 30 Jun, 2016 3 commits
  9. 29 Jun, 2016 6 commits
  10. 28 Jun, 2016 3 commits
  11. 20 Jun, 2016 1 commit
  12. 15 Jun, 2016 2 commits
  13. 14 Jun, 2016 4 commits
  14. 13 Jun, 2016 2 commits
  15. 09 Jun, 2016 2 commits
    • lpy's avatar
      Move hashmap into src/base. · 2fd55667
      lpy authored
      We ported hashmap.h into libsampler as a workaround before, so the main focus of
      this patch is to reduce code duplication. This patch moves the hashmap into
      src/base as well as creates DefaultAllocationPolicy using malloc and free.
      
      BUG=v8:5050
      LOG=n
      
      Review-Url: https://codereview.chromium.org/2010243003
      Cr-Commit-Position: refs/heads/master@{#36873}
      2fd55667
    • ishell's avatar
      [ic] [stubs] Remove InlineCacheState field from the code flags. · 9dc62d27
      ishell authored
      There are no ICs left that store their state in this field: vector based
      ICs use feedback vector and the rest three (BinaryOpIC, CompareIC and
      ToBooleanIC) reconstruct their state from the ExtraICState field.
      
      This CL also removes unused InlineCacheState::DEBUG_STUB which was used
      mostly in Code::is_debug_stub(). The latter now checks if the code is one
      of the debug builtins instead.
      
      BUG=chromium:618701
      LOG=Y
      
      Review-Url: https://codereview.chromium.org/2052763003
      Cr-Commit-Position: refs/heads/master@{#36871}
      9dc62d27
  16. 08 Jun, 2016 2 commits
    • neis's avatar
      Run more tests with --ignition-generators. · ea139c5b
      neis authored
      Also, make %GeneratorGetSourcePosition fail if called on a suspended Ignition generator
      (rather than return nonsense).  This functionality is currently not implemented.
      
      BUG=v8:4907
      
      Review-Url: https://codereview.chromium.org/2049663002
      Cr-Commit-Position: refs/heads/master@{#36822}
      ea139c5b
    • mstarzinger's avatar
      [compiler] Improve contract for Compiler::CompileDebugCode. · 80b98da2
      mstarzinger authored
      This changes the contract for the aforementioned API function to be more
      permissive and allow callers to call it with less restrictions. The new
      contract is:
      
      a) For so far un-compiled functions, the compiler is free to choose the
         backend according to other decision criteria. Debug code can hence be
         provided by either Ignition or FullCodegen.
      b) For compiled functions, the compiler will provide debug code within
         the same tier as existing code. For Ignition the generated code will
         be equivalent to the old one. For FullCodegen the code will contain
         debug information and debug break slots.
      
      Concretely this fixes an issue where generator or async functions might
      have been compiled with an unexpected backend, due to the fact that the
      API method in question was always providing FullCodegen code.
      
      R=yangguo@chromium.org
      
      Review-Url: https://codereview.chromium.org/2044063002
      Cr-Commit-Position: refs/heads/master@{#36808}
      80b98da2
  17. 06 Jun, 2016 2 commits
  18. 03 Jun, 2016 1 commit
  19. 31 May, 2016 1 commit