Skip to content
  1. Jan 24, 2011
  2. Jan 16, 2011
  3. Jan 15, 2011
  4. Jan 13, 2011
  5. Oct 19, 2010
  6. Aug 26, 2010
    • Dan Gohman's avatar
      Reapply r112091 and r111922, support for metadata linking, with a · ca26f790
      Dan Gohman authored
      fix: add a flag to MapValue and friends which indicates whether
      any module-level mappings are being made. In the common case of
      inlining, no module-level mappings are needed, so MapValue doesn't
      need to examine non-function-local metadata, which can be very
      expensive in the case of a large module with really deep metadata
      (e.g. a large C++ program compiled with -g).
      
      This flag is a little awkward; perhaps eventually it can be moved
      into the ClonedCodeInfo class.
      
      llvm-svn: 112190
      ca26f790
    • Daniel Dunbar's avatar
      Revert r112091, "Remap metadata attached to instructions when remapping · 95fe13c7
      Daniel Dunbar authored
      individual ...", which depends on r111922, which I am reverting.
      
      llvm-svn: 112157
      95fe13c7
  7. Aug 25, 2010
  8. Sep 15, 2009
    • Dan Gohman's avatar
      When a constant's type is refined, update the constant in place · e4532f30
      Dan Gohman authored
      instead of cloning and RAUWing it.
      
       - Make AbstractTypeUser a friend of Value so that it can offer
         its subclasses a way to update a Value's type in place. This
         is better than a universally visible setType method on Value,
         and it's sufficient for the immediate need.
      
       - Eliminate the constant "convert" functions. This eliminates a
         lot of logic duplication, and fixes a complicated bug where a
         constant can't actually be cloned during the type refinement
         process because some of the types that its folder needs are
         half-destroyed, being in the middle of refinement themselves.
      
       - Move the getValType functions from being static overloaded
         functions in Constants.cpp to be members of class template
         specializations in ConstantsContext.h. This means that the
         code ends up getting instantiated twice, however it also
         makes it possible to eliminate all "convert" functions, so
         it's not a big net code size increase. And if desired, the
         duplicate instantiations could be eliminated with some
         reorganization.
      
      llvm-svn: 81861
      e4532f30
    • Dan Gohman's avatar
      Use llvm-link -S instead of using llvm-dis. · f3a9e18d
      Dan Gohman authored
      llvm-svn: 81860
      f3a9e18d
  9. Sep 05, 2009
  10. Sep 03, 2009
  11. Aug 25, 2009
  12. Aug 11, 2009
  13. Jan 02, 2009
    • Chris Lattner's avatar
      Reimplement the old and horrible bison parser for .ll files with a nice · ac161bff
      Chris Lattner authored
      and clean recursive descent parser.
      
      This change has a couple of ramifications:
      1. The parser code is about 400 lines shorter (in what we maintain, not
         including what is autogenerated).
      2. The code should be significantly faster than the old code because we 
         don't have to work around bison's poor handling of datatypes with 
         ctors/dtors.  This also makes the code much more resistant to memory 
         leaks.
      3. We now get caret diagnostics from the .ll parser, woo.
      4. The actual diagnostics emited from the parser are completely different
         so a bunch of testcases had to be updated.
      5. I now disallow "%ty = type opaque %ty = type i32".  There was no good
         reason to support this, it was just an accident of the old 
         implementation.  I have no reason to think that anyone is actually using
         this.
      6. The syntax for sticking a global variable has changed to make it 
         unambiguous.  I don't think anyone is depending on this since only clang
         supports this and it is not solid yet, so I'm not worried about anything
         breaking.
      7. This gets rid of the last use of bison, and along with it the .cvs files.
         I'll prune this from the makefiles as a subsequent commit.
      
      There are a few minor cleanups that can be done after this commit (suggestions
      welcome!) but this passes dejagnu testing and is ready for its time in the
      limelight.
      
      llvm-svn: 61558
      ac161bff
  14. Oct 15, 2008
  15. Jul 14, 2008
    • Chris Lattner's avatar
      Reimplement LinkFunctionProtos in terms of GetLinkageResult. This fixes · 0ead7a50
      Chris Lattner authored
      the second half of link-global-to-func.ll and causes some minor changes in
      messages.
      
      There are two TODOs here.  First, this causes a regression in 
      2008-07-06-AliasWeakDest.ll, which is now failing (so I xfailed it).  Anton,
      I would really appreciate it if you could take a look at this.  It should be
      a matter of adding proper alias support to GetLinkageResult, and was probably
      already a latent bug that would manifest with globals.
      
      The second todo is to reimplement LinkAlias in the same pattern as 
      function and global linking.  This should be pretty straight-forward for 
      someone who knows aliases, but isn't a requirement for correctness.
      
      llvm-svn: 53548
      0ead7a50
    • Chris Lattner's avatar
      implement linking of globals to functions, in one direction · 34fc5a0e
      Chris Lattner authored
      (replacing a function with a global).  This is needed when building
      llvm itself with LTO on darwin, because of the EXPLICIT_SYMBOL hack
      in lib/system/DynamicLibrary.cpp.
      
      Implementation of linking the other way will need to wait for a 
      cleanup of LinkFunctionProtos.
      
      llvm-svn: 53546
      34fc5a0e
  16. Jul 06, 2008
  17. Jun 27, 2008
  18. Jun 20, 2008
  19. Jun 12, 2008
  20. Jun 10, 2008
  21. May 21, 2008
  22. May 20, 2008
  23. May 02, 2008
  24. Mar 10, 2008
  25. Mar 09, 2008
  26. Mar 08, 2008
  27. Mar 07, 2008
Loading