| Commit message (Expand) | Author | Age | Files | Lines |
* | Move a few more convenience factory functions from Constant to LLVMContext. | Owen Anderson | 2009-07-15 | 3 | -5/+9 |
* | Lexically order files in CMakeLists.txt files. | Ted Kremenek | 2009-07-15 | 1 | -3/+3 |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -1/+2 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Edwin Török | 2009-07-14 | 16 | -106/+106 |
* | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 3 | -7/+13 |
* | remove llvm.part.set.* and llvm.part.select.*. They have never been | Chris Lattner | 2009-07-12 | 1 | -8/+0 |
* | Fix assert(0) conversion, as suggested by Chris. | Edwin Török | 2009-07-12 | 1 | -5/+8 |
* | Implement support for promotion of AND/OR/XOR on integer types. | Jakob Stoklund Olesen | 2009-07-12 | 1 | -8/+19 |
* | Fix types in PromoteNode handling of CTPOP and friends. | Jakob Stoklund Olesen | 2009-07-12 | 1 | -3/+3 |
* | assert(0) -> LLVM_UNREACHABLE. | Edwin Török | 2009-07-11 | 13 | -60/+64 |
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Edwin Török | 2009-07-11 | 10 | -85/+84 |
* | Fix up support for OptionalDefOperand when it defaults to an actual register ... | Evan Cheng | 2009-07-11 | 1 | -4/+16 |
* | Use CreateStackStoreLoad helper in more places. | Eli Friedman | 2009-07-11 | 2 | -36/+4 |
* | Fix an apparent copy-and-paste problem in an error message. | Bob Wilson | 2009-07-09 | 1 | -1/+1 |
* | Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned | Eli Friedman | 2009-07-09 | 4 | -55/+24 |
* | As Chris pointed out, we don't actually need to pass the context around here. | Owen Anderson | 2009-07-09 | 2 | -3/+3 |
* | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson | 2009-07-09 | 9 | -31/+43 |
* | Make SelectionDAG::getVectorShuffle work properly for VECTOR_SHUFFLE | Dan Gohman | 2009-07-09 | 1 | -2/+2 |
* | Use common code for both ARM and Thumb-2 instruction and register info. | David Goodwin | 2009-07-08 | 1 | -4/+9 |
* | Nowadays vectors are only split if they have an even | Duncan Sands | 2009-07-08 | 4 | -59/+47 |
* | Remove trailing whitespace. Reorder some methods | Duncan Sands | 2009-07-08 | 5 | -59/+60 |
* | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky | 2009-07-08 | 2 | -31/+0 |
* | dag combine sext(setcc) -> vsetcc before legalize. To make this safe, | Chris Lattner | 2009-07-08 | 1 | -1/+19 |
* | SelectionDAG::SignBitIsZero doesn't work right for vectors, | Chris Lattner | 2009-07-07 | 1 | -0/+4 |
* | Operand of asm("call") (the callee function) is represented | Dale Johannesen | 2009-07-07 | 1 | -3/+16 |
* | add support for legalizing an icmp where the result is illegal (4xi1) but | Chris Lattner | 2009-07-07 | 1 | -7/+30 |
* | random code cleanups. | Chris Lattner | 2009-07-07 | 1 | -27/+28 |
* | implement support for spliting and scalarizing vector setcc's. This | Chris Lattner | 2009-07-07 | 2 | -9/+24 |
* | lower vector icmp/fcmp to ICMP/FCMP nodes with the right result | Chris Lattner | 2009-07-07 | 1 | -2/+5 |
* | ScalarizeVecRes_ShiftOp and ScalarizeVecRes_BinOp are the same, | Chris Lattner | 2009-07-07 | 2 | -12/+1 |
* | add support for vector legalizing of *_EXTEND. | Chris Lattner | 2009-07-07 | 1 | -15/+50 |
* | Have scoped mutexes take referenes instead of pointers. | Owen Anderson | 2009-07-07 | 1 | -1/+1 |
* | Add NumFixedArgs attribute to CallSDNode which indicates the number of fixed ... | Tilmann Scheller | 2009-07-03 | 4 | -13/+14 |
* | Simplify debug info intrisinc lowering. | Devang Patel | 2009-07-02 | 2 | -162/+115 |
* | CMake build fixes, from Xerxes Ranby | Douglas Gregor | 2009-07-02 | 1 | -0/+2 |
* | Simplify. | Devang Patel | 2009-07-02 | 2 | -17/+17 |
* | Simplify. No intentional functionality change. | Devang Patel | 2009-07-02 | 1 | -49/+36 |
* | Refactor. No functionality change. | Devang Patel | 2009-07-01 | 1 | -10/+4 |
* | llvm.dbg.declare is always used for local variable's debug info. | Devang Patel | 2009-07-01 | 1 | -4/+1 |
* | Add a bit IsUndef to MachineOperand. This indicates the def / use register op... | Evan Cheng | 2009-06-30 | 1 | -1/+1 |
* | fix a typo that GCC should have caught that causes crashes with -view-*-dags | Chris Lattner | 2009-06-27 | 1 | -1/+1 |
* | fix a really subtle bug in the cross section of aliases and TLS: | Chris Lattner | 2009-06-26 | 1 | -9/+3 |
* | implement DOTGraphTraits<SelectionDAG*>::getNodeLabel in terms of | Chris Lattner | 2009-06-26 | 1 | -138/+5 |
* | dot graph viewing is apparently not using SDNode::print_details, this is bad, | Chris Lattner | 2009-06-26 | 1 | -0/+7 |
* | propagate target operand flags from dag nodes into MachineOperands. | Chris Lattner | 2009-06-26 | 1 | -4/+8 |
* | fit in 80 cols | Chris Lattner | 2009-06-26 | 1 | -5/+4 |
* | add targetflags to jump tables and constant pool entries. | Chris Lattner | 2009-06-25 | 1 | -6/+24 |
* | allow setting target operand flags on TargetGlobalAddress nodes. | Chris Lattner | 2009-06-25 | 1 | -6/+19 |
* | start bringing targetoperand flags into isel, first up, ExternalSymbol. | Chris Lattner | 2009-06-25 | 1 | -7/+13 |
* | Provide guards for this shared structure. I'm not sure this actually needs | Owen Anderson | 2009-06-25 | 1 | -3/+8 |