Skip to content
  1. Feb 19, 2013
  2. 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
  3. 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
  4. Jan 10, 2012
  5. Nov 15, 2011
  6. Oct 19, 2010
    • Owen Anderson's avatar
      Get rid of static constructors for pass registration. Instead, every pass... · 6c18d1aa
      Owen Anderson authored
      Get rid of static constructors for pass registration.  Instead, every pass exposes an initializeMyPassFunction(), which
      must be called in the pass's constructor.  This function uses static dependency declarations to recursively initialize
      the pass's dependencies.
      
      Clients that only create passes through the createFooPass() APIs will require no changes.  Clients that want to use the
      CommandLine options for passes will need to manually call the appropriate initialization functions in PassInitialization.h
      before parsing commandline arguments.
      
      I have tested this with all standard configurations of clang and llvm-gcc on Darwin.  It is possible that there are problems
      with the static dependencies that will only be visible with non-standard options.  If you encounter any crash in pass
      registration/creation, please send the testcase to me directly.
      
      llvm-svn: 116820
      6c18d1aa
  7. Oct 08, 2010
  8. Sep 04, 2010
  9. Aug 06, 2010
  10. Jul 22, 2010
  11. Mar 14, 2010
  12. Jan 04, 2010
    • David Greene's avatar
      · 821e67e2
      David Greene authored
      Change errs() to dbgs().
      
      llvm-svn: 92516
      821e67e2
  13. Oct 25, 2009
  14. Aug 23, 2009
  15. Jul 26, 2009
  16. Jul 23, 2009
    • Daniel Dunbar's avatar
      Convert StringMap to using StringRef for its APIs. · 5bf72e20
      Daniel Dunbar authored
       - Yay for '-'s and simplifications!
      
       - I kept StringMap::GetOrCreateValue for compatibility purposes, this can
         eventually go away. Likewise the StringMapEntry Create functions still follow
         the old style.
      
       - NIFC.
      
      llvm-svn: 76888
      5bf72e20
  17. Jul 14, 2009
  18. Jul 11, 2009
  19. Feb 18, 2009
  20. Jan 28, 2009
  21. Sep 04, 2008
  22. Aug 17, 2008
  23. Jul 02, 2008
  24. May 13, 2008
  25. Dec 29, 2007
  26. Dec 14, 2007
  27. Dec 11, 2007
  28. Sep 28, 2007
    • Gordon Henriksen's avatar
      CollectorMetadata abstractly describes stack maps for a function. · 613afce4
      Gordon Henriksen authored
      It includes:
      
       - location and of each safe point in machine code (identified by a
         label)
       - location of each root within the stack frame (identified by an
         offset), including the metadata tag provided to llvm.gcroot in
         the user program
       - size of the stack frame (for collectors which want to cheat on
         stack crawling :)
       - and eventually will include liveness
      
      It is to be populated by back-ends during code-generation.
      
      CollectorModuleMetadata aggregates this information across the
      entire module.
      
      llvm-svn: 42418
      613afce4
Loading