| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
llvm-svn: 75442
|
| |
|
|
| |
llvm-svn: 75441
|
| |
|
|
| |
llvm-svn: 75440
|
| |
|
|
| |
llvm-svn: 75439
|
| |
|
|
| |
llvm-svn: 75438
|
| |
|
|
| |
llvm-svn: 75437
|
| |
|
|
| |
llvm-svn: 75436
|
| |
|
|
| |
llvm-svn: 75435
|
| |
|
|
| |
llvm-svn: 75433
|
| |
|
|
| |
llvm-svn: 75432
|
| |
|
|
| |
llvm-svn: 75431
|
| |
|
|
|
|
|
|
|
|
| |
implemented in codegen, have no frontend to generate them, and are
better implemented with pattern matching (like the ppc backend does
to generate rlwimi/rlwinm etc).
PR4543
llvm-svn: 75430
|
| |
|
|
| |
llvm-svn: 75429
|
| |
|
|
| |
llvm-svn: 75428
|
| |
|
|
| |
llvm-svn: 75426
|
| |
|
|
|
|
|
|
| |
- Patch by Viktor Kutuzov!
- Minor tweak by me to add llvm_unreachable calls on FIXMEd error paths.
llvm-svn: 75424
|
| |
|
|
| |
llvm-svn: 75423
|
| |
|
|
| |
llvm-svn: 75422
|
| |
|
|
|
|
|
|
| |
reject paths with such characters in them. The attached patch removes the check from Path::isValid()."
patch by Benjamin Kramer!
llvm-svn: 75421
|
| |
|
|
|
|
| |
- I think I did this commit sequence before. :)
llvm-svn: 75420
|
| |
|
|
|
|
| |
The blackfin processor has a legal i16 type, but only logic operations on i32.
llvm-svn: 75419
|
| |
|
|
| |
llvm-svn: 75418
|
| |
|
|
|
|
| |
The blackfin calling convention uses a different register for sret arguments.
llvm-svn: 75417
|
| |
|
|
| |
llvm-svn: 75416
|
| |
|
|
|
|
| |
going over the text!
llvm-svn: 75414
|
| |
|
|
| |
llvm-svn: 75413
|
| |
|
|
|
|
|
|
|
| |
x86_64-apple-darwin10-gcc -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wmissing-format-attribute -mdynamic-no-pic -DHAVE_CONFIG_H -I. -I. -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc/. -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc/../include -I./../intl -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc/../libcpp/include -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc/../libdecnumber -I../libdecnumber -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmCore.roots/llvmCore~dst/Developer/usr/local/include -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmCore.roots/llvmCore~obj/src/include -DENABLE_LLVM -I/Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmCore.roots/llvmCore~dst/Developer/usr/local/include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' -DBUILD_LLVM_APPLE_STYLE /Volumes/Sandbox/Buildbot/llvm/build.llvm-gcc-x86_64-darwin10-selfhost/build/llvmgcc42.roots/llvmgcc42~obj/src/gcc/tree-ssa-alias.c -o tree-ssa-alias.o
/var/tmp//ccJQ2JBT.s:4134:Incorrect register `%rcx' used with `l' suffix
make[2]: *** [tree-ssa-live.o] Error 1
make[2]: *** Waiting for unfinished jobs....
llvm-svn: 75412
|
| |
|
|
|
|
|
| |
Some = [10, 2730). A subset of that is [1024..2048) which covers every possible
10-bit pattern.
llvm-svn: 75411
|
| |
|
|
| |
llvm-svn: 75410
|
| |
|
|
|
|
| |
InstCombiner::visitSelectInstWithICmp.
llvm-svn: 75409
|
| |
|
|
|
|
| |
the div lowering code explicitly references it.
llvm-svn: 75408
|
| |
|
|
| |
llvm-svn: 75407
|
| |
|
|
| |
llvm-svn: 75406
|
| |
|
|
| |
llvm-svn: 75405
|
| |
|
|
| |
llvm-svn: 75404
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
instead
of lea. It is better for code size (and presumably efficiency) to use:
movl $foo, %eax
rather than:
leal foo, eax
Both give a nice zero extending "move immediate" instruction, the former is just
smaller. Note that global addresses should be handled different by the x86
backend, but I chose to follow the style already in place and add more fixme's.
llvm-svn: 75403
|
| |
|
|
| |
llvm-svn: 75402
|
| |
|
|
| |
llvm-svn: 75401
|
| |
|
|
| |
llvm-svn: 75400
|
| |
|
|
|
|
|
|
|
|
|
| |
- These kinds of "shotgun" tests are very slow, and do not belong in the
regression suite. If these kinds of tests are regarded to have value, they
should be added to the LLVM test-suite.
- I would actually like to remove all of these tests, but I left Sema/carbon.c
and SemaObjC/cocoa.m...
llvm-svn: 75399
|
| |
|
|
| |
llvm-svn: 75398
|
| |
|
|
|
|
| |
anymore, so these aren't needed.
llvm-svn: 75397
|
| |
|
|
| |
llvm-svn: 75396
|
| |
|
|
|
|
| |
- I don't see any need for it to be this expensive.
llvm-svn: 75395
|
| |
|
|
| |
llvm-svn: 75394
|
| |
|
|
| |
llvm-svn: 75393
|
| |
|
|
|
|
| |
doesn't have static x86-64 mode.
llvm-svn: 75392
|
| |
|
|
| |
llvm-svn: 75391
|
| |
|
|
| |
llvm-svn: 75390
|
| |
|
|
| |
llvm-svn: 75389
|