Skip to content
  1. Oct 26, 2011
  2. Oct 16, 2011
  3. Oct 11, 2011
  4. Oct 06, 2011
  5. Sep 20, 2011
  6. Jul 08, 2011
    • Jim Grosbach's avatar
      TableGen'erated MC lowering for simple pseudo-instructions. · bcb36be8
      Jim Grosbach authored
      This allows the (many) pseudo-instructions we have that map onto a single
      real instruction to have their expansion during MC lowering handled
      automatically instead of the current cumbersome manual expansion required.
      These sorts of pseudos are common when an instruction is used in situations
      that require different MachineInstr flags (isTerminator, isBranch, et. al.)
      than the generic instruction description has. For example, using a move
      to the PC to implement a branch.
      
      llvm-svn: 134704
      bcb36be8
  7. Jul 02, 2011
  8. Jun 29, 2011
  9. Jun 28, 2011
  10. Jun 24, 2011
    • Evan Cheng's avatar
      Starting to refactor Target to separate out code that's needed to fully describe · 24753317
      Evan Cheng authored
      target machine from those that are only needed by codegen. The goal is to
      sink the essential target description into MC layer so we can start building
      MC based tools without needing to link in the entire codegen.
      
      First step is to refactor TargetRegisterInfo. This patch added a base class
      MCRegisterInfo which TargetRegisterInfo is derived from. Changed TableGen to
      separate register description from the rest of the stuff.
      
      llvm-svn: 133782
      24753317
  11. Jun 17, 2011
  12. Apr 15, 2011
  13. Apr 12, 2011
    • Daniel Dunbar's avatar
      build: Add support for a SHOW_DIAGNOSTICS build variable. · 0625b1f8
      Daniel Dunbar authored
      If enabled, this will attempt to use the CC_LOG_DIAGNOSTICS feature I dropped
      into Clang to print a log of all the diagnostics generated during an individual
      build (from the top-level). Not sure if this will actually be useful, but for
      now it is handy for testing the option.
      
      llvm-svn: 129312
      0625b1f8
  14. Apr 09, 2011
  15. Mar 09, 2011
  16. Mar 08, 2011
  17. Mar 07, 2011
  18. Mar 05, 2011
  19. Feb 21, 2011
  20. Feb 20, 2011
    • Stephen Wilson's avatar
      · a1682510
      Stephen Wilson authored
      Do not try to descend into optional build directories if they do not
      exist.  This makes the build logic symmetric for both the in tree and
      out of tree cases.
      
      llvm-svn: 126070
      a1682510
  21. Feb 03, 2011
  22. Dec 08, 2010
  23. Nov 29, 2010
  24. Nov 26, 2010
  25. Nov 25, 2010
  26. Nov 14, 2010
  27. Nov 04, 2010
  28. Oct 23, 2010
  29. Oct 22, 2010
  30. Oct 15, 2010
  31. Oct 06, 2010
    • Chris Lattner's avatar
      Generalize tblgen's dag parsing logic to handle arbitrary expressions · 28f034c2
      Chris Lattner authored
      as the operator of the dag.  Specifically, this allows parsing things
      like (F.x 4) in addition to just (a 4).
      
      Unfortunately, this runs afoul of an idiom being used by llvmc.  It
      is using dags like (foo [1,2,3]) to represent a list of stuff being
      passed into foo.  With this change, this is parsed as a [1,2,3] 
      subscript on foo instead of being the first argument to the dag.
      Cope with this in the short term by requiring a "-llvmc-temp-hack"
      argument to tblgen to get the old parsing behavior.
      
      llvm-svn: 115742
      28f034c2
  32. Oct 04, 2010
Loading