Skip to content
  1. Apr 28, 2014
  2. Apr 25, 2014
  3. Apr 22, 2014
    • Chandler Carruth's avatar
      [Modules] Make Support/Debug.h modular. This requires it to not change · e96dd897
      Chandler Carruth authored
      behavior based on other files defining DEBUG_TYPE, which means it cannot
      define DEBUG_TYPE at all. This is actually better IMO as it forces folks
      to define relevant DEBUG_TYPEs for their files. However, it requires all
      files that currently use DEBUG(...) to define a DEBUG_TYPE if they don't
      already. I've updated all such files in LLVM and will do the same for
      other upstream projects.
      
      This still leaves one important change in how LLVM uses the DEBUG_TYPE
      macro going forward: we need to only define the macro *after* header
      files have been #include-ed. Previously, this wasn't possible because
      Debug.h required the macro to be pre-defined. This commit removes that.
      By defining DEBUG_TYPE after the includes two things are fixed:
      
      - Header files that need to provide a DEBUG_TYPE for some inline code
        can do so by defining the macro before their inline code and undef-ing
        it afterward so the macro does not escape.
      
      - We no longer have rampant ODR violations due to including headers with
        different DEBUG_TYPE definitions. This may be mostly an academic
        violation today, but with modules these types of violations are easy
        to check for and potentially very relevant.
      
      Where necessary to suppor headers with DEBUG_TYPE, I have moved the
      definitions below the includes in this commit. I plan to move the rest
      of the DEBUG_TYPE macros in LLVM in subsequent commits; this one is big
      enough.
      
      The comments in Debug.h, which were hilariously out of date already,
      have been updated to reflect the recommended practice going forward.
      
      llvm-svn: 206822
      e96dd897
  4. Mar 04, 2014
  5. Feb 01, 2014
  6. Oct 14, 2013
  7. Jul 29, 2013
    • Chandler Carruth's avatar
      Update comments for SSAUpdater to use the modern doxygen comment · 6b55dbea
      Chandler Carruth authored
      standards for LLVM. Remove duplicated comments on the interface from the
      implementation file (implementation comments are left there of course).
      Also clean up, re-word, and fix a few typos and errors in the commenst
      spotted along the way.
      
      This is in preparation for changes to these files and to keep the
      uninteresting tidying in a separate commit.
      
      llvm-svn: 187335
      6b55dbea
  8. Jan 02, 2013
    • Chandler Carruth's avatar
      Move all of the header files which are involved in modelling the LLVM IR · 9fb823bb
      Chandler Carruth authored
      into their new header subdirectory: include/llvm/IR. This matches the
      directory structure of lib, and begins to correct a long standing point
      of file layout clutter in LLVM.
      
      There are still more header files to move here, but I wanted to handle
      them in separate commits to make tracking what files make sense at each
      layer easier.
      
      The only really questionable files here are the target intrinsic
      tablegen files. But that's a battle I'd rather not fight today.
      
      I've updated both CMake and Makefile build systems (I think, and my
      tests think, but I may have missed something).
      
      I've also re-sorted the includes throughout the project. I'll be
      committing updates to Clang, DragonEgg, and Polly momentarily.
      
      llvm-svn: 171366
      9fb823bb
  9. Dec 03, 2012
    • Chandler Carruth's avatar
      Use the new script to sort the includes of every file under lib. · ed0881b2
      Chandler Carruth authored
      Sooooo many of these had incorrect or strange main module includes.
      I have manually inspected all of these, and fixed the main module
      include to be the nearest plausible thing I could find. If you own or
      care about any of these source files, I encourage you to take some time
      and check that these edits were sensible. I can't have broken anything
      (I strictly added headers, and reordered them, never removed), but they
      may not be the headers you'd really like to identify as containing the
      API being implemented.
      
      Many forward declarations and missing includes were added to a header
      files to allow them to parse cleanly when included first. The main
      module rule does in fact have its merits. =]
      
      llvm-svn: 169131
      ed0881b2
  10. Aug 17, 2012
  11. Aug 14, 2012
  12. Jun 25, 2012
  13. Jun 20, 2012
    • Chandler Carruth's avatar
      Fix two rather subtle internal vs. external linker issues. · c60fbe6b
      Chandler Carruth authored
      I'll admit I'm not entirely satisfied with this change, but it seemed
      the cleanest option. Other suggestions quite welcome
      
      The issue is that the traits specializations have static methods which
      return the typedef'ed PHI_iterator type. In both the IR and MI layers
      this is typedef'ed to a custom iterator class defined in an anonymous
      namespace giving the types and the functions returning them internal
      linkage. However, because the traits specialization is defined in the
      'llvm' namespace (where it has to be, specialized template lives there),
      and is in turn used in the templated implementation of the SSAUpdater.
      This led to the linkage conflict that Clang now warns about.
      
      The simplest solution to me was just to define the PHI_iterator as
      a nested class inside the trait specialization. That way it still
      doesn't get scoped widely, it can't be accidentally reused somewhere,
      etc. This is a little gross just because nested class definitions are
      a little gross, but the alternatives seem more ad-hoc.
      
      llvm-svn: 158799
      c60fbe6b
  14. Nov 14, 2011
  15. Jul 18, 2011
  16. Jul 06, 2011
  17. May 24, 2011
  18. Apr 30, 2011
  19. Apr 11, 2011
  20. Mar 30, 2011
  21. Jan 24, 2011
  22. Jan 15, 2011
  23. Jan 14, 2011
  24. Nov 16, 2010
  25. Sep 02, 2010
    • Duncan Sands's avatar
      Reapply commit 112699, speculatively reverted by echristo, since · 6778149f
      Duncan Sands authored
      I'm sure it is harmless.  Original commit message:
      If PrototypeValue is erased in the middle of using the SSAUpdator
      then the SSAUpdator may access freed memory.  Instead, simply pass
      in the type and name explicitly, which is all that was used anyway.
      
      llvm-svn: 112810
      6778149f
  26. Sep 01, 2010
  27. Aug 29, 2010
  28. May 05, 2010
  29. Apr 21, 2010
  30. Apr 17, 2010
    • Bob Wilson's avatar
      Re-commit my previous SSAUpdater changes. The previous version naively tried · ca51425d
      Bob Wilson authored
      to determine where to place PHIs by iteratively comparing reaching definitions
      at each block.  That was just plain wrong.  This version now computes the
      dominator tree within the subset of the CFG where PHIs may need to be placed,
      and then places the PHIs in the iterated dominance frontier of each definition.
      The rest of the patch is mostly the same, with a few more performance
      improvements added in.
      
      llvm-svn: 101612
      ca51425d
  31. Apr 03, 2010
    • Bob Wilson's avatar
      Revert all my SSAUpdater patches. The PHI placement algorithm is not correct · f1aa4743
      Bob Wilson authored
      (what was I thinking?) and there's also a problem with LCSSA.  I'll try again
      later with fixes.
      
      --- Reverse-merging r100263 into '.':
      U    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100177 into '.':
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100148 into '.':
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100147 into '.':
      U    include/llvm/Transforms/Utils/SSAUpdater.h
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100131 into '.':
      G    include/llvm/Transforms/Utils/SSAUpdater.h
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100130 into '.':
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100126 into '.':
      G    include/llvm/Transforms/Utils/SSAUpdater.h
      G    lib/Transforms/Utils/SSAUpdater.cpp
      --- Reverse-merging r100050 into '.':
      D    test/Transforms/GVN/2010-03-31-RedundantPHIs.ll
      --- Reverse-merging r100047 into '.':
      G    include/llvm/Transforms/Utils/SSAUpdater.h
      G    lib/Transforms/Utils/SSAUpdater.cpp
      
      llvm-svn: 100264
      f1aa4743
    • Bob Wilson's avatar
      Add a DEBUG_TYPE for the SSAUpdater. · 25f1aefd
      Bob Wilson authored
      llvm-svn: 100263
      25f1aefd
  32. Apr 02, 2010
Loading