Skip to content
  1. Dec 10, 2017
  2. Dec 09, 2017
  3. Dec 08, 2017
    • Duncan P. N. Exon Smith's avatar
      Revert part of "Cleanup some GraphTraits iteration code" · 9b8caf5b
      Duncan P. N. Exon Smith authored
      This reverts part of r300656, which caused a regression in
      propagateMassToSuccessors by counting edges n^2 times, where n is the
      number of edges from the source basic block to the same successor basic
      block. The result was both incorrect and very slow to compute for large
      values of n (e.g. switches with multiple cases that go to the same basic
      block).
      
      Patch by Andrew Scheidecker!
      
      llvm-svn: 320208
      9b8caf5b
    • Vedant Kumar's avatar
      [Debugify] Add a pass to test debug info preservation · 195dfd10
      Vedant Kumar authored
      The Debugify pass synthesizes debug info for IR. It's paired with a
      CheckDebugify pass which determines how much of the original debug info
      is preserved. These passes make it easier to create targeted tests for
      debug info preservation.
      
      Here is the Debugify algorithm:
      
        NextLine = 1
        for (Instruction &I : M)
          attach DebugLoc(NextLine++) to I
      
        NextVar = 1
        for (Instruction &I : M)
          if (canAttachDebugValue(I))
            attach dbg.value(NextVar++) to I
      
      The CheckDebugify pass expects contiguous ranges of DILocations and
      DILocalVariables. If it fails to find all of the expected debug info, it
      prints a specific error to stderr which can be FileChecked.
      
      This was discussed on llvm-dev in the thread:
      "Passes to add/validate synthetic debug info"
      
      Differential Revision: https://reviews.llvm.org/D40512
      
      llvm-svn: 320202
      195dfd10
Loading