| Commit message (Expand) | Author | Age | Files | Lines |
* | Introduce DIScope. | Devang Patel | 2009-08-31 | 1 | -0/+16 |
* | Oops. Fix inverted logic in assertion check. | Devang Patel | 2009-08-31 | 1 | -6/+6 |
* | Remove .n suffix for some 16-bit opcodes now that Darwin assembler is fixed. | Evan Cheng | 2009-08-31 | 1 | -4/+3 |
* | X86/exp-asm-printer: Lower MachineOperand::MO_JumpTableIndex to MCOperand. | Daniel Dunbar | 2009-08-31 | 2 | -1/+35 |
* | Stop printing old asm printing code inline with -experimental-asm-printer (th... | Daniel Dunbar | 2009-08-31 | 1 | -9/+0 |
* | Avoid unnecessary +0 in experimental-asm-printer. | Daniel Dunbar | 2009-08-31 | 1 | -7/+10 |
* | Simplify isDerivedType() and other predicate interface. | Devang Patel | 2009-08-31 | 3 | -28/+65 |
* | Output a hex value, because all of the others are hex. | Bill Wendling | 2009-08-31 | 1 | -1/+1 |
* | cleanups pointed out by duncan | Chris Lattner | 2009-08-31 | 1 | -2/+1 |
* | Revert commit 80428. It completely broke exception | Duncan Sands | 2009-08-31 | 5 | -123/+17 |
* | Free the constants that have no uses in ~LLVMContext. | Edwin Török | 2009-08-31 | 4 | -4/+31 |
* | Fix ExplicitSymbols leak. | Edwin Török | 2009-08-31 | 1 | -0/+7 |
* | Normalize makefile comments and sort cmake file lists. | Benjamin Kramer | 2009-08-31 | 22 | -24/+24 |
* | llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues. | Daniel Dunbar | 2009-08-31 | 3 | -34/+37 |
* | llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). | Daniel Dunbar | 2009-08-31 | 3 | -25/+6 |
* | llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue. | Daniel Dunbar | 2009-08-31 | 7 | -64/+94 |
* | llvm-mc: Make MCSymbolData symbol member const. | Daniel Dunbar | 2009-08-31 | 2 | -6/+6 |
* | llvm-mc: Add MCContext to MCAssembler. | Daniel Dunbar | 2009-08-31 | 2 | -4/+3 |
* | llvm-mc: Add MCExpr::{dump,print}. | Daniel Dunbar | 2009-08-31 | 1 | -0/+67 |
* | llvm-mc: Switch MCExpr construction to using static member functions, and tak... | Daniel Dunbar | 2009-08-31 | 1 | -8/+28 |
* | llvm-mc: Move AsmExpr into MC lib (as MCExpr). | Daniel Dunbar | 2009-08-31 | 2 | -0/+163 |
* | Step #1 to giving Callgraph some sane invariants. The problems with callgraph | Chris Lattner | 2009-08-31 | 2 | -27/+170 |
* | fix some cases where instcombine would change hte IR but not return true | Chris Lattner | 2009-08-31 | 1 | -8/+10 |
* | cleanups, factor some code out to a helper function | Chris Lattner | 2009-08-31 | 1 | -22/+39 |
* | fix a crash building SPASS by tolerating a callsite that doesn't exist | Chris Lattner | 2009-08-31 | 1 | -8/+13 |
* | comment and simplify some code. | Chris Lattner | 2009-08-31 | 1 | -19/+14 |
* | add -debug output | Chris Lattner | 2009-08-31 | 1 | -0/+4 |
* | improve -debug output, so that -debug is more likely to print when | Chris Lattner | 2009-08-31 | 1 | -3/+6 |
* | fix a bug I introduced with my 'instcombine builder' refactoring | Chris Lattner | 2009-08-31 | 1 | -2/+6 |
* | simplify some code by making the SCCNodes set contain Function*'s | Chris Lattner | 2009-08-31 | 1 | -12/+9 |
* | Fix PR4834, a tricky case where the inliner would resolve an | Chris Lattner | 2009-08-31 | 2 | -20/+32 |
* | use an accessor instead of poking internals of a node. | Chris Lattner | 2009-08-31 | 1 | -1/+1 |
* | PR4747 | Jim Grosbach | 2009-08-31 | 2 | -36/+23 |
* | Fix some nasty callgraph dangling pointer problems in | Chris Lattner | 2009-08-31 | 7 | -78/+96 |
* | add a dump() method on callgraph. | Chris Lattner | 2009-08-30 | 1 | -0/+3 |
* | Fix some possible-use-of-uninitialized warnings. | Daniel Dunbar | 2009-08-30 | 1 | -2/+2 |
* | Fix PR4748: don't fold gep(bitcast(x)) into bitcast(gep) when x | Chris Lattner | 2009-08-30 | 1 | -0/+7 |
* | misc cleanup | Chris Lattner | 2009-08-30 | 1 | -13/+13 |
* | add getPointerAddressSpace() to GEP instruction, use the method | Chris Lattner | 2009-08-30 | 3 | -9/+6 |
* | eliminate InsertCastBefore, use the builder instead. | Chris Lattner | 2009-08-30 | 1 | -50/+19 |
* | eliminate InsertBitCastBefore, just use the builder instead. | Chris Lattner | 2009-08-30 | 1 | -27/+24 |
* | Add missed pattern | Anton Korobeynikov | 2009-08-30 | 1 | -0/+2 |
* | convert a bunch more calls to InsertNewInstBefore to use | Chris Lattner | 2009-08-30 | 1 | -205/+137 |
* | fix typo | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | EXTRACT_VECTOR_ELEMENT can have result type different from element type. | Anton Korobeynikov | 2009-08-30 | 1 | -3/+10 |
* | Add regular expression matching support, based on OpenBSD regexec()/regcomp() | Edwin Török | 2009-08-30 | 14 | -0/+3647 |
* | give instcombine a custom IRBuilder that adds new instructions to the | Chris Lattner | 2009-08-30 | 1 | -304/+193 |
* | add a new InstCombineWorklist::AddValue method that works even | Chris Lattner | 2009-08-30 | 1 | -16/+13 |
* | move AddUsersToWorkList to the worklist processing class, make the | Chris Lattner | 2009-08-30 | 1 | -16/+16 |
* | rename AddUsesToWorkList -> AddOperandsToWorkList. The | Chris Lattner | 2009-08-30 | 1 | -31/+13 |