- Jan 19, 2007
-
-
Evan Cheng authored
llvm-svn: 33368
-
Andrew Lenharth authored
llvm-svn: 33367
-
Evan Cheng authored
llvm-svn: 33366
-
Evan Cheng authored
the .zerofill directive emission to not be darwin-specific. llvm-svn: 33365
-
Evan Cheng authored
llvm-svn: 33364
-
Evan Cheng authored
llvm-svn: 33363
-
Evan Cheng authored
delimits the boundaries of jump tables. This lets the linker's dead code stripping optimization do a better job. llvm-svn: 33362
-
Evan Cheng authored
(shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2) Replace it with: (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), ) This fixes test/CodeGen/ARM/smul.ll llvm-svn: 33361
-
Reid Spencer authored
Regenerated for Anton Korobeynikov. llvm-svn: 33360
-
Lauro Ramos Venancio authored
llvm-svn: 33359
-
Anton Korobeynikov authored
llvm-svn: 33358
-
Reid Spencer authored
llvm-svn: 33357
-
Zhou Sheng authored
llvm-svn: 33356
-
Zhou Sheng authored
llvm-svn: 33355
-
Evan Cheng authored
llvm-svn: 33354
-
Evan Cheng authored
llvm-svn: 33353
-
Nick Lewycky authored
llvm-svn: 33352
-
Zhou Sheng authored
llvm-svn: 33348
-
Reid Spencer authored
llvm-svn: 33347
-
Reid Spencer authored
Implement reading and writing of the Module's data layout string. llvm-svn: 33346
-
- Jan 18, 2007
-
-
Evan Cheng authored
- In x86-64 mode, symbols with external linkage (not just symbols which are defined externally) requires GOT indirect reference. - Stylistic code clean up. llvm-svn: 33345
-
Chris Lattner authored
llvm-svn: 33344
-
Chris Lattner authored
infinitely loops. llvm-svn: 33343
-
Chris Lattner authored
llvm-svn: 33342
-
Reid Spencer authored
llvm-svn: 33339
-
John Criswell authored
llvm-svn: 33338
-
Reid Spencer authored
transform. Change some variable names so it is clear what is source and what is dest of the cast. Also, add an assert to ensure that the integer to integer case is asserting if the bitwidths are different. This prevents illegal casts from being formed and catches bitwidth bugs sooner. llvm-svn: 33337
-
Reid Spencer authored
llvm-svn: 33336
-
Reid Spencer authored
not to overflow 64-bits and end up with a 0 mask. This caused i64 values to always be stored as 0 with lots of consequential damage to nightly test. llvm-svn: 33335
-
Chris Lattner authored
llvm-svn: 33333
-
Reid Spencer authored
mostly be used by back ends that wish to distinguish between integer types that fit evenly within a natural integer type and those that don't. llvm-svn: 33328
-
Bill Wendling authored
llvm-svn: 33327
-
Reid Spencer authored
computations do not overflow the intended bit width. llvm-svn: 33326
-
Reid Spencer authored
bit width. llvm-svn: 33325
-
Evan Cheng authored
llvm-svn: 33323
-
Reid Spencer authored
sufficient to get llvm-test/SingleSource/UnitTests/Integer/general-test.ll working with lli in interpreter mode. llvm-svn: 33321
-
Reid Spencer authored
1. Fix logic for executeGEP. Only 32-bit and 64-bit integer types are acceptable as indices. 2. Ensure that all integer cast operations truncate their result to the integer size of the operand. llvm-svn: 33318
-
Reid Spencer authored
llvm-svn: 33317
-
Bill Wendling authored
llvm-svn: 33316
-
Chris Lattner authored
delimits the boundaries of jump tables. This lets the linker's dead code stripping optimization do a better job. llvm-svn: 33315
-