- c0ef244 Fix comment typos. by Bob Wilson · 15 years ago
- e7e0d62 Remove ARMPCLabelIndex from ARMISelLowering. Use ARMFunctionInfo::createConstPoolEntryUId() instead. by Evan Cheng · 15 years ago
- 82ebca1 CallInst::CreateMalloc() and CallInst::CreateFree() need to create calls with correct calling convention by Victor Hernandez · 15 years ago
- 50591ab Remove function left over from other jump threading cleanup. by Eli Friedman · 15 years ago
- 29d727b fix typo by Gabor Greif · 15 years ago
- 82114b9 Fix a problem discovered on self host. by Chris Lattner · 15 years ago
- 90b9247 remove more code subsumed by r86264 by Chris Lattner · 15 years ago
- 5ebfa2d Tolerate invalid derived type. by Devang Patel · 15 years ago
- f7807f6 eliminate some more code subsumed by r86264 by Chris Lattner · 15 years ago
- 90926ab remove now redundant code, r86264 handles this case. by Chris Lattner · 15 years ago
- 7856725 Extend jump threading to support much more general threading by Chris Lattner · 15 years ago
- 8d4e3b5 Use WriteAsOperand to print GlobalAddress MachineOperands. This by Dan Gohman · 15 years ago
- 84c73e9 Do not bother to emit debug info for nameless global variable. by Devang Patel · 15 years ago
- 2928c83 Pass StringRef by value. by Daniel Dunbar · 15 years ago
- c128b3e clang++ points out that this is pointless. by Chris Lattner · 15 years ago
- f55eeb9 remove some more Context arguments. by Chris Lattner · 15 years ago
- 7b550cc remove a bunch of extraneous LLVMContext arguments by Chris Lattner · 15 years ago
- 6580da4 NewNighlytTest: Fix timestamp format to actually make sense (it was missing the hour). by Daniel Dunbar · 15 years ago
- da420ee NewNightlyTest: Add -noclean option, which doesn't run 'make clean' before building LLVM (for testing). by Daniel Dunbar · 15 years ago
- fe1974a NewNightlyTest: Unbreak passing the build directory via a positional argument. by Daniel Dunbar · 15 years ago
- 2d7adb5 NewNightlyTest: Add -llvmgccdir as alternative to environment variable. by Daniel Dunbar · 15 years ago
- df98761 Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM by Victor Hernandez · 15 years ago
- 465c3be Do not try to emit debug info entry for dead global variable. by Devang Patel · 15 years ago
- 42046ab Don't print a redundant tab for inline asm, and do use the new printKill. by Dan Gohman · 15 years ago
- 6a66b38 Add a bunch of missing "template" keywords to disambiguate dependent template names. GCC eats this ill-formed code, Clang does not. I already filed PR5404 to improve recovery in this case by Douglas Gregor · 15 years ago
- ef1fad5 Fix PR5315, original patch by Nicolas Capens! by Eric Christopher · 15 years ago
- 40c5786 Factor out the printing of the leading tab into printInlineAsm. by Dan Gohman · 15 years ago
- b38a308 Make printImplicitDef and printKill non-virtual, since they don't by Dan Gohman · 15 years ago
- 7289ed2 Use SUBREG_TO_REG instead of INSERT_SUBREG to model x86-64's by Dan Gohman · 15 years ago
- eb3567c Teach LSR to avoid calling SplitCriticalEdge on edges with indirectbr. by Dan Gohman · 15 years ago
- 3f13132 Update these tests for the new label names. by Dan Gohman · 15 years ago
- 568a3be Fix the label name generation for address-taken labels to avoid potential by Dan Gohman · 15 years ago
- 0c8ae78 Make a few more LLVM headers parsable as standalone headers. by Douglas Gregor · 15 years ago
- 489b833 Teach lit's SyntaxCheckTest two new tricks: by Douglas Gregor · 15 years ago
- fbb8fa2 Added support for renumbering existing index list elements. Removed some junk from the initial numbering code in runOnMachineFunction. by Lang Hames · 15 years ago
- b1dc915 Avoid calling getUniqueExitBlocks from within LoopSimplify, as it depends by Dan Gohman · 15 years ago
- 32cc5f4 LoopDeletion depends on loops having dedicated exits. by Dan Gohman · 15 years ago
- f4e82d1 The introduction of indirectbr meant the introduction of by Dan Gohman · 15 years ago
- 03e896b Update various Loop optimization passes to cope with the possibility that by Dan Gohman · 15 years ago
- 7040d6e Fix bug in aggressive antidep breaking; liveness was not updated correctly for regions that do not have antidep candidates. by David Goodwin · 15 years ago
- 692ad8d Teach LoopUnroll how to bail if LoopSimplify can't give it what it needs. by Dan Gohman · 15 years ago
- 6a02fc3 Call getAnalysis<LoopInfo> the normal way, instead of asking passed-in by Dan Gohman · 15 years ago
- e5db7c4 InstrTypes.h includes Instruction.h, so it's not necessary to include both. by Dan Gohman · 15 years ago
- a6a4aae Fix IVUsers to avoid assuming that the loop has a unique backedge. by Dan Gohman · 15 years ago
- 6890584 Delete an unused member variable. by Dan Gohman · 15 years ago
- f17e951 Factor out the predicate code for loopsimplify form exit blocks into by Dan Gohman · 15 years ago
- b5b10c2 CMake: Detect dotty. by Oscar Fuentes · 15 years ago
- 20f1714 CMake: do not test for pthread and dl libraries on Windows (except by Oscar Fuentes · 15 years ago
- c5600c8 Avoid printing a redundant space in SDNode->dump(). by Dan Gohman · 15 years ago
- 73bb251 Remove uninteresting and confusing debug output. by Dan Gohman · 15 years ago
- 9ed0d92 Move llvm::cl::opt's conversion function into the base classes that by Douglas Gregor · 15 years ago
- b8eb17c Add an assertion to catch indirectbr in SplitBlockPredecessors. This by Dan Gohman · 15 years ago
- 6c9fab7 add a note from PR5313 by Chris Lattner · 15 years ago
- 0ff2906 Declare classes with matched tags, pointed out by a clang++ warning. by Chris Lattner · 15 years ago
- 992a637 Teach SimplifyLibCalls to fold memcmp calls with constant arguments. by Benjamin Kramer · 15 years ago
- f626167 lit: Add --param NAME=VALUE option, for test suite specific use (to communicate by Daniel Dunbar · 15 years ago
- bcaa215 Do map insert+find in one step. TODO -= 2. by Benjamin Kramer · 15 years ago
- e9684c6 Path::createDirectoryOnDisk should ignore existing directories on win32 too. by Benjamin Kramer · 15 years ago
- 131b0d2 Make two more LLVM headers standalone by Douglas Gregor · 15 years ago
- fbe67f8 Make a few headers standalone. Plus, add a missing "template" keyword by Douglas Gregor · 15 years ago
- e4bddf1 merge a few crash tests into crash.ll by Chris Lattner · 15 years ago
- 82c4436 Reintroduce support for overloading target intrinsics by Mon P Wang · 15 years ago
- 98f2f1a Replace std::map.at() with std::map[]. by David Goodwin · 15 years ago
- 5409783 Break anti-dependencies using free registers in a round-robin manner to avoid introducing new anti-dependencies. by David Goodwin · 15 years ago
- 090780b Tidied some ugliness in the SlotIndex default constructor. by Lang Hames · 15 years ago
- 517e255 Now that code placement optimization pass is run for JIT, make sure it's before pre-emit passes. by Evan Cheng · 15 years ago
- 85b8de8 Use WeakVH while storing metadata in containers. This fixes PR5393. by Devang Patel · 15 years ago
- a0e7b02 Removed an assert which was causing significant slowdowns in debug builds. by Lang Hames · 15 years ago
- 5a225cc Add -mtriple to llc commands, attempting to fix buildbot failures. by Bob Wilson · 15 years ago
- 9fb744e Code refactoring. by Evan Cheng · 15 years ago
- 8a008cc Attempt again to fix buildbot failures: make expected output less specific by Bob Wilson · 15 years ago
- 5be870a Correctly add chain dependencies around calls and unknown-side-effect instructions. by David Goodwin · 15 years ago
- 24f934d Update CreateMalloc so that its callers specify the size to allocate: by Victor Hernandez · 15 years ago
- 61ecbd1 While calculating original type size for a derived type, handle type variants encoded as DIDerivedType appropriately. by Devang Patel · 15 years ago
- 4371cda Grammar. by Jim Grosbach · 15 years ago
- 40dd12e improve DSE when TargetData is not around, based on work by Hans Wennborg! by Chris Lattner · 15 years ago
- db1751a Now that the memory leak from McCat/08-main has been fixed (86056), re-enable by Jim Grosbach · 15 years ago
- 6db06a0 If a function has no stack frame at all, dynamic realignment isn't necessary. by Jim Grosbach · 15 years ago
- c5848f4 dynamic stack realignment necessitates scanning the floating point callee- by Jim Grosbach · 15 years ago
- 33db508 Fix DW_AT_data_member_location for bit-fields. It points to the location of annonymous field that covers respective field. by Devang Patel · 15 years ago
- 3d90dbe Add PowerPC codegen for indirect branches. by Bob Wilson · 15 years ago
- 0368e50 Handle empty/tombstone keys for LiveIndex more cleanly. Check for index sanity when constructing index list entries. by Lang Hames · 15 years ago
- 7127b13 A value is only assigned to errno if NumRead equals -1, so do by Duncan Sands · 15 years ago
- 1709dd7 Fix broken test. by Bob Wilson · 15 years ago
- 522c01a Add some options to disable various code gen optimizations. by Eric Christopher · 15 years ago
- c416d3b Array element size does not match array size but array is not a bitfield. by Devang Patel · 15 years ago
- 0d48d61 Add test for ARM indirectbr codegen. by Bob Wilson · 15 years ago
- ad68264 Print out an informative comment for KILL instructions. by Jakob Stoklund Olesen · 15 years ago
- 0fb7e18 Fix an iterator invalidation bug that happens when a hashtable by Chris Lattner · 15 years ago
- 17fc13f Look for llvm-gcc under /Developer/usr/bin first. by Evan Cheng · 15 years ago
- 50608ba RangeIsDefinedByCopyFromReg() should check for subreg_to_reg, insert_subreg, by Evan Cheng · 15 years ago
- 092543c move two functions up higher in the file. Delete a useless argument by Chris Lattner · 15 years ago
- 6a4ab1e filecheckize this test. by Chris Lattner · 15 years ago
- b9f51cb The .n suffix must go after the predicate. by Evan Cheng · 15 years ago
- e6b5a52 The magic for our current brand of .bc files is BC. For older ones it was llvc. by Nick Lewycky · 15 years ago
- 6bffa63 make IRBuilder zap "X|0" and "X&-1" when building IR, this happens by Chris Lattner · 15 years ago
- 1fce948 configure: Add --with-optimize-option, for setting the default value of by Daniel Dunbar · 15 years ago
- 9111c4f Silence implicit conversion warnings. by Evan Cheng · 15 years ago
- 11d0088 Another spurious friend declaration removed. by Lang Hames · 15 years ago
- f3a521f Removed an unnecessary friend declaration and some crufty comments from IndexListEntry. by Lang Hames · 15 years ago