| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rathe... | Sanjiv Gupta | 2009-07-30 | 1 | -0/+5 |
* | I've changed the semantics of MERGE_VALUES a bit. It's now allowed to live un... | Evan Cheng | 2009-07-30 | 1 | -3/+3 |
* | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -1/+1 |
* | Rip all of the global variable lowering logic out of TargetAsmInfo. Since | Chris Lattner | 2009-07-28 | 1 | -0/+4 |
* | hoist MCContext/MCStreamer up to AsmPrinter since we're going to start creating | Chris Lattner | 2009-07-27 | 1 | -0/+13 |
* | simplify #includes. | Chris Lattner | 2009-07-27 | 1 | -3/+1 |
* | Move more to raw_ostream, provide support for writing MachineBasicBlock, | Daniel Dunbar | 2009-07-24 | 2 | -0/+16 |
* | make Constant::getRelocationInfo return an enum, as suggested by Duncan. | Chris Lattner | 2009-07-24 | 1 | -8/+1 |
* | Constify the key in Mi2IndexMap. | David Greene | 2009-07-22 | 1 | -2/+2 |
* | Put comment printing under asm-verbose. | David Greene | 2009-07-22 | 1 | -1/+1 |
* | Make some changes suggested by Bill and Evan. | David Greene | 2009-07-22 | 1 | -0/+4 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 2 | -4/+3 |
* | no really, I can spell! | Chris Lattner | 2009-07-21 | 1 | -4/+4 |
* | add an API so target-independent codegen can determine if a constant | Chris Lattner | 2009-07-21 | 1 | -1/+28 |
* | revert r76602, 76603, and r76615, pending design discussions. | Chris Lattner | 2009-07-21 | 3 | -38/+6 |
* | Prefix IR dumps with LiveInterval indices when possible. This turns | David Greene | 2009-07-21 | 1 | -2/+24 |
* | make AsmPrinter::doFinalization iterate over the global variables | Chris Lattner | 2009-07-21 | 1 | -0/+5 |
* | Add PrefixPrinter arguments to the dump routines for MachineFunction and | David Greene | 2009-07-21 | 2 | -4/+14 |
* | implement a new magic global "llvm.compiler.used" which is like llvm.used, but | Chris Lattner | 2009-07-20 | 1 | -5/+8 |
* | remove AsmPrinter::findGlobalValue, just use Value::stripPointerCasts instead. | Chris Lattner | 2009-07-17 | 1 | -1/+0 |
* | Untangle a snarl that I discovered when updating the mangler, | Chris Lattner | 2009-07-17 | 1 | -4/+2 |
* | Add line numbers to OProfile. To do this, I added a processDebugLoc() | Jeffrey Yasskin | 2009-07-16 | 1 | -1/+7 |
* | Tidy up #includes. | Dan Gohman | 2009-07-16 | 2 | -2/+0 |
* | Remove mismatched and unnecessary declaration. | Daniel Dunbar | 2009-07-15 | 1 | -1/+0 |
* | Get rid of postInstructionAction and call EmitComments directly. | David Greene | 2009-07-15 | 1 | -19/+5 |
* | Remove the v3i32 and v3f32 value types: they are not | Duncan Sands | 2009-07-15 | 2 | -35/+22 |
* | remove printSuffixedName. | Chris Lattner | 2009-07-15 | 1 | -7/+0 |
* | Have asm printers use formatted_raw_ostream directly to avoid a | David Greene | 2009-07-14 | 1 | -3/+3 |
* | Remove some tabs and fix other whitespace. No functional changes. | Bob Wilson | 2009-07-14 | 1 | -7/+7 |
* | Fix a comment. | Bob Wilson | 2009-07-14 | 1 | -1/+1 |
* | New VNInfo alignment patch by Ryan Flynn. | Lang Hames | 2009-07-14 | 1 | -14/+3 |
* | Unbroke LiveInterval. | Lang Hames | 2009-07-14 | 1 | -4/+7 |
* | Tidy up VNInfo alignment code. Patch contributed by Ryan Flynn. | Lang Hames | 2009-07-14 | 1 | -22/+21 |
* | Do not use Mangler to remove '1' from linkage name. | Devang Patel | 2009-07-14 | 1 | -4/+0 |
* | Revert 75308. | Bob Wilson | 2009-07-14 | 2 | -153/+55 |
* | Move isLCSSAForm, isLoopInvariant, getCanonicalInductionVariable, | Dan Gohman | 2009-07-13 | 1 | -39/+0 |
* | Make Loop and MachineLoop be subclasses of LoopBase, rather than typedefs, | Dan Gohman | 2009-07-13 | 1 | -10/+24 |
* | Use AsmPrinter's Mangler to remove leading '1' from linkage names. | Devang Patel | 2009-07-13 | 1 | -1/+5 |
* | Add infrastructure to allow post instruction printing action triggers. | David Greene | 2009-07-13 | 1 | -2/+22 |
* | Make some more changes suggested by Chris. Manipulators go away. | David Greene | 2009-07-13 | 1 | -65/+0 |
* | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 1 | -0/+1 |
* | Add new vector types for 192-bit, 348-bit and 512-bit sizes. | Bob Wilson | 2009-07-10 | 2 | -55/+153 |
* | Make changes suggested by Chris and eliminate newly-added raw_ostream | David Greene | 2009-07-10 | 2 | -179/+65 |
* | Fix #include specification. | David Greene | 2009-07-10 | 1 | -1/+1 |
* | Redesign this to avoid standard stream classes. This stream class | David Greene | 2009-07-09 | 1 | -0/+179 |
* | Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned | Eli Friedman | 2009-07-09 | 1 | -1/+3 |
* | As Chris pointed out, we don't actually need to pass the context around here. | Owen Anderson | 2009-07-09 | 1 | -2/+1 |
* | back out r75156 for now. | Chris Lattner | 2009-07-09 | 1 | -442/+0 |
* | Add some classes to produce pretty-printed asm. We'll use these | David Greene | 2009-07-09 | 1 | -0/+442 |
* | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson | 2009-07-09 | 3 | -3/+9 |