| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add tests for WeakVH and AssertingVH. These pointed out that the overloads for | Jeffrey Yasskin | 2009-04-27 | 1 | -42/+2 |
| * | give bitstreamreader an API to ignore names for blocks/records, | Chris Lattner | 2009-04-27 | 1 | -1/+16 |
| * | 2nd attempt, fixing SSE4.1 issues and implementing feedback from duncan. | Nate Begeman | 2009-04-27 | 4 | -16/+49 |
| * | Add two new record types to the blockinfo block: | Chris Lattner | 2009-04-26 | 2 | -6/+36 |
| * | make BitstreamCursor's copyable and assignable. | Chris Lattner | 2009-04-26 | 1 | -2/+38 |
| * | Make a major API change to BitstreamReader: split all the reading | Chris Lattner | 2009-04-26 | 2 | -110/+141 |
| * | I cast, therefore I think I know what I'm doing. | Bill Wendling | 2009-04-26 | 1 | -4/+4 |
| * | Use uint64_t instead of unsigned. | Bill Wendling | 2009-04-26 | 1 | -4/+6 |
| * | revert an incorrect patch. This causes crashes all over the place on a | Chris Lattner | 2009-04-26 | 1 | -6/+4 |
| * | Suppress warnings about conversion shortening 64-bit to 32-bit. | Bill Wendling | 2009-04-26 | 1 | -4/+6 |
| * | Add a new TypeBuilder helper class, which eases making LLVM IR types. | Chris Lattner | 2009-04-25 | 1 | -0/+463 |
| * | improve documentation around memory lifetimes, | Chris Lattner | 2009-04-25 | 1 | -5/+17 |
| * | Use intptr_t. | Bill Wendling | 2009-04-25 | 1 | -1/+1 |
| * | size() should return a size_t; avoids a warning for 64 bit machines. | Mon P Wang | 2009-04-25 | 1 | -1/+1 |
| * | DenseMap.h needs <new> because it explicitly calls operator new/delete. | Chris Lattner | 2009-04-25 | 1 | -0/+1 |
| * | Do not share a single unknown val# for all the live ranges merged into a phys... | Evan Cheng | 2009-04-25 | 1 | -4/+0 |
| * | Revert 69952. Causes testsuite failures on linux x86-64. | Rafael Espindola | 2009-04-24 | 4 | -38/+16 |
| * | fix a typo noticed by duncan | Chris Lattner | 2009-04-24 | 1 | -1/+1 |
| * | "I got annoyed at the compiler warnings from ConstantInt::get(Ty, -1, | Chris Lattner | 2009-04-24 | 1 | -0/+9 |
| * | PR2957 | Nate Begeman | 2009-04-24 | 4 | -16/+38 |
| * | Change SCEVExpander's expandCodeFor to provide more flexibility | Dan Gohman | 2009-04-23 | 1 | -1/+11 |
| * | Use BasicBlock::iterator instead of Instruction* for insert points, | Dan Gohman | 2009-04-22 | 1 | -5/+6 |
| * | Make SCEVExpanders private methods private, instead of protected. | Dan Gohman | 2009-04-22 | 1 | -1/+2 |
| * | Add caching of predecessor counts as well as predecessors themselves. | Owen Anderson | 2009-04-22 | 1 | -0/+9 |
| * | Fix for PR3946, in which SmallVector could behave strangely in corner cases. | Owen Anderson | 2009-04-22 | 1 | -2/+2 |
| * | De-pImpl-ify ScalarEvolution. The pImpl pattern doesn't provide much | Dan Gohman | 2009-04-21 | 1 | -7/+109 |
| * | It has finally happened. Spiller is now using live interval info. | Evan Cheng | 2009-04-21 | 1 | -3/+3 |
| * | Factor out a common base class from SCEVTruncateExpr, SCEVZeroExtendExpr, | Dan Gohman | 2009-04-21 | 1 | -43/+33 |
| * | Introduce encapsulation for ScalarEvolution's TargetData object, and refactor | Dan Gohman | 2009-04-21 | 2 | -9/+22 |
| * | Convert ScalarEvolution to use raw_ostream instead of OStream. | Dan Gohman | 2009-04-21 | 2 | -19/+17 |
| * | Move duplicated AddLiveIn function from X86 and ARM backends to be a method | Bob Wilson | 2009-04-20 | 1 | -0/+5 |
| * | Revise my previous change 68996 as suggested by Duncan. | Bob Wilson | 2009-04-20 | 1 | -7/+6 |
| * | These bitfields were being miscompiled on some | Duncan Sands | 2009-04-20 | 1 | -11/+27 |
| * | Make all raw_ostreams support the tell() function. | Douglas Gregor | 2009-04-20 | 1 | -0/+34 |
| * | Fix missing text in doxygen documentation. | Nick Lewycky | 2009-04-19 | 1 | -1/+1 |
| * | Remove the SimpleTy enumerated type field from the MVT | Duncan Sands | 2009-04-19 | 1 | -14/+8 |
| * | Don't try to make BUILD_VECTOR operands have the same | Duncan Sands | 2009-04-18 | 1 | -1/+4 |
| * | Add a ScalarEvolution::getCouldNotCompute() function, and use it | Dan Gohman | 2009-04-18 | 1 | -0/+1 |
| * | Use more const qualifiers with SCEV interfaces. | Dan Gohman | 2009-04-18 | 2 | -27/+27 |
| * | Add a new LiveInterval::overlaps(). It checks if the live interval overlaps a... | Evan Cheng | 2009-04-18 | 1 | -0/+4 |
| * | Clean up formatting, remove trailing whitespace, fix comment typos and | Bob Wilson | 2009-04-17 | 1 | -6/+6 |
| * | Delete an unused field. | Dan Gohman | 2009-04-17 | 1 | -1/+0 |
| * | Use CallConvLower.h and TableGen descriptions of the calling conventions | Bob Wilson | 2009-04-17 | 2 | -4/+47 |
| * | Add a comment to describe LLVMMatchType. | Bob Wilson | 2009-04-16 | 1 | -0/+6 |
| * | Teach SCEVExpander::InsertCastOfTo to avoid creating inttoptr-of-ptrtoint | Dan Gohman | 2009-04-16 | 1 | -2/+2 |
| * | Expand GEPs in ScalarEvolution expressions. SCEV expressions can now | Dan Gohman | 2009-04-16 | 2 | -7/+12 |
| * | If FastISel is run and it has known DebugLoc then use it. | Devang Patel | 2009-04-16 | 1 | -0/+3 |
| * | Generalize one of the SelectionDAG::ReplaceAllUsesWith overloads | Dan Gohman | 2009-04-15 | 2 | -9/+3 |
| * | Allow jumping to the end of a bitstream while reading | Douglas Gregor | 2009-04-15 | 1 | -1/+1 |
| * | Don't use "protected:" in classes that aren't intended to be | Dan Gohman | 2009-04-15 | 1 | -21/+0 |