1. 06 Aug, 2015 3 commits
    • ulan's avatar
      Fix idle step marking after 9d7ebc. · da97af0d
      ulan authored
      Idle notification should force marking to make progress.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1275573002
      
      Cr-Commit-Position: refs/heads/master@{#30041}
      da97af0d
    • jkummerow's avatar
      Fix off-by-one in Array.concat's max index check · 087ae1b0
      jkummerow authored
      The maximum valid index is strictly smaller than the maximum valid length.
      
      BUG=chromium:516592
      LOG=y
      R=yangguo@chromium.org
      
      Review URL: https://codereview.chromium.org/1278703003
      
      Cr-Commit-Position: refs/heads/master@{#30040}
      087ae1b0
    • mtrofin's avatar
      When working on the register allocator, I often need to introspect the various... · ee005fbb
      mtrofin authored
      When working on the register allocator, I often need to introspect the various components of the model - e.g. InstructionSequence, Instruction, LiveRange, etc. A pretty printer would help. While we have a suite of operator<< defined for these types, turns out that using them at debug time is close to impossible - gdb has poor (or convoluted) support for instantiating structures (e.g. OFStream, PrintableInstructionSequence, etc), and calling operator<< with pass-by-reference semantics.
      
      I explored gdb macros, but hit an issue quite early with instantiating and initializing an OFStream - "virtual baseclass botch".
      
      Currently, I have a side-file that I include (and then remove before publishing CLs), which defines wrappers to the above operator<< APIs, but this is becoming quite awkward, and I believe the functionality to be quite useful to anyone working in this (regalloc) area, so it's worth having something better than local side-files. The gdb path seems overly-twisted for the problem at hand, and I've noticed elsewhere (e.g. Object) the presence of Print APIs - hence this change.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1280483002
      
      Cr-Commit-Position: refs/heads/master@{#30039}
      ee005fbb
  2. 05 Aug, 2015 21 commits
  3. 04 Aug, 2015 16 commits