1. 10 Jun, 2015 1 commit
  2. 09 Jun, 2015 1 commit
  3. 08 Jun, 2015 1 commit
  4. 05 Jun, 2015 3 commits
  5. 04 Jun, 2015 1 commit
  6. 03 Jun, 2015 1 commit
  7. 02 Jun, 2015 3 commits
  8. 28 May, 2015 3 commits
  9. 27 May, 2015 1 commit
  10. 26 May, 2015 2 commits
  11. 22 May, 2015 1 commit
    • titzer's avatar
      [turbofan] Rework Node guts to save space. · 65b66634
      titzer authored
      This reduces the storage per-Node storage from 7 words to 6 and per-edge
      storage from 6 words to 4.
      On average this is about 10%-15% space savings over the whole graph.
      
      Remove the use of std::deque as the out-of-line storage for inputs.
      Reduce size of Use links and use pointer arithmetic to find Node
      from Use.
      
      R=mstarzinger@chromium.org,jarin@chromium.org
      BUG=
      
      Review URL: https://codereview.chromium.org/1150923003
      
      Cr-Commit-Position: refs/heads/master@{#28583}
      65b66634
  12. 21 May, 2015 1 commit
  13. 20 May, 2015 3 commits
  14. 19 May, 2015 3 commits
  15. 18 May, 2015 2 commits
  16. 15 May, 2015 4 commits
  17. 13 May, 2015 2 commits
  18. 12 May, 2015 2 commits
  19. 11 May, 2015 1 commit
  20. 08 May, 2015 2 commits
  21. 07 May, 2015 2 commits
    • ulan's avatar
      Add mode to reduce memory usage in idle notification. · ae6a0b80
      ulan authored
      While the mutator is active, the idle time handler optimizes for latency by doing only incremental steps and scavenges.
      
      When the mutator becomes inactive, the idle time handler forces few incremental GCs to reclaim memory and then stops until mutator is active again.
      
      BUG=460090
      LOG=N
      
      Review URL: https://codereview.chromium.org/1105293004
      
      Cr-Commit-Position: refs/heads/master@{#28300}
      ae6a0b80
    • ulan's avatar
      Add aggregated memory histograms. · d77839fd
      ulan authored
      This introduces V8.MemoryHeapCommitted and V8.MemoryHeapUsed histograms.
      
      In contrast to the existing memory histograms, the new histograms are uniform in time, i.e. their samples happen at regular time intervals. The --histogram-interval specifies the length of the interval.
      
      We implement this by linearly interpolating memory stats between GC and idle notification events.
      
      BUG=chromium:485472
      LOG=NO
      
      Review URL: https://codereview.chromium.org/1125683004
      
      Cr-Commit-Position: refs/heads/master@{#28292}
      d77839fd