| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove a bunch of unused arguments from functions, silencing a | Eric Christopher | 2009-10-14 | 8 | -15/+14 |
* | Add copyMD to copy metadata from one instruction to another instruction. | Devang Patel | 2009-10-14 | 1 | -0/+4 |
* | I don't see any point in having both eh.selector.i32 and eh.selector.i64, | Duncan Sands | 2009-10-14 | 2 | -10/+6 |
* | Undo pthread patch from rev. 83930 & 83823. Credit to Paul Davey. | Edward O'Callaghan | 2009-10-14 | 1 | -3/+3 |
* | Fix resetCachedCostInfo to reset all of the cost information, instead of | Dan Gohman | 2009-10-13 | 1 | -1/+1 |
* | s/DebugLoc.CompileUnit/DebugLoc.Scope/g | Devang Patel | 2009-10-13 | 1 | -12/+12 |
* | Add is_same type trait | Douglas Gregor | 2009-10-13 | 1 | -0/+11 |
* | Introduce new convenience methods for sign extending or | Duncan Sands | 2009-10-13 | 1 | -0/+8 |
* | Add an "msasm" flag to inline asm as suggested in PR 5125. | Dale Johannesen | 2009-10-13 | 1 | -2/+6 |
* | Split code not specific to Function inlining out into a separate class, | Dan Gohman | 2009-10-13 | 1 | -36/+44 |
* | Provide a mode for ImmutableMap/ImmutableSet to not automatically canonicaliz... | Ted Kremenek | 2009-10-13 | 2 | -12/+20 |
* | Move the InlineCost code from Transforms/Utils to Analysis. | Dan Gohman | 2009-10-13 | 2 | -3/+3 |
* | Start refactoring the inline cost estimation code so that it can be used | Dan Gohman | 2009-10-13 | 1 | -8/+16 |
* | Make the ExecutionEngine automatically remove global mappings on when their | Jeffrey Yasskin | 2009-10-13 | 1 | -21/+44 |
* | Copy metadata when value is RAUW'd. It is debatable whether this is the right... | Devang Patel | 2009-10-13 | 1 | -0/+1 |
* | The eh.exception intrinsic only reads from memory, it doesn't | Duncan Sands | 2009-10-13 | 1 | -1/+1 |
* | Add new "memory use marker" intrinsics. These indicate lifetimes and invariant | Nick Lewycky | 2009-10-13 | 1 | -0/+16 |
* | remove dead header. | Chris Lattner | 2009-10-13 | 1 | -40/+0 |
* | Add a ceilLogBase2 function to APInt. | Dan Gohman | 2009-10-13 | 1 | -0/+5 |
* | Regenerate configure for rev. 83823 putback. | Edward O'Callaghan | 2009-10-13 | 1 | -3/+3 |
* | Enable "debug info attached to an instruction" mode. | Devang Patel | 2009-10-12 | 2 | -0/+4 |
* | Revert the kludge in 76703. I got a clean | Dale Johannesen | 2009-10-12 | 1 | -6/+0 |
* | Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the | Jeffrey Yasskin | 2009-10-12 | 1 | -2/+7 |
* | Delete some obsolete declarations. | Dan Gohman | 2009-10-12 | 1 | -15/+0 |
* | Fix LLVM CMake build system so that it may now work on Solaris and AuroraUX. | Edward O'Callaghan | 2009-10-12 | 1 | -2/+2 |
* | Fix typo. | Nick Lewycky | 2009-10-11 | 1 | -1/+1 |
* | Fix typo. | Nick Lewycky | 2009-10-11 | 1 | -1/+1 |
* | add a helper for matching "1". | Chris Lattner | 2009-10-11 | 1 | -0/+12 |
* | there is no need to run mem2reg after jump threading at LTO time now. | Chris Lattner | 2009-10-11 | 1 | -3/+1 |
* | fix a bunch of bad formatting, delete the dead | Chris Lattner | 2009-10-11 | 1 | -61/+59 |
* | add a simple helper method. | Chris Lattner | 2009-10-10 | 1 | -0/+4 |
* | add ability for clients of SSAUpdater to find out about the | Chris Lattner | 2009-10-10 | 1 | -1/+10 |
* | add the ability to get a rewritten value from the middle of a block, | Chris Lattner | 2009-10-10 | 1 | -3/+27 |
* | rename GetValueInBlock -> GetValueAtEndOfBlock to better reflect | Chris Lattner | 2009-10-10 | 1 | -4/+4 |
* | Implement an efficient and fully general SSA update mechanism that | Chris Lattner | 2009-10-10 | 1 | -0/+71 |
* | add some WeakVH::operator='s. Without these, assigning | Chris Lattner | 2009-10-10 | 1 | -0/+9 |
* | change some static_cast into cast, pointed out by Gabor. | Chris Lattner | 2009-10-10 | 1 | -2/+2 |
* | add a version of PHINode::getIncomingBlock that takes a raw | Chris Lattner | 2009-10-10 | 1 | -8/+18 |
* | Make getMachineNode return a MachineSDNode* instead of a generic SDNode* | Dan Gohman | 2009-10-10 | 1 | -17/+18 |
* | Replace X86's CanRematLoadWithDispOperand by calling the target-independent | Dan Gohman | 2009-10-10 | 1 | -2/+3 |
* | The ScheduleDAG framework now requires an AliasAnalysis argument, though | Dan Gohman | 2009-10-09 | 1 | -1/+2 |
* | Factor out LiveIntervalAnalysis' code to determine whether an instruction | Dan Gohman | 2009-10-09 | 2 | -14/+26 |
* | Extract scope information from the variable itself, instead of relying on all... | Devang Patel | 2009-10-09 | 1 | -4/+4 |
* | ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverse | Jeffrey Yasskin | 2009-10-09 | 1 | -0/+3 |
* | Add a const qualifier. | Dan Gohman | 2009-10-09 | 1 | -1/+1 |
* | Use names instead of numbers for some of the magic | Dale Johannesen | 2009-10-09 | 1 | -0/+8 |
* | Add basic infrastructure and x86 support for preserving MachineMemOperand | Dan Gohman | 2009-10-09 | 1 | -1/+15 |
* | Raise the limit on built-in plugins in llvmc to 10. | Mikhail Glushenkov | 2009-10-09 | 1 | -0/+40 |
* | Indentation. | Evan Cheng | 2009-10-09 | 1 | -2/+1 |
* | Add the ability to track HasNSW and HasNUW on more kinds of SCEV expressions. | Dan Gohman | 2009-10-09 | 2 | -21/+35 |