- Dec 03, 2012
-
-
Chandler Carruth authored
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module include to be the nearest plausible thing I could find. If you own or care about any of these source files, I encourage you to take some time and check that these edits were sensible. I can't have broken anything (I strictly added headers, and reordered them, never removed), but they may not be the headers you'd really like to identify as containing the API being implemented. Many forward declarations and missing includes were added to a header files to allow them to parse cleanly when included first. The main module rule does in fact have its merits. =] llvm-svn: 169131
-
- Nov 29, 2012
-
-
rdar://12100355Shuxin Yang authored
This revision attempts to recognize following population-count pattern: while(a) { c++; ... ; a &= a - 1; ... }, where <c> and <a>could be used multiple times in the loop body. TODO: On X8664 and ARM, __buildin_ctpop() are not expanded to a efficent instruction sequence, which need to be improved in the following commits. Reviewed by Nadav, really appreciate! llvm-svn: 168931
-
Elena Demikhovsky authored
The logic was not changed, only names. llvm-svn: 168875
-
- Nov 28, 2012
-
-
Jakob Stoklund Olesen authored
This class has been merged into its super-class TargetInstrInfo. llvm-svn: 168760
-
- Nov 27, 2012
-
-
Manman Ren authored
when the destination register is wider than the memory load. These load instructions load from m32 or m64 and set the upper bits to zero, while the folded instructions may accept m128. rdar://12721174 llvm-svn: 168710
-
- Nov 26, 2012
-
-
Chad Rosier authored
This pass was conservative in that it always reserved the FP to enable dynamic stack realignment, which allowed the RA to use aligned spills for vector registers. This happens even when spills were not necessary. The RA has since been improved to use unaligned spills when necessary. The new behavior is to realign the stack if the frame pointer was already reserved for some other reason, but don't reserve the frame pointer just because a function contains vector virtual registers. Part of rdar://12719844 llvm-svn: 168627
-
Jakub Staszak authored
llvm-svn: 168600
-
Benjamin Kramer authored
llvm-svn: 168597
-
Benjamin Kramer authored
Simplify some repetitive code with it. No functionality change. llvm-svn: 168587
-
- Nov 21, 2012
-
-
Craig Topper authored
llvm-svn: 168417
-
Craig Topper authored
Mark ISD::FMA as Legal instead of custom for x86 with FMA3/FMA4. Needed so that llvm.muladd can be converted to ISD::FMA for fp_contract. llvm-svn: 168413
-
Jakub Staszak authored
llvm-svn: 168409
-
Jakub Staszak authored
llvm-svn: 168407
-
Jakub Staszak authored
llvm-svn: 168396
-
- Nov 20, 2012
-
-
Elena Demikhovsky authored
llvm-svn: 168359
-
- Nov 16, 2012
-
-
Duncan Sands authored
llvm-svn: 168166
-
Craig Topper authored
llvm-svn: 168141
-
- Nov 15, 2012
-
-
Jakub Staszak authored
llvm-svn: 168076
-
Jakub Staszak authored
llvm-svn: 168064
-
Craig Topper authored
llvm-svn: 168025
-
Jakub Staszak authored
llvm-svn: 168006
-
- Nov 14, 2012
-
-
Benjamin Kramer authored
The stack realignment code was fixed to work when there is stack realignment and a dynamic alloca is present so this shouldn't cause correctness issues anymore. Note that this also enables generation of AVX instructions for memset under the assumptions: - Unaligned loads/stores are always fast on CPUs supporting AVX - AVX is not slower than SSE We may need some tweaked heuristics if one of those assumptions turns out not to be true. Effectively reverts r58317. Part of PR2962. llvm-svn: 167967
-
Jim Grosbach authored
When an instruction as written requires 32-bit mode and we're assembling in 64-bit mode, or vice-versa, issue a more specific diagnostic about what's wrong. rdar://12700702 llvm-svn: 167937
-
Craig Topper authored
llvm-svn: 167916
-
Anton Korobeynikov authored
Do some cleanup of the code while here. Inspired by patch by Logan Chien! llvm-svn: 167904
-
- Nov 13, 2012
-
-
Manman Ren authored
chain is correctly setup. As an example, if the original load must happen before later stores, we need to make sure the constructed VZEXT_LOAD is constrained to be before the stores. rdar://12684358 llvm-svn: 167859
-
- Nov 12, 2012
-
-
Michael Liao authored
- Fix operand order for atomic sub, where the minuend is the value loaded from memory and the subtrahend is the parameter specified. llvm-svn: 167718
-
- Nov 11, 2012
-
-
Craig Topper authored
llvm-svn: 167696
-
- Nov 10, 2012
-
-
Craig Topper authored
llvm-svn: 167673
-
Craig Topper authored
llvm-svn: 167671
-
Craig Topper authored
llvm-svn: 167670
-
Craig Topper authored
llvm-svn: 167669
-
Craig Topper authored
llvm-svn: 167652
-
- Nov 09, 2012
-
-
Roman Divacky authored
reverts r126226. llvm-svn: 167632
-
Nadav Rotem authored
llvm-svn: 167607
-
- Nov 08, 2012
-
-
Michael Liao authored
- Add RTM code generation support throught 3 X86 intrinsics: xbegin()/xend() to start/end a transaction region, and xabort() to abort a tranaction region llvm-svn: 167573
-
- Nov 07, 2012
-
-
Jakub Staszak authored
llvm-svn: 167505
-
Nadav Rotem authored
llvm-svn: 167501
-
- Nov 06, 2012
-
-
Nadav Rotem authored
llvm-svn: 167488
-
Nadav Rotem authored
llvm-svn: 167480
-