- May 16, 2008
-
-
Gabor Greif authored
API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.) llvm-svn: 51200
-
Evan Cheng authored
llvm-svn: 51192
-
Evan Cheng authored
llvm-svn: 51191
-
Duncan Sands authored
included after local headers. llvm-svn: 51187
-
Duncan Sands authored
original method caused gcc-4.2 to complain. llvm-svn: 51186
-
Evan Cheng authored
llvm-svn: 51184
-
Evan Cheng authored
llvm-svn: 51183
-
Owen Anderson authored
safer manner by loop deletion. llvm-svn: 51182
-
Owen Anderson authored
llvm-svn: 51181
-
Owen Anderson authored
llvm-svn: 51180
-
Owen Anderson authored
Also, use SCEV to determine the trip count of the loop, which is more powerful and accurate that Loop::getTripCount. llvm-svn: 51179
-
Owen Anderson authored
llvm-svn: 51178
-
Owen Anderson authored
a potentially infinite loop, which is undesirable. Instead, test the LICM behavior that we're really interested in. llvm-svn: 51177
-
Chris Lattner authored
llvm-svn: 51176
-
Dale Johannesen authored
llvm-svn: 51173
-
Dale Johannesen authored
llvm-svn: 51172
-
Dan Gohman authored
test/Verifier/2002-11-05-GetelementptrPointers.ll, which was incorrect. Instead, fix getIndexedType to not follow pointer types, as PointerType is a subclass of CompositeType. llvm-svn: 51171
-
Dan Gohman authored
llvm-svn: 51170
-
Dan Gohman authored
use-before-def. The problem comes up in code with multiple PHIs where one PHI is being rewritten in terms of the other, but the other needs to be casted first. LLVM rules requre the cast instruction to be inserted after any PHI instructions, but when instructions were inserted to replace the second PHI value with a function of the first, they were ended up going before the cast instruction. Avoid this problem by remembering the location of the cast instruction, when one is needed, and inserting the expansion of the new value after it. This fixes a bug that surfaced in 255.vortex on x86-64 when instcombine was removed from the middle of the loop optimization passes. llvm-svn: 51169
-
Dale Johannesen authored
with what the test is testing; makes it pass again on ppc32. llvm-svn: 51167
-
Dale Johannesen authored
llvm-svn: 51166
-
Evan Cheng authored
llvm-svn: 51165
-
- May 15, 2008
-
-
Dale Johannesen authored
This changes the .bc file format, but if I understand how it works correctly, old .bc files continue to be readable. llvm-svn: 51161
-
Nate Begeman authored
something with a v1 type. llvm-svn: 51160
-
Steve Naroff authored
llvm-svn: 51159
-
Dan Gohman authored
moving toward making structs and arrays first-class types. llvm-svn: 51157
-
Dan Gohman authored
llvm-svn: 51156
-
Devang Patel authored
llvm-svn: 51155
-
Devang Patel authored
Patch by Matthijs Kooijman. llvm-svn: 51154
-
Evan Cheng authored
llvm-svn: 51152
-
Duncan Sands authored
compiling with gcc 4.3. llvm-svn: 51145
-
Gabor Greif authored
Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. llvm-svn: 51143
-
Evan Cheng authored
Make use of vector load and store operations to implement memcpy, memmove, and memset. Currently only X86 target is taking advantage of these. llvm-svn: 51140
-
Evan Cheng authored
llvm-svn: 51139
-
Nate Begeman authored
operator new() referring to the static initTags function, which has to be in the same linkage unit as any file including User.h. llvm-svn: 51136
-
Dale Johannesen authored
to 64 bits. llvm-svn: 51135
-
Bill Wendling authored
is bitcast to return a floating point value. The result of the instruction may not be used by the program afterwards, and LLVM will happily remove all instructions except the call. But, on some platforms, if a value is returned as a floating point, it may need to be removed from the stack (like x87). Thus, we can't get rid of the bitcast even if there isn't a use of the value. llvm-svn: 51134
-
Dale Johannesen authored
conversion. Try 0x1.0000a4p+0f. Neil, please review. llvm-svn: 51132
-
- May 14, 2008
-
-
Evan Cheng authored
llvm-svn: 51131
-
Chris Lattner authored
llvm-svn: 51130
-