| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Change errs() to dbgs(). | David Greene | 2009-12-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 92096 | |||||
| * | Change errs() to dbgs(). | David Greene | 2009-12-24 | 1 | -3/+4 | |
| | | | | | llvm-svn: 92094 | |||||
| * | Change errs() to dbgs(). | David Greene | 2009-12-24 | 1 | -59/+59 | |
| | | | | | llvm-svn: 92093 | |||||
| * | move a few more symbols to .rodata | Nuno Lopes | 2009-12-23 | 1 | -1/+1 | |
| | | | | | llvm-svn: 92011 | |||||
| * | Use more sensible type for flags in asms. PR 5570. | Dale Johannesen | 2009-12-23 | 2 | -5/+2 | |
| | | | | | | | Patch by Sylve`re Teissier (sorry, ASCII only). llvm-svn: 91988 | |||||
| * | Update objectsize intrinsic and associated dependencies. Fix | Eric Christopher | 2009-12-23 | 1 | -1/+1 | |
| | | | | | | | lowering code and update testcases. llvm-svn: 91979 | |||||
| * | Remove superfluous SDNode ordering. | Bill Wendling | 2009-12-23 | 1 | -48/+16 | |
| | | | | | llvm-svn: 91971 | |||||
| * | Remove node ordering from inline asm nodes. It's not needed. | Bill Wendling | 2009-12-23 | 1 | -16/+0 | |
| | | | | | llvm-svn: 91961 | |||||
| * | Remove node ordering from VA nodes. It's not needed. | Bill Wendling | 2009-12-23 | 1 | -25/+14 | |
| | | | | | llvm-svn: 91958 | |||||
| * | Revert r91949 r91942 and r91936. | Bill Wendling | 2009-12-23 | 1 | -407/+119 | |
| | | | | | llvm-svn: 91953 | |||||
| * | Finish up node ordering in ExpandNode. | Bill Wendling | 2009-12-23 | 1 | -45/+113 | |
| | | | | | llvm-svn: 91949 | |||||
| * | Add coalescer asserts. | Jakob Stoklund Olesen | 2009-12-22 | 1 | -4/+6 | |
| | | | | | llvm-svn: 91945 | |||||
| * | Assign ordering to nodes created in ExpandNode. Only roughly 1/2 of the function | Bill Wendling | 2009-12-22 | 1 | -84/+237 | |
| | | | | | | | is finished. llvm-svn: 91942 | |||||
| * | Assign ordering to SDNodes in PromoteNode. Also fixing a subtle bug where BSWAP | Bill Wendling | 2009-12-22 | 2 | -15/+83 | |
| | | | | | | | was using "Tmp1" in the first getNode call instead of Node->getOperand(0). llvm-svn: 91936 | |||||
| * | Remove minimal CFG sanity checks from verifier. | Jakob Stoklund Olesen | 2009-12-22 | 1 | -18/+0 | |
| | | | | | | | | | | These checks would often trigger on unreachable statements inserted by bugpoint, leading it astray. It would be nice if we could distinguish unreachable blocks from errors. llvm-svn: 91923 | |||||
| * | Allow explicit %reg0 operands beyond what the .td file describes. | Jakob Stoklund Olesen | 2009-12-22 | 1 | -1/+2 | |
| | | | | | | | ARM uses these to indicate predicates. llvm-svn: 91922 | |||||
| * | Allow 0 as an order number. Don't assign an order to formal arguments. | Bill Wendling | 2009-12-22 | 2 | -21/+11 | |
| | | | | | llvm-svn: 91920 | |||||
| * | Report an error for bad inline assembly, where the value passed for an | Bob Wilson | 2009-12-22 | 1 | -2/+6 | |
| | | | | | | | "indirect" operand is not a pointer. llvm-svn: 91913 | |||||
| * | Add more plumbing. This time in the LowerArguments and "get" functions which | Bill Wendling | 2009-12-22 | 5 | -49/+147 | |
| | | | | | | | | | return partial registers. This affected the back-end lowering code some. Also patch up some places I missed before in the "get" functions. llvm-svn: 91880 | |||||
| * | Add SDNode ordering to inlined asm and VA functions. | Bill Wendling | 2009-12-22 | 1 | -28/+78 | |
| | | | | | llvm-svn: 91876 | |||||
| * | Adding more assignment of ordering to SDNodes. This time in the "call" and | Bill Wendling | 2009-12-22 | 1 | -32/+66 | |
| | | | | | | | generic copy functions. llvm-svn: 91872 | |||||
| * | Add ordering of SDNodes to LowerCallTo. | Bill Wendling | 2009-12-22 | 1 | -19/+44 | |
| | | | | | llvm-svn: 91866 | |||||
| * | Now add ordering to SDNodes created by the massive intrinsic lowering function. | Bill Wendling | 2009-12-22 | 1 | -100/+183 | |
| | | | | | llvm-svn: 91863 | |||||
| * | To make things interesting, I added MORE code to set the ordering of | Bill Wendling | 2009-12-22 | 1 | -32/+387 | |
| | | | | | | | SDNodes. This time in the load/store and limited-precision code. llvm-svn: 91860 | |||||
| * | Changed slot index ranges for MachineBasicBlocks to be exclusive of endpoint. | Lang Hames | 2009-12-22 | 6 | -33/+28 | |
| | | | | | | | This fixes an in-place update bug where code inserted at the end of basic blocks may not be covered by existing intervals which were live across the entire block. It is also consistent with the way ranges are specified for live intervals. llvm-svn: 91859 | |||||
| * | Add more plumbing to assign ordering to SDNodes. Have the "getValue" method | Bill Wendling | 2009-12-21 | 1 | -59/+133 | |
| | | | | | | | | assign the ordering when called. Combine some of the ordering assignments to keep things simple. llvm-svn: 91857 | |||||
| * | More ordering plumbing. This time for GEP. I need to remember to assign | Bill Wendling | 2009-12-21 | 1 | -4/+32 | |
| | | | | | | | orderings to values returned by getValue(). llvm-svn: 91850 | |||||
| * | Another incremental check-in for assigning ordering to SDNodes. This time for | Bill Wendling | 2009-12-21 | 1 | -25/+75 | |
| | | | | | | | shuffle and insert vector. llvm-svn: 91847 | |||||
| * | Assign ordering to more instructions. Incremental check-in. | Bill Wendling | 2009-12-21 | 1 | -57/+156 | |
| | | | | | llvm-svn: 91846 | |||||
| * | - Add a bit more plumbing assigning an order to SDNodes. | Bill Wendling | 2009-12-21 | 2 | -9/+32 | |
| | | | | | | | - Modify the "dump" method to emit the order of an SDNode. llvm-svn: 91845 | |||||
| * | First wave of plumbing for assigning an ordering to SDNodes. This takes care of | Bill Wendling | 2009-12-21 | 1 | -28/+43 | |
| | | | | | | | a lot of the branching instructions. llvm-svn: 91838 | |||||
| * | Place SDNodeOrdering.h in the directory it's used. | Bill Wendling | 2009-12-21 | 2 | -1/+59 | |
| | | | | | llvm-svn: 91834 | |||||
| * | Fix setting and default setting of code model for jit. Do this | Eric Christopher | 2009-12-21 | 1 | -0/+26 | |
| | | | | | | | | | | | by allowing backends to override routines that will default the JIT and Static code generation to an appropriate code model for the architecture. Should fix PR 5773. llvm-svn: 91824 | |||||
| * | Fix a bunch of little errors that Clang complains about when its being pedantic | Douglas Gregor | 2009-12-19 | 6 | -8/+8 | |
| | | | | | llvm-svn: 91764 | |||||
| * | Use 4-arg getVTList) variant instead of generic one, when possible | Anton Korobeynikov | 2009-12-19 | 1 | -0/+1 | |
| | | | | | llvm-svn: 91744 | |||||
| * | Changes from review: | Bill Wendling | 2009-12-18 | 4 | -143/+67 | |
| | | | | | | | | | | | | - Move DisableScheduling flag into TargetOption.h - Move SDNodeOrdering into its own header file. Give it a minimal interface that doesn't conflate construction with storage. - Move assigning the ordering into the SelectionDAGBuilder. This isn't used yet, so there should be no functional changes. llvm-svn: 91727 | |||||
| * | Increase opportunities to optimize (brcond (srl (and c1), c2)). | Evan Cheng | 2009-12-18 | 1 | -1/+28 | |
| | | | | | llvm-svn: 91717 | |||||
| * | Add Loop contains utility methods for testing whether a loop | Dan Gohman | 2009-12-18 | 1 | -1/+1 | |
| | | | | | | | | | contains another loop, or an instruction. The loop form is substantially more efficient on large loops than the typical code it replaces. llvm-svn: 91654 | |||||
| * | Handle ARM inline asm "w" constraints with 64-bit ("d") registers. | Bob Wilson | 2009-12-18 | 1 | -1/+1 | |
| | | | | | | | | | The change in SelectionDAGBuilder is needed to allow using bitcasts to convert between f64 (the default type for ARM "d" registers) and 64-bit Neon vector types. Radar 7457110. llvm-svn: 91649 | |||||
| * | Sundry dependent-name fixes flagged by clang++. | John McCall | 2009-12-17 | 1 | -4/+4 | |
| | | | | | llvm-svn: 91636 | |||||
| * | Revert accidental commit. | Bill Wendling | 2009-12-17 | 1 | -1/+1 | |
| | | | | | llvm-svn: 91635 | |||||
| * | Turn off critical edge splitting for landing pads. The introduction of a | Bill Wendling | 2009-12-17 | 2 | -4/+5 | |
| | | | | | | | | | | | non-landing pad basic block as the successor to a block that ends in an unconditional jump will cause block folding to remove the added block as a successor. Thus eventually removing it AND the landing pad entirely. Critical edge splitting is an optimization, so we can safely turn it off when dealing with landing pads. llvm-svn: 91634 | |||||
| * | Temporarily revert 91337. It's causing testcase failures. | Bill Wendling | 2009-12-17 | 1 | -6/+7 | |
| | | | | | | | | | $ svn merge -c -91337 https://llvm.org/svn/llvm-project/llvm/trunk --- Reverse-merging r91337 into '.': U lib/CodeGen/AsmPrinter/DwarfException.cpp llvm-svn: 91618 | |||||
| * | Introduce EVT::getHalfSizedIntegerVT() for use in ExpandUnalignedStore() in | Ken Dyck | 2009-12-17 | 1 | -6/+3 | |
| | | | | | | | | | | | | | | | LegalizeDAG.cpp. Unlike the code it replaces, which simply decrements the simple type by one, getHalfSizedIntegerVT() searches for the smallest simple integer type that is at least half the size of the type it is called on. This approach has the advantage that it will continue working if a new value type (such as i24) is added to MVT. Also, in preparation for new value types, remove the assertions that non-power-of-2 8-bit-mutiple types are Extended when legalizing extload and truncstore operations. llvm-svn: 91614 | |||||
| * | Remove debugging code. | Evan Cheng | 2009-12-17 | 1 | -24/+0 | |
| | | | | | llvm-svn: 91604 | |||||
| * | Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently ↵ | Evan Cheng | 2009-12-17 | 1 | -0/+24 | |
| | | | | | | | introduced a non-deterministic behavior in the optimizer somewhere. llvm-svn: 91598 | |||||
| * | Fix a comment grammaro. | Bob Wilson | 2009-12-17 | 1 | -2/+2 | |
| | | | | | llvm-svn: 91584 | |||||
| * | Revert this dag combine change: | Evan Cheng | 2009-12-17 | 1 | -13/+0 | |
| | | | | | | | | | Fold (zext (and x, cst)) -> (and (zext x), cst) DAG combiner likes to optimize expression in the other way so this would end up cause an infinite looping. llvm-svn: 91574 | |||||
| * | Reapply r91392, it was only unmasking the bug, and since TOT is still broken ↵ | Daniel Dunbar | 2009-12-16 | 3 | -29/+155 | |
| | | | | | | | having it reverted does no good. llvm-svn: 91560 | |||||
| * | Add @earlyclobber TableGen constraint | Jim Grosbach | 2009-12-16 | 1 | -3/+21 | |
| | | | | | llvm-svn: 91554 | |||||

