| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use stripPointerCasts instead of partially rewriting it. | Dale Johannesen | 2009-08-06 | 1 | -4/+2 |
| * | Add assertion checks after the calls to LowerFormalArguments, LowerCall, | Dan Gohman | 2009-08-06 | 1 | -1/+34 |
| * | Remove an over-aggressive assert. Functions with empty struct return | Dan Gohman | 2009-08-06 | 1 | -3/+0 |
| * | Fix a few places in DAGCombiner that were creating all-ones-bits | Dan Gohman | 2009-08-06 | 1 | -5/+17 |
| * | Major calling convention code refactoring. | Dan Gohman | 2009-08-05 | 9 | -514/+386 |
| * | Propogate the Depth argument when calling | Dan Gohman | 2009-08-04 | 1 | -1/+2 |
| * | Revert 77974. It breaks 3 of the ARM tests. | Bob Wilson | 2009-08-03 | 1 | -8/+0 |
| * | Allow targets to custom handle softening of results or operands before trying... | Sanjiv Gupta | 2009-08-03 | 1 | -0/+8 |
| * | llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like... | Benjamin Kramer | 2009-08-03 | 1 | -6/+5 |
| * | Avoid forming a SELECT_CC in a type that the target doesn't | Dan Gohman | 2009-08-02 | 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 |
| * | Delete a redundant variable. | Dan Gohman | 2009-08-01 | 1 | -1/+0 |
| * | Minor code simplifications. | Dan Gohman | 2009-08-01 | 1 | -8/+8 |
| * | SelectionDAGISel no longer needs to check hasAvailableExternallyLinkage, | Dan Gohman | 2009-08-01 | 1 | -5/+0 |
| * | SelectionDAGISel does not "preserve all", since it makes lots of changes | Dan Gohman | 2009-07-31 | 1 | -1/+3 |
| * | Use a range insert instead of an explicit loop. | Dan Gohman | 2009-07-31 | 1 | -2/+1 |
| * | Allow target intrinsics that return multiple values, i.e., struct types, | Bob Wilson | 2009-07-31 | 1 | -15/+9 |
| * | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 1 | -2/+2 |
| * | Reapply r77654 with a fix: MachineFunctionPass's getAnalysisUsage | Dan Gohman | 2009-07-31 | 1 | -4/+7 |
| * | Move getTrue() and getFalse() to 2.5-like APIs. | Owen Anderson | 2009-07-31 | 1 | -4/+4 |
| * | Revert r77654, it appears to be causing llvm-gcc bootstrap failures, and many | Daniel Dunbar | 2009-07-31 | 1 | -7/+4 |
| * | Manage MachineFunctions with an analysis Pass instead of the Annotable | Dan Gohman | 2009-07-31 | 1 | -4/+7 |
| * | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 1 | -2/+1 |
| * | Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rathe... | Sanjiv Gupta | 2009-07-30 | 2 | -3/+9 |
| * | Optimize some common usage patterns of atomic built-ins __sync_add_and_fetch(... | Evan Cheng | 2009-07-30 | 1 | -0/+1 |
| * | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 7 | -44/+32 |
| * | inline the global 'getInstrOperandRegClass' function into its callers | Chris Lattner | 2009-07-29 | 1 | -7/+8 |
| * | Remove now unused Context variables. | Benjamin Kramer | 2009-07-29 | 1 | -1/+0 |
| * | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -1/+1 |
| * | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 2 | -2/+2 |
| * | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -1/+1 |
| * | Rip all of the global variable lowering logic out of TargetAsmInfo. Since | Chris Lattner | 2009-07-28 | 1 | -5/+9 |
| * | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 2 | -5/+3 |
| * | Reorganize code a bit to reduce indentation. No visible functionality | Eli Friedman | 2009-07-26 | 1 | -287/+287 |
| * | Remove Value::getNameLen | Daniel Dunbar | 2009-07-26 | 1 | -18/+6 |
| * | Convert a few more things to use raw_ostream. | Dan Gohman | 2009-07-25 | 2 | -26/+27 |
| * | More migration to raw_ostream, the water has dried up around the iostream hole. | Daniel Dunbar | 2009-07-25 | 1 | -1/+2 |
| * | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 4 | -4/+4 |
| * | Add support for promoting SETCC operations. | Jakob Stoklund Olesen | 2009-07-24 | 4 | -13/+20 |
| * | Move more to raw_ostream, provide support for writing MachineBasicBlock, | Daniel Dunbar | 2009-07-24 | 1 | -4/+4 |
| * | Switch to getNameStr(). | Daniel Dunbar | 2009-07-24 | 2 | -4/+4 |
| * | "fix" PR4612, which is a crash on: | Chris Lattner | 2009-07-23 | 1 | -1/+5 |
| * | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 3 | -7/+7 |
| * | Remove shift amount flavor. It isn't actually complete enough to | Eli Friedman | 2009-07-21 | 1 | -1/+0 |
| * | Rename getConstantInt{True|False} to get{True|False} at Chris' behest. | Owen Anderson | 2009-07-21 | 1 | -4/+4 |
| * | Simplify / normalize some uses of Value::getName. | Daniel Dunbar | 2009-07-21 | 1 | -1/+1 |
| * | Fix a dagga combiner bug: avoid creating illegal constant. | Evan Cheng | 2009-07-21 | 1 | -9/+12 |
| * | Move a bit more state over to the LLVMContext. | Owen Anderson | 2009-07-21 | 1 | -4/+6 |
| * | Move stripping of bitcasts in inline asm arguments | Dale Johannesen | 2009-07-20 | 2 | -12/+7 |
| * | Fix some minor MSVC compiler warnings. | Daniel Dunbar | 2009-07-19 | 1 | -2/+2 |