| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Big change #1 for personality function references: | Chris Lattner | 2009-09-16 | 2 | -20/+23 |
* | add a helper method for creating MCSymbol and MCSymbolRefExpr at | Chris Lattner | 2009-09-16 | 1 | -1/+5 |
* | inline AsmPrinter::getCurrentFunctionEHName into its only caller. | Chris Lattner | 2009-09-16 | 1 | -4/+0 |
* | remove a dead bool. | Chris Lattner | 2009-09-16 | 1 | -5/+0 |
* | Eliminate AsmPrinter::EmitExternalGlobal, inlining its (now) | Chris Lattner | 2009-09-16 | 1 | -4/+0 |
* | eliminate the horrid AsmPrinter::getGlobalLinkName method, inlining | Chris Lattner | 2009-09-16 | 1 | -6/+0 |
* | remove some horrible MAI hooks which fortunately turn out to be always empty. | Chris Lattner | 2009-09-15 | 1 | -24/+0 |
* | add hooks to hang target-specific goop off MachineModuleInfo, | Chris Lattner | 2009-09-15 | 2 | -10/+37 |
* | Drop the raw_ostream required buffer size to 1. | Daniel Dunbar | 2009-09-15 | 1 | -1/+1 |
* | Better solution for tracking both the original alignment of the access, and t... | Nate Begeman | 2009-09-15 | 2 | -27/+22 |
* | Correct comment pasto | Jim Grosbach | 2009-09-15 | 1 | -1/+1 |