| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | add a helper method. | Chris Lattner | 2009-09-21 | 1 | -0/+12 |
* | Don't allow formatted_ostream to be unbuffered, even if its underlying buffer | Daniel Dunbar | 2009-09-21 | 1 | -1/+6 |
* | Implement the JIT side of the GDB JIT debugging interface. To enable this | Reid Kleckner | 2009-09-20 | 1 | -0/+9 |
* | write rfind in terms of npos as daniel requested | Chris Lattner | 2009-09-20 | 1 | -6/+4 |
* | remove a dead method. | Chris Lattner | 2009-09-20 | 1 | -7/+0 |
* | smallvectorize getExtraOptionNames | Chris Lattner | 2009-09-20 | 1 | -6/+6 |
* | add a helper method. | Chris Lattner | 2009-09-20 | 1 | -0/+7 |
* | A few more tabs -> spaces. | Daniel Dunbar | 2009-09-20 | 2 | -6/+6 |
* | move a couple non-trivial methods out of line, add new | Chris Lattner | 2009-09-20 | 1 | -39/+23 |
* | convert a bunch more stuff to use StringRef. The ArgName arguments are now | Chris Lattner | 2009-09-20 | 1 | -19/+17 |
* | add size_t and a version of rfind that allows specification of where | Chris Lattner | 2009-09-20 | 1 | -3/+9 |
* | add some more overloads of StringRef::getAsInteger for | Chris Lattner | 2009-09-19 | 1 | -1/+3 |
* | add a simple c_str() method to SmallString. | Chris Lattner | 2009-09-19 | 1 | -0/+6 |
* | Prefer super class constructor to explicit initialization. | Daniel Dunbar | 2009-09-19 | 1 | -7/+4 |
* | Tabs -> spaces (really?) | Daniel Dunbar | 2009-09-19 | 1 | -4/+4 |
* | Strip trailing whitespace. | Daniel Dunbar | 2009-09-19 | 2 | -47/+47 |
* | RHS of assignment should be const reference. | Daniel Dunbar | 2009-09-19 | 1 | -1/+1 |
* | Remove the default value for ConstantStruct::get's isPacked parameter and | Nick Lewycky | 2009-09-19 | 1 | -3/+3 |
* | provide a "strtoull" operation that works on StringRef's. | Chris Lattner | 2009-09-19 | 1 | -0/+17 |
* | convert a bunch of std::strings to use StringRef. This should eliminate | Chris Lattner | 2009-09-19 | 1 | -28/+22 |
* | Lett users of sparse propagation do their own thing with phi nodes if they want | Nick Lewycky | 2009-09-19 | 1 | -0/+6 |
* | Update comments. | Evan Cheng | 2009-09-19 | 1 | -0/+3 |
* | remove an extraneous mem2reg pass early in the pipe. Since | Chris Lattner | 2009-09-18 | 1 | -2/+0 |
* | reduce indentation by using an early exit, and add a comment, | Chris Lattner | 2009-09-18 | 1 | -62/+65 |
* | Enhance EmitInstrWithCustomInserter() so target can specify CFG changes that ... | Evan Cheng | 2009-09-18 | 2 | -2/+4 |
* | add a new hook to allow targets to splat stuff at the end of the file. | Chris Lattner | 2009-09-18 | 1 | -0/+4 |
* | Write and read metadata attachments. | Devang Patel | 2009-09-18 | 2 | -4/+12 |
* | Update malloc call creation code (AllocType is now the element type of the ma... | Victor Hernandez | 2009-09-18 | 2 | -13/+13 |
* | Allow symbols to start from the digit if target requests it. This allows, e.g... | Anton Korobeynikov | 2009-09-18 | 2 | -1/+16 |
* | Revert r82214 completely to fix build. | Xerxes Ranby | 2009-09-18 | 1 | -7/+0 |
* | Fix a bug in sdisel switch lowering code. When it updates the phi nodes in sw... | Evan Cheng | 2009-09-18 | 1 | -0/+7 |
* | Use __attribute__((__used__)) if GCC >= 3.1 (seems to be the oldest GCC | Julien Lerouge | 2009-09-17 | 1 | -1/+1 |
* | Fix a few places where PointerIntPair was using PointerLikeTypeTraits<PointerTy> | John McCall | 2009-09-17 | 1 | -4/+5 |
* | pass machinemoduleinfo down into getSymbolForDwarfGlobalReference, | Chris Lattner | 2009-09-17 | 1 | -2/+5 |
* | Teach ScalarEvolution how to reason about no-wrap flags on loops | Dan Gohman | 2009-09-17 | 1 | -1/+2 |
* | grammar | Jim Grosbach | 2009-09-17 | 1 | -1/+1 |
* | Remove simple regalloc. It has bit rotted. | Evan Cheng | 2009-09-17 | 2 | -7/+0 |
* | add a version of the APFloat constructor that initializes to 0.0 | Chris Lattner | 2009-09-17 | 1 | -0/+1 |
* | Add StringRef::{rfind, rsplit} | Daniel Dunbar | 2009-09-16 | 1 | -2/+48 |
* | Add a new pass for doing late hoisting of floating-point and vector | Dan Gohman | 2009-09-16 | 2 | -0/+6 |
* | Print debug info attached with an instruction. | Devang Patel | 2009-09-16 | 1 | -2/+6 |
* | Provide a way to extract location info from DILocation. | Devang Patel | 2009-09-16 | 1 | -0/+5 |
* | Add an interface to attach debugging information with an instruction. | Devang Patel | 2009-09-16 | 1 | -6/+24 |
* | Add llvm::Metadata to manage metadata used in a context. | Devang Patel | 2009-09-16 | 3 | -1/+51 |
* | Reapplied r81355 with the problems fixed. | Andreas Neustifter | 2009-09-16 | 1 | -0/+2 |
* | Preserve ProfileInfo during CodeGenPrepare. | Andreas Neustifter | 2009-09-16 | 1 | -1/+1 |
* | move FnStubs/GVSTubs/HiddenGVStub handling out of the X86 asmprinter | Chris Lattner | 2009-09-16 | 3 | -6/+8 |
* | add a new MachineModuleInfoMachO class, which is the per-module | Chris Lattner | 2009-09-16 | 2 | -1/+80 |
* | the pointer MMI keeps will start out with object-file format specific stuff | Chris Lattner | 2009-09-16 | 1 | -10/+11 |
* | remove the AsmPrinter::printMCInst hook hack now that | Chris Lattner | 2009-09-16 | 1 | -6/+0 |