Age | Commit message (Expand) | Author |
2010-01-05 | Fix indentation. | Dan Gohman |
2010-01-05 | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2009-12-29 | Final step in the metadata API restructuring: move the | Chris Lattner |
2009-12-28 | This is a major cleanup of the instruction metadata interfaces that | Chris Lattner |
2009-12-28 | rename getMDKind -> getMDKindID, make it autoinsert if an MD Kind | Chris Lattner |
2009-12-08 | Teach GlobalOpt to delete aliases with internal linkage (after | Duncan Sands |
2009-11-23 | Make ConstantFoldConstantExpression recursively visit the entire | Dan Gohman |
2009-11-23 | Remove unused LLVMContext. | Nick Lewycky |
2009-11-19 | Extend CaptureTracking to indicate when a value is never stored, even | Dan Gohman |
2009-11-17 | Remove debug info attached with an instruction. | Devang Patel |
2009-11-12 | use isInstructionTriviallyDead, as pointed out by Duncan | Chris Lattner |
2009-11-12 | implement a nice little efficiency hack in the inliner. Since we're now | Chris Lattner |
2009-11-10 | Update computeArraySize() to use ComputeMultiple() to determine the array siz... | Victor Hernandez |
2009-11-07 | - new SROA mallocs should have the mallocs running-or'ed, not the malloc's bi... | Victor Hernandez |
2009-11-07 | Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions. | Victor Hernandez |
2009-11-06 | remove a bunch of extraneous LLVMContext arguments | Chris Lattner |
2009-11-06 | Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM | Victor Hernandez |
2009-11-05 | Update various Loop optimization passes to cope with the possibility that | Dan Gohman |
2009-11-05 | Update CreateMalloc so that its callers specify the size to allocate: | Victor Hernandez |
2009-11-03 | Eliminate some temporaries. | Benjamin Kramer |
2009-11-01 | cleanups, switch GlobalDCE to SmallPtrSet instead of std::set | Chris Lattner |
2009-11-01 | Reverting 85714, 85715, 85716, which are breaking the build | Douglas Gregor |
2009-11-01 | Remove the #include of Pass.h from PassManager.h. This breaks a significant | Dan Gohman |
2009-11-01 | teach ipsccp and ipconstprop that a blockaddress doesn't 'take the address' o... | Chris Lattner |
2009-11-01 | Revert 85678/85680. The decision is to stay with the current form of | Chris Lattner |
2009-10-31 | adjust a couple xforms to work with null bb's in BlockAddress. | Chris Lattner |
2009-10-29 | just for the hell of it, allow globalopt to statically evaluate | Chris Lattner |
2009-10-29 | teach various passes about blockaddress. We no longer | Chris Lattner |
2009-10-28 | Extend getMallocArraySize() to determine the array size if the malloc argumen... | Victor Hernandez |
2009-10-28 | llvm.dbg.global_variables do not exist anymore. | Devang Patel |
2009-10-28 | Previously, all operands to Constant were themselves constant. | Chris Lattner |
2009-10-27 | Rename MallocFreeHelper as MemoryBuiltins | Victor Hernandez |
2009-10-26 | Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t... | Victor Hernandez |
2009-10-25 | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky |
2009-10-25 | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky |
2009-10-24 | Auto-upgrade free instructions to calls to the builtin free function. | Victor Hernandez |
2009-10-21 | Derive metadata hierarchy from Value instead of User. | Devang Patel |
2009-10-21 | Do not remove dead metadata for now. | Devang Patel |
2009-10-19 | Malloc calls are marked NoAlias, so the code below the isMalloc() check makes... | Victor Hernandez |
2009-10-18 | remove the IndMemRemPass, which only made sense for when malloc/free were int... | Chris Lattner |
2009-10-17 | Remove MallocInst from LLVM Instructions. | Victor Hernandez |
2009-10-17 | Autoupgrade malloc insts to malloc calls. | Victor Hernandez |
2009-10-16 | HeapAllocSRoA also needs to check if malloc array size can be computed. | Victor Hernandez |