- Oct 25, 2012
-
-
Nadav Rotem authored
llvm-svn: 166643
-
Nadav Rotem authored
llvm-svn: 166642
-
Chad Rosier authored
llvm-svn: 166640
-
Kevin Enderby authored
llvm-svn: 166639
-
Chad Rosier authored
correct .s output as well as get the correct encoding by the integrated assembler. llvm-svn: 166638
-
-
Micah Villmow authored
llvm-svn: 166634
-
Chad Rosier authored
[register].field The operator returns the value at the location pointed to by register plus the offset of field within its structure or union. This patch only handles immediate fields (i.e., [eax].4). The original displacement has to be a MCConstantExpr as well. Part of rdar://12470415 and rdar://12470514 llvm-svn: 166632
-
Chad Rosier authored
llvm-svn: 166630
-
Joerg Sonnenberger authored
SetTheory, but pass down the location explicitly. llvm-svn: 166629
-
- Oct 24, 2012
-
-
Hal Finkel authored
GVN will now generate ptrtoint instructions for vectors of pointers. Fixes PR14166. llvm-svn: 166624
-
Nadav Rotem authored
llvm-svn: 166623
-
Nadav Rotem authored
llvm-svn: 166622
-
Nadav Rotem authored
llvm-svn: 166621
-
Nadav Rotem authored
llvm-svn: 166620
-
Evan Cheng authored
into a sbc with a positive number, the immediate should be complemented, not negated. Also added a missing pattern for ARM codegen. rdar://12559385 llvm-svn: 166613
-
Hal Finkel authored
When the trip count is -1, getSmallConstantTripMultiple could return zero, and this would cause runtime loop unrolling to assert. Instead of returning zero, one is now returned (consistent with the existing overflow cases). Fixes PR14167. llvm-svn: 166612
-
Kaelyn Uhrain authored
a bunch of errors for all the Operator subclasses such as: include/llvm/Operator.h:76:7: error: deleted function 'virtual llvm::OverflowingBinaryOperator::~OverflowingBinaryOperator()' include/llvm/Operator.h:43:3: error: overriding non-deleted function 'virtual llvm::Operator::~Operator()' include/llvm/Operator.h:76:7: error: 'virtual llvm::OverflowingBinaryOperator::~OverflowingBinaryOperator()' is implicitly deleted because the default definition would be ill-formed: include/llvm/Operator.h:43:3: error: 'virtual llvm::Operator::~Operator()' is private include/llvm/Operator.h:76:7: error: within this context llvm-svn: 166611
-
Pete Cooper authored
llvm-svn: 166609
-
Micah Villmow authored
llvm-svn: 166607
-
Nadav Rotem authored
llvm-svn: 166602
-
Micah Villmow authored
Back out r166591, not sure why this made it through since I cancelled the command. Bleh, sorry about this! llvm-svn: 166596
-
Nadav Rotem authored
llvm-svn: 166595
-
Nadav Rotem authored
Implement a basic VectorTargetTransformInfo interface to be used by the loop and bb vectorizers for modeling the cost of instructions. llvm-svn: 166593
-
Chad Rosier authored
see the offsetof operator. Previously, we were matching something like MOVrm in the front-end and later matching MOVrr in the back-end. This change makes things more consistent. It also fixes cases where we can't match against a memory operand as the source (test cases coming). Part of rdar://12470317 llvm-svn: 166592
-
Micah Villmow authored
llvm-svn: 166591
-
Micah Villmow authored
This checkin also adds in some tests that utilize these paths and updates some of the clients. llvm-svn: 166578
-
Elena Demikhovsky authored
llvm-svn: 166566
-
NAKAMURA Takumi authored
llvm-svn: 166552
-
Duncan Sands authored
llvm-svn: 166547
-
Michael Liao authored
- If more than 1 elemennts are defined and target supports the vectorized conversion, use the vectorized one instead to reduce the strength on conversion operation. llvm-svn: 166546
-
Michael Liao authored
- As there's no 64-bit GPRs in 32-bit mode, a custom conversion from v2u32 to v2f32 is added to improve the efficiency of the code generated. llvm-svn: 166545
-
Akira Hatanaka authored
llvm-svn: 166539
-
Rafael Espindola authored
the difference from "int x" (which should go in registers and "struct y {int x;}" (which should not). Clang will be updated in the next patches. llvm-svn: 166536
-
Jakub Staszak authored
llvm-svn: 166531
-
Richard Smith authored
called. Provide an (asserting) definition of Operator's private destructor. Remove destructors from all classes derived from Operator. We don't need them for safety, because their implicit definitions would be ill-formed (they'd call Operator's private destructor), and we don't need them to avoid emitting vtables, because we don't do anything with Operator subclasses which would trigger vtable instantiation. The Operator hierarchy is still a complete disaster with regard to undefined behavior, but this at least allows LLVM to link when using Clang's -fcatch-undefined-behavior with a new vptr-based type checking mechanism. llvm-svn: 166530
-
Chad Rosier authored
pointer, not the size of the variable. Part of rdar://12470317 llvm-svn: 166526
-
Chad Rosier authored
llvm-svn: 166525
-
Chad Rosier authored
non-zero value as we don't know the actual value at this point. This is necessary to get the matching correct in some cases. However, the actual value set as the base register doesn't matter, since we're just matching not emitting. llvm-svn: 166523
-
Michael Liao authored
llvm-svn: 166519
-