Skip to content
  1. May 14, 2009
    • David Greene's avatar
      · 98ed3c72
      David Greene authored
      Implement a !subst operation simmilar to $(subst) in GNU make to do
      def/var/string substitution on generic pattern templates.  For example:
      
      def Type;
      def v4f32 : Type;
      def TYPE : Type;
      
      class GenType<Type t> {
        let type = !(subst TYPE, v4f32, t);
      }
      
      def TheType : GenType<TYPE>;
      
      llvm-svn: 71801
      98ed3c72
    • David Greene's avatar
      · e8f3b27e
      David Greene authored
      Implement !cast.
      
      llvm-svn: 71794
      e8f3b27e
    • David Greene's avatar
      · 5d0c051e
      David Greene authored
      Operation Enhancements
      
      Create an OpInit class to serve as a base for all operation Inits.
      
      Move parsing of operation constructs to separate functions and reference
      from multiple places.
      
      Add some commented out new operations.  Coming soon.
      
      llvm-svn: 71789
      5d0c051e
    • David Greene's avatar
      · 9d3febea
      David Greene authored
      Fix PR4207.
      
      If we're resolving a list element access and we're given a VarInit,
      return a new VarListElementInit referencing the VarInit.
      
      llvm-svn: 71787
      9d3febea
  2. May 13, 2009
  3. May 09, 2009
  4. May 08, 2009
  5. May 07, 2009
  6. May 06, 2009
  7. May 05, 2009
    • David Greene's avatar
      · 44f9d7a8
      David Greene authored
      Allow multiclass def names to contain "#NAME"" where TableGen replaces
      #NAME# with the name of the defm instantiating the multiclass.  This is
      useful for AVX instruction naming where a "V" prefix is standard
      throughout the ISA.  For example:
      
      multiclass SSE_AVX_Inst<...> {
         def SS : Instr<...>;
         def SD : Instr<...>;
         def PS : Instr<...>;
         def PD : Instr<...>;
      
         def V#NAME#SS : Instr<...>;
         def V#NAME#SD : Instr<...>;
         def V#NAME#PS : Instr<...>;
         def V#NAME#PD : Instr<...>;
      }
      
      defm ADD : SSE_AVX_Inst<...>;
      
      Results in 
      
      ADDSS
      ADDSD
      ADDPS
      ADDPD
      
      VADDSS
      VADDSD
      VADDPS
      VADDPD
      
      llvm-svn: 70979
      44f9d7a8
    • Mikhail Glushenkov's avatar
      Fix incorrect code generation with ENV. · d953cd94
      Mikhail Glushenkov authored
      See PR4157 for details. Patch by Martin Nowack!
      
      llvm-svn: 70973
      d953cd94
  8. May 04, 2009
  9. May 01, 2009
  10. Apr 30, 2009
  11. Apr 29, 2009
    • Bill Wendling's avatar
      Second attempt: · 084669a1
      Bill Wendling authored
      Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to
      use the old behavior, the flag is -O0. This change allows for finer-grained
      control over which optimizations are run at different -O levels.
      
      Most of this work was pretty mechanical. The majority of the fixes came from
      verifying that a "fast" variable wasn't used anymore. The JIT still uses a
      "Fast" flag. I'll change the JIT with a follow-up patch.
      
      llvm-svn: 70343
      084669a1
  12. Apr 28, 2009
  13. Apr 27, 2009
    • Nate Begeman's avatar
      2nd attempt, fixing SSE4.1 issues and implementing feedback from duncan. · 8d6d4b92
      Nate Begeman authored
      PR2957
      
      ISD::VECTOR_SHUFFLE now stores an array of integers representing the shuffle
      mask internal to the node, rather than taking a BUILD_VECTOR of ConstantSDNodes
      as the shuffle mask.  A value of -1 represents UNDEF.
      
      In addition to eliminating the creation of illegal BUILD_VECTORS just to 
      represent shuffle masks, we are better about canonicalizing the shuffle mask,
      resulting in substantially better code for some classes of shuffles.
      
      llvm-svn: 70225
      8d6d4b92
  14. Apr 24, 2009
    • David Greene's avatar
      · 7049e79e
      David Greene authored
      Fix multiclass inheritance to limit value resolution to new defs added
      by base multiclasses.  Do not attempt to alter defs from previous base
      multiclasses.  This fixes multiple multiclass inheritance.
      
      llvm-svn: 69974
      7049e79e
    • Rafael Espindola's avatar
      Revert 69952. Causes testsuite failures on linux x86-64. · b93db668
      Rafael Espindola authored
      llvm-svn: 69967
      b93db668
    • Nate Begeman's avatar
      PR2957 · bb881d66
      Nate Begeman authored
      ISD::VECTOR_SHUFFLE now stores an array of integers representing the shuffle
      mask internal to the node, rather than taking a BUILD_VECTOR of ConstantSDNodes
      as the shuffle mask.  A value of -1 represents UNDEF.
      
      In addition to eliminating the creation of illegal BUILD_VECTORS just to 
      represent shuffle masks, we are better about canonicalizing the shuffle mask,
      resulting in substantially better code for some classes of shuffles.
      
      A clean up of x86 shuffle code, and some canonicalizing in DAGCombiner is next.
      
      llvm-svn: 69952
      bb881d66
  15. Apr 23, 2009
    • David Greene's avatar
      · 196ac3c6
      David Greene authored
      Make BinOps typed and require a type specifier for !nameconcat.  This
      allows binops to be used in typed contexts such as when passing
      arguments to classes.
      
      llvm-svn: 69921
      196ac3c6
    • David Greene's avatar
      · f00919a0
      David Greene authored
      Allow defm to inherit from multiple multiclasses.
      
      llvm-svn: 69832
      f00919a0
  16. Apr 22, 2009
    • David Greene's avatar
      · a9c6c5d3
      David Greene authored
      Implement !nameconcat to concatenate strings and look up the resulting
      name in the symbol table, returning an object.
      
      llvm-svn: 69822
      a9c6c5d3
    • David Greene's avatar
      Implement multiclass inheritance. · 753ed8fd
      David Greene authored
      llvm-svn: 69810
      753ed8fd
  17. Apr 19, 2009
  18. Apr 17, 2009
  19. Apr 16, 2009
Loading