| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Fix warnings. | Owen Anderson | 2009-08-11 | 1 | -4/+4 | 
| *  | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson | 2009-08-11 | 1 | -77/+78 | 
| *  | Tidy #includes. | Dan Gohman | 2009-08-11 | 1 | -0/+1 | 
| *  | SjLj based exception handling unwinding support. This patch is nasty, brutish | Jim Grosbach | 2009-08-11 | 1 | -0/+1 | 
| *  | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 1 | -238/+238 | 
| *  | Start moving TargetLowering away from using full MVTs and towards SimpleValue... | Owen Anderson | 2009-08-10 | 1 | -1/+2 | 
| *  | Major calling convention code refactoring. | Dan Gohman | 2009-08-05 | 1 | -55/+26 | 
| *  | Propogate the Depth argument when calling | Dan Gohman | 2009-08-04 | 1 | -1/+2 | 
| *  | Print the target flags as an int instead of a char, as they aren't | Dan Gohman | 2009-08-01 | 1 | -4/+4 | 
| *  | Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rathe... | Sanjiv Gupta | 2009-07-30 | 1 | -3/+6 | 
| *  | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -6/+5 | 
| *  | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 1 | -1/+1 | 
| *  | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -1/+1 | 
| *  | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 1 | -1/+1 | 
| *  | Fix some minor MSVC compiler warnings. | Daniel Dunbar | 2009-07-19 | 1 | -2/+2 | 
| *  | Privatize the ConstantFP table.  I'm on a roll! | Owen Anderson | 2009-07-16 | 1 | -1/+1 | 
| *  | Move the ConstantInt uniquing table into LLVMContextImpl.  This exposed a num... | Owen Anderson | 2009-07-16 | 1 | -1/+1 | 
| *  | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -11/+11 | 
| *  | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -11/+12 | 
| *  | Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned  | Eli Friedman | 2009-07-09 | 1 | -5/+8 | 
| *  | As Chris pointed out, we don't actually need to pass the context around here. | Owen Anderson | 2009-07-09 | 1 | -2/+2 | 
| *  | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson | 2009-07-09 | 1 | -6/+8 | 
| *  | Make SelectionDAG::getVectorShuffle work properly for VECTOR_SHUFFLE | Dan Gohman | 2009-07-09 | 1 | -2/+2 | 
| *  | SelectionDAG::SignBitIsZero doesn't work right for vectors, | Chris Lattner | 2009-07-07 | 1 | -0/+4 | 
| *  | Have scoped mutexes take referenes instead of pointers. | Owen Anderson | 2009-07-07 | 1 | -1/+1 | 
| *  | Add NumFixedArgs attribute to CallSDNode which indicates the number of fixed ... | Tilmann Scheller | 2009-07-03 | 1 | -5/+6 | 
| *  | fix a typo that GCC should have caught that causes crashes with -view-*-dags | Chris Lattner | 2009-06-27 | 1 | -1/+1 | 
| *  | fix a really subtle bug in the cross section of aliases and TLS: | Chris Lattner | 2009-06-26 | 1 | -9/+3 | 
| *  | add targetflags to jump tables and constant pool entries. | Chris Lattner | 2009-06-25 | 1 | -6/+24 | 
| *  | allow setting target operand flags on TargetGlobalAddress nodes. | Chris Lattner | 2009-06-25 | 1 | -6/+19 | 
| *  | start bringing targetoperand flags into isel, first up, ExternalSymbol. | Chris Lattner | 2009-06-25 | 1 | -7/+13 | 
| *  | Provide guards for this shared structure.  I'm not sure this actually needs | Owen Anderson | 2009-06-25 | 1 | -3/+8 | 
| *  | Rewrite 73900 per Duncan's suggestion. | Dale Johannesen | 2009-06-24 | 1 | -19/+9 | 
| *  | Fix memcpy expansion so it won't generate invalid | Dale Johannesen | 2009-06-22 | 1 | -6/+25 | 
| *  | Add new function attribute - noimplicitfloat | Devang Patel | 2009-06-05 | 1 | -1/+1 | 
| *  | Don't do the X * 0.0 -> 0.0 transformation in instcombine, because | Dan Gohman | 2009-06-04 | 1 | -5/+8 | 
| *  | Fix comments. | Dan Gohman | 2009-06-04 | 1 | -2/+2 | 
| *  | Revert 72707 and 72709, for the moment. | Dale Johannesen | 2009-06-02 | 1 | -0/+1 | 
| *  | Make the implicit inputs and outputs of target-independent | Dale Johannesen | 2009-06-01 | 1 | -1/+0 | 
| *  | Untabification. | Bill Wendling | 2009-05-30 | 1 | -4/+4 | 
| *  | Make DBG_STOPPOINT nodes, and therefore DBG_LABEL labels, get a DebugLoc, so ... | Chris Lattner | 2009-05-04 | 1 | -1/+2 | 
| *  | Update comment, replace theoretically impossible check with an assert. | Nate Begeman | 2009-04-29 | 1 | -3/+1 | 
| *  | Implement review feedback for vector shuffle work. | Nate Begeman | 2009-04-29 | 1 | -25/+33 | 
| *  | Add a public method called getAddressSpace() to the GlobalAddressSDNode. | Sanjiv Gupta | 2009-04-29 | 1 | -0/+7 | 
| *  | 2nd attempt, fixing SSE4.1 issues and implementing feedback from duncan. | Nate Begeman | 2009-04-27 | 1 | -19/+135 | 
| *  | Fix PR 4057, a crash doing float->char const folding. | Dale Johannesen | 2009-04-24 | 1 | -3/+4 | 
| *  | Revert 69952. Causes testsuite failures on linux x86-64. | Rafael Espindola | 2009-04-24 | 1 | -131/+22 | 
| *  | PR2957 | Nate Begeman | 2009-04-24 | 1 | -22/+131 | 
| *  | Simplify this code. getConstant knows how to make | Dan Gohman | 2009-04-20 | 1 | -10/+3 | 
| *  | Revise my previous change 68996 as suggested by Duncan. | Bob Wilson | 2009-04-20 | 1 | -1/+2 |