| Commit message (Expand) | Author | Age | Files | Lines |
* | Add GetResultInst. First step for multiple return value support. | Devang Patel | 2008-02-19 | 1 | -0/+6 |
* | Expand ParameterAttributes to 32 bits (in preparation | Dale Johannesen | 2008-02-19 | 1 | -11/+11 |
* | check that terminators only occur at the end of a block. This catches the | Chris Lattner | 2008-02-09 | 1 | -0/+5 |
* | Be more liberal in what parameter attributes are | Duncan Sands | 2008-01-12 | 1 | -31/+45 |
* | Do not allow attributes beyond a function's last | Duncan Sands | 2008-01-11 | 1 | -7/+25 |
* | Allow parameter attributes on varargs function parameters. | Evan Cheng | 2008-01-11 | 1 | -4/+3 |
* | Small cleanup for handling of type/parameter attribute | Duncan Sands | 2008-01-07 | 1 | -4/+4 |
* | The transform that tries to turn calls to bitcast functions into | Duncan Sands | 2008-01-06 | 1 | -16/+4 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Noting and enforcing that GC intrinsics are valid only within a | Gordon Henriksen | 2007-12-25 | 1 | -28/+36 |
* | Adjusting verification of "llvm.gc*" intrinsic prototypes to match | Gordon Henriksen | 2007-12-25 | 1 | -26/+33 |
* | Get the verifier to check attributes on calls as well | Duncan Sands | 2007-12-21 | 1 | -74/+97 |
* | Make invokes of inline asm legal. Teach codegen | Duncan Sands | 2007-12-17 | 1 | -1/+1 |
* | Change the PointerType api for creating pointer types. The old functionality ... | Christopher Lamb | 2007-12-17 | 1 | -2/+2 |
* | Make it clear in the LangRef that allocation instructions only operated on th... | Christopher Lamb | 2007-12-17 | 1 | -0/+8 |
* | Check that there are not more attributes than | Duncan Sands | 2007-11-30 | 1 | -0/+4 |
* | Fix PR1146: parameter attributes are longer part of | Duncan Sands | 2007-11-27 | 1 | -3/+3 |
* | Fix PR1816. If a bitcast of a function only exists because of a | Duncan Sands | 2007-11-25 | 1 | -30/+7 |
* | Rename the 'const' parameter attribute to 'readnone', | Duncan Sands | 2007-11-22 | 1 | -2/+2 |
* | Add support for vectors to int <-> float casts. | Nate Begeman | 2007-11-17 | 1 | -8/+40 |
* | I discover array_lengthof, thanks to gabor on #llvm. | Duncan Sands | 2007-11-14 | 1 | -2/+1 |
* | Simplify the attribute verification code. | Duncan Sands | 2007-11-14 | 1 | -34/+24 |
* | Add pure/const attributes. Documentation will follow. | Anton Korobeynikov | 2007-11-14 | 1 | -4/+13 |
* | Don't barf on empty basic blocks. Do not rely on assert | Duncan Sands | 2007-11-01 | 1 | -9/+21 |
* | remove verifier command line option: this should be part of the API, not | Chris Lattner | 2007-11-01 | 1 | -11/+0 |
* | Now with less tabs! | Owen Anderson | 2007-11-01 | 1 | -5/+5 |
* | Add a preverifier pass to check that every basic block ends in a terminator, ... | Owen Anderson | 2007-10-31 | 1 | -1/+20 |
* | I am not sure this is a good idea to be an option, but rename the option for | Chris Lattner | 2007-10-29 | 1 | -1/+1 |
* | Add 'pedantic' mode to verifier rejecting syntactically valid, but 'bad' due ... | Anton Korobeynikov | 2007-10-28 | 1 | -3/+14 |
* | Check that the second parameter of init_trampoline | Duncan Sands | 2007-09-29 | 1 | -2/+6 |
* | reject things like "declare internal @foo" | Chris Lattner | 2007-09-19 | 1 | -2/+11 |
* | Incorporating review feedback for GC verifier patch. | Gordon Henriksen | 2007-09-18 | 1 | -11/+5 |
* | Fix for PR1633: Verifier doesn't fully verify GC intrinsics | Gordon Henriksen | 2007-09-17 | 1 | -0/+36 |
* | Update GEP constructors to use an iterator interface to fix | David Greene | 2007-09-04 | 1 | -1/+1 |
* | use a nicer accessor. | Chris Lattner | 2007-08-18 | 1 | -1/+1 |
* | Fix the verification for overloaded intrinsic types. Check that they are | Dan Gohman | 2007-08-16 | 1 | -6/+19 |
* | Add MVT::fAny for overloading intrinsics on floating-point types. | Dan Gohman | 2007-08-16 | 1 | -0/+14 |
* | Fix minor doxygen nits. | Reid Spencer | 2007-08-05 | 1 | -0/+10 |
* | This is the patch to provide clean intrinsic function overloading support in ... | Chandler Carruth | 2007-08-04 | 1 | -66/+67 |
* | After a discussion with Anton, it turns out that the InReg attribute is not | Reid Spencer | 2007-07-31 | 1 | -1/+2 |
* | The InReg parameter attribute is valid on function results. The llvm-gcc-4.0 | Reid Spencer | 2007-07-31 | 1 | -2/+1 |
* | It seems logical that InReg should be incompatible | Duncan Sands | 2007-07-27 | 1 | -3/+2 |
* | As the number of parameter attributes increases, | Duncan Sands | 2007-07-27 | 1 | -39/+55 |
* | Support for trampolines, except for X86 codegen which is | Duncan Sands | 2007-07-27 | 1 | -0/+17 |
* | Make output match actual condition tested. Thanks, Duncan. | Reid Spencer | 2007-07-24 | 1 | -1/+1 |
* | 1. Make sure we print the Function Value for parameter attribute errors | Reid Spencer | 2007-07-23 | 1 | -10/+10 |
* | Add better verification of attributes on function types. It is not permitted | Reid Spencer | 2007-07-23 | 1 | -0/+9 |
* | detect invalid combination of sret and byval | Rafael Espindola | 2007-07-17 | 1 | -0/+4 |
* | Fix comments about vectors to use the current wording. | Dan Gohman | 2007-07-16 | 1 | -1/+1 |
* | check for correct usage of the byval attribute | Rafael Espindola | 2007-07-10 | 1 | -2/+11 |