Skip to content
  1. Jun 16, 2009
  2. Jun 15, 2009
  3. Jun 12, 2009
  4. Jun 11, 2009
  5. Jun 09, 2009
  6. Jun 08, 2009
    • David Greene's avatar
      · 07eba05a
      David Greene authored
      Add a !regmatch operator to do pattern matching in TableGen.
      
      llvm-svn: 73074
      07eba05a
  7. Jun 06, 2009
  8. Jun 05, 2009
  9. Jun 04, 2009
  10. Jun 03, 2009
  11. May 30, 2009
  12. May 29, 2009
  13. May 24, 2009
  14. May 22, 2009
  15. May 21, 2009
  16. May 19, 2009
  17. May 17, 2009
  18. May 15, 2009
    • David Greene's avatar
      · 3587eed2
      David Greene authored
      Implement !if, analogous to $(if) in GNU make.
      
      llvm-svn: 71815
      3587eed2
    • David Greene's avatar
      · d571b3c9
      David Greene authored
      Graduate LLVM to the big leagues by embedding a LISP processor into TableGen.
      
      Ok, not really, but do support some common LISP functions:
      
      * car
      * cdr
      * null
      
      llvm-svn: 71805
      d571b3c9
    • David Greene's avatar
      · e917fff3
      David Greene authored
      Implement a !foreach operator analogous to GNU make's $(foreach).
      Use it on dags and lists like this:
      
      class decls {
        string name;
      }
      
      def Decls : decls;
      
      class B<list<string> names> : A<!foreach(Decls.name, names, !strconcat(Decls.name, ", Sr."))>;
      
      llvm-svn: 71803
      e917fff3
  19. 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
    • Jim Grosbach's avatar
      clean up line-wrapping · 1a18dcc3
      Jim Grosbach authored
      llvm-svn: 71771
      1a18dcc3
    • Jim Grosbach's avatar
      Update the names of the exception handling sjlj instrinsics to · 06928192
      Jim Grosbach authored
      llvm.eh.sjlj.* for better clarity as to their purpose and scope. Add
      a description of llvm.eh.sjlj.setjmp to ExceptionHandling.html.
      (llvm.eh.sjlj.longjmp documentation coming when that implementation is
      added).
      
      llvm-svn: 71758
      06928192
  20. May 13, 2009
    • Bill Wendling's avatar
      Change MachineInstrBuilder::addReg() to take a flag instead of a list of · f7b83c7a
      Bill Wendling authored
      booleans. This gives a better indication of what the "addReg()" is
      doing. Remembering what all of those booleans mean isn't easy, especially if you
      aren't spending all of your time in that code.
      
      I took Jakob's suggestion and made it illegal to pass in "true" for the
      flag. This should hopefully prevent any unintended misuse of this (by reverting
      to the old way of using addReg()).
      
      llvm-svn: 71722
      f7b83c7a
Loading