| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implicit def instructions, e.g. X86::IMPLICIT_DEF_GR32, are always re-materia... | Evan Cheng | 2007-12-12 | 1 | -9/+10 |
* | Remove host endianness info from TargetData and | Duncan Sands | 2007-12-12 | 3 | -10/+36 |
* | Remove a forward-declaration for a non-existant class. | Dan Gohman | 2007-12-12 | 1 | -1/+0 |
* | Use vector for child storage instead of map. This will also make | Anton Korobeynikov | 2007-12-12 | 1 | -19/+61 |
* | Implement part of review feedback for address spaces. | Christopher Lamb | 2007-12-12 | 1 | -0/+1 |
* | Bit masks conflicted. Needed to bump them by one. | Bill Wendling | 2007-12-12 | 1 | -9/+9 |
* | Add (very basic) bindings for ModuleProvider. | Gordon Henriksen | 2007-12-12 | 2 | -0/+34 |
* | Remove Trie::Edge class. Now edge labels are stored into nodes itself. | Anton Korobeynikov | 2007-12-11 | 1 | -91/+85 |
* | Use correct member access operator. | Wojciech Matyjewicz | 2007-12-11 | 1 | -1/+1 |
* | Implement address space attribute for LLVM pointer types. Address spaces are | Christopher Lamb | 2007-12-11 | 4 | -9/+22 |
* | Add first and really dirty version of generic Trie structure | Anton Korobeynikov | 2007-12-11 | 1 | -0/+223 |
* | Switch over to MachineLoopInfo. | Evan Cheng | 2007-12-11 | 1 | -4/+5 |
* | CollectorMetadata and Collector are rejiggered to get along with | Gordon Henriksen | 2007-12-11 | 4 | -75/+95 |
* | Move TargetData::hostIsLittleEndian out of line, which means we | Chris Lattner | 2007-12-11 | 1 | -9/+2 |
* | Adding Ocaml bindings for the bitreader as requested by Sarah | Gordon Henriksen | 2007-12-11 | 1 | -0/+43 |
* | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner | 2007-12-10 | 1 | -7/+13 |
* | Added two bounds checks to the BitVector class to detect | Ted Kremenek | 2007-12-10 | 1 | -0/+4 |
* | split isBinaryOp into a static and member version. | Chris Lattner | 2007-12-10 | 1 | -18/+10 |
* | Make PruneEH update the nounwind/noreturn attributes | Duncan Sands | 2007-12-10 | 2 | -0/+20 |
* | Fix PR1836: in the interpreter, read and write apints | Duncan Sands | 2007-12-10 | 2 | -0/+17 |
* | Delete the CollectorNamePool if it should become empty. | Gordon Henriksen | 2007-12-10 | 1 | -0/+4 |
* | Adding a collector name attribute to Function in the IR. These | Gordon Henriksen | 2007-12-10 | 3 | -1/+12 |
* | Reverting dtor devirtualization patch. | Gordon Henriksen | 2007-12-10 | 14 | -368/+31 |
* | remove some dead code. | Chris Lattner | 2007-12-10 | 1 | -50/+0 |
* | Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! | Gordon Henriksen | 2007-12-09 | 15 | -31/+418 |
* | Fix a very silly typo. | Gordon Henriksen | 2007-12-09 | 1 | -1/+1 |
* | Reverting 44702. It wasn't correct to rename them. | Bill Wendling | 2007-12-08 | 1 | -12/+12 |
* | Incorporating review feedback from Reid. | Gordon Henriksen | 2007-12-08 | 1 | -0/+9 |
* | remove dead #include. | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | eliminate dependency on Bitcode headers. | Chris Lattner | 2007-12-08 | 1 | -2/+3 |
* | remove dead #include, APInt.h already has the needed forward decls. | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | Adding a StringPool data structure, which GC will use. | Gordon Henriksen | 2007-12-08 | 1 | -0/+135 |
* | Renaming: | Bill Wendling | 2007-12-08 | 1 | -12/+12 |
* | Implement correct isa<UnaryInstruction>, problem reported by "ST". | Chris Lattner | 2007-12-08 | 1 | -0/+14 |
* | Fix several cache coherence bugs in MemDep/GVN that were found. Also add som... | Owen Anderson | 2007-12-08 | 1 | -0/+2 |
* | Initial commit of the machine code LICM pass. It successfully hoists this: | Bill Wendling | 2007-12-07 | 1 | -0/+4 |
* | Fix a stupid error that Chris pointed out. | Owen Anderson | 2007-12-07 | 1 | -2/+0 |
* | add a new ExecutionEngine::createJIT which can be used if you only want | Chris Lattner | 2007-12-06 | 1 | -0/+8 |
* | simplify creation of the interpreter, make ExecutionEngine ctor protected, | Chris Lattner | 2007-12-06 | 1 | -18/+27 |
* | Fix for PR1831: if all defs of an interval are re-materializable, then it's a... | Evan Cheng | 2007-12-06 | 1 | -2/+8 |
* | improve header guard | Chris Lattner | 2007-12-05 | 1 | -2/+2 |
* | split the JIT memory management code out from the main JIT logic into its | Chris Lattner | 2007-12-05 | 2 | -2/+98 |
* | - Mark last use of a split interval as kill instead of letting spiller track it. | Evan Cheng | 2007-12-05 | 1 | -0/+2 |
* | Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether | Evan Cheng | 2007-12-05 | 2 | -9/+12 |
* | fixed header attribution | Scott Michel | 2007-12-05 | 1 | -1/+3 |
* | More stuff for CellSPU -- this should be enough to get an error-free | Scott Michel | 2007-12-05 | 2 | -0/+231 |
* | Added "Emitter" functor to allow easy emitting of elements of a container | Ted Kremenek | 2007-12-05 | 1 | -0/+11 |
* | Rather than having special rules like "intrinsics cannot | Duncan Sands | 2007-12-03 | 4 | -0/+51 |
* | Remove redundant foldMemoryOperand variants and other code clean up. | Evan Cheng | 2007-12-02 | 2 | -24/+8 |
* | Integrate the readonly/readnone logic more deeply | Duncan Sands | 2007-12-01 | 1 | -20/+45 |