- Jun 16, 2009
-
-
Owen Anderson authored
Comments welcome! llvm-svn: 73456
-
Mikhail Glushenkov authored
llvm-svn: 73449
-
- Jun 15, 2009
-
-
Dan Gohman authored
llvm-svn: 73421
-
Dan Gohman authored
llvm-svn: 73397
-
Dan Gohman authored
llvm-svn: 73394
-
Torok Edwin authored
generator! llvm-svn: 73385
-
Chris Lattner authored
llvm-svn: 73369
-
- Jun 12, 2009
-
-
Devang Patel authored
Document noredzone and noimplicitfloat function attributes. llvm-svn: 73246
-
Oscar Fuentes authored
Patch by Ingmar Vanhassel! llvm-svn: 73216
-
- Jun 11, 2009
-
-
Oscar Fuentes authored
llvm-svn: 73181
-
- Jun 09, 2009
-
-
David Greene authored
Revert 73074 and 73099 because Windows doesn't have POSIX regular expressions. We will add an OpenBSD implementation and re-apply ASAP. llvm-svn: 73138
-
David Greene authored
Add a !patsubst operator. Use on string types. llvm-svn: 73099
-
David Greene authored
Update documentation. llvm-svn: 73092
-
Daniel Dunbar authored
llvm-svn: 73089
-
- Jun 08, 2009
-
-
David Greene authored
Add a !regmatch operator to do pattern matching in TableGen. llvm-svn: 73074
-
- Jun 06, 2009
-
-
Nick Lewycky authored
llvm-svn: 73003
-
- Jun 05, 2009
-
-
Dan Gohman authored
integer and floating-point opcodes, introducing FAdd, FSub, and FMul. For now, the AsmParser, BitcodeReader, and IRBuilder all preserve backwards compatability, and the Core LLVM APIs preserve backwards compatibility for IR producers. Most front-ends won't need to change immediately. This implements the first step of the plan outlined here: http://nondot.org/sabre/LLVMNotes/IntegerOverflow.txt llvm-svn: 72897
-
- Jun 04, 2009
-
-
Torok Edwin authored
llvm-svn: 72867
-
Oscar Fuentes authored
LLVM_ENABLE_ASSERTIONS. Fine-tuned the logic that controls the definition of NDEBUG and _DEBUG macros. Thanks to Jay Foad for this suggestions. llvm-svn: 72864
-
- Jun 03, 2009
-
-
Torok Edwin authored
llvm-svn: 72778
-
Oscar Fuentes authored
llvm-svn: 72774
-
Torok Edwin authored
Please correct the documentation if I missed anything. llvm-svn: 72773
-
Jay Foad authored
llvm-svn: 72762
-
- May 30, 2009
-
-
Nick Lewycky authored
llvm-svn: 72623
-
Nick Lewycky authored
llvm-svn: 72610
-
- May 29, 2009
-
-
Bruno Cardoso Lopes authored
llvm-svn: 72579
-
- May 24, 2009
-
-
Nick Lewycky authored
llvm-svn: 72357
-
- May 22, 2009
-
-
Dan Gohman authored
must be dominated by the normal label. llvm-svn: 72285
-
- May 21, 2009
-
-
Stuart Hastings authored
llvm-svn: 72222
-
- May 19, 2009
-
-
Cristian Cadar authored
llvm-svn: 72092
-
Evan Cheng authored
llvm-svn: 72050
-
- May 17, 2009
-
-
Bill Wendling authored
llvm-svn: 71974
-
- May 15, 2009
-
-
David Greene authored
Implement !if, analogous to $(if) in GNU make. llvm-svn: 71815
-
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
-
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
-
- May 14, 2009
-
-
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
-
David Greene authored
Implement !cast. llvm-svn: 71794
-
Jim Grosbach authored
llvm-svn: 71771
-
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
-
- May 13, 2009
-
-
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
-