- Jan 09, 2010
-
-
Chris Lattner authored
base is the right expression type. This fixes PR5981. llvm-svn: 93045
-
Dan Gohman authored
really does need to be a vector type, because TargetLowering::getOperationAction for SIGN_EXTEND_INREG uses that type, and it needs to be able to distinguish between vectors and scalars. Also, fix some more issues with legalization of vector casts. llvm-svn: 93043
-
Chris Lattner authored
llvm-svn: 93042
-
Devang Patel authored
Disable copy ctor and operator= for NamedMDSymTable. Hide typedef that should be public. llvm-svn: 93041
-
Dale Johannesen authored
llvm-svn: 93040
-
Devang Patel authored
llvm-svn: 93039
-
Julien Lerouge authored
llvm-svn: 93038
-
Devang Patel authored
llvm-svn: 93037
-
Devang Patel authored
llvm-svn: 93032
-
Evan Cheng authored
Dan pointed out checking whether a node is dead by comparing its opcode to ISD::DELETED_NODE is not safe. Use a DAGUpdateListener to remove dead nodes from work list instead. llvm-svn: 93031
-
Dale Johannesen authored
llvm-svn: 93030
-
Evan Cheng authored
Fix a critical bug in 64-bit atomic operation lowering for 32-bit. The results of the cmpxchg8b instructions are being thrown away when it branches back to the top of the checking loop. This means the loop always compares against the old value and this can result in a dead lock. llvm-svn: 93028
-
- Jan 08, 2010
-
-
Eric Christopher authored
llvm-svn: 93027
-
Eric Christopher authored
llvm-svn: 93026
-
Chris Lattner authored
llvm-svn: 93024
-
Chris Lattner authored
simplify it now that it is only used for truncates. llvm-svn: 93021
-
Evan Cheng authored
llvm-svn: 93020
-
Chris Lattner authored
the input is already sign extended. llvm-svn: 93019
-
Chris Lattner authored
result int by 8 for the first byte. While normally harmless, if the result is smaller than a byte, this shift is invalid. llvm-svn: 93018
-
Duncan Sands authored
remove some trailing whitespace while there. llvm-svn: 93008
-
Chris Lattner authored
llvm-svn: 93007
-
Johnny Chen authored
T2I_bin_ii12rs definition. llvm-svn: 93006
-
Eric Christopher authored
putting relocations into the constant pool - this isn't needed for correctness and in the rare occasion it happens would pull us out of fast isel for the block. If fast-isel application startup time ever becomes an issue we can add better support for these addresses instead of bailing. llvm-svn: 92995
-
Evan Cheng authored
ReplaceAllUsesOfValueWith may delete other nodes that the one being replaced. Do not delete dead nodes again. llvm-svn: 92988
-
Evan Cheng authored
1. CMPXCHG8B and CMPXCHG16B did not specify implicit physical register defs and uses. 2. LCMPXCHG8B is loading 64 bit memory, not 32 bit. llvm-svn: 92985
-
Eric Christopher authored
llvm-svn: 92972
-
Tobias Grosser authored
Compare the dominance information calculated using a dominance tree walk to the information calculated based on DFS numbers, if XDEBUG is enabled. llvm-svn: 92969
-
Tobias Grosser authored
Remove a FIXME and unify code that was necessary to work around broken updateDFSNumbers(). Before updateDFSNumbers() did not work correctly for post dominators. llvm-svn: 92968
-
Tobias Grosser authored
The DFS number calculation for postdominators was broken. In the case of multiple exits that form the post dominator root nodes, do not iterate over all exits, but start from the virtual root node. Otherwise bbs, that are not post dominated by any exit but by the virtual root node, will never be assigned a DFS number. llvm-svn: 92967
-
Chris Lattner authored
llvm-svn: 92964
-
Chris Lattner authored
llvm-svn: 92963
-
Chris Lattner authored
that feeds into a zext, similar to the patch I did yesterday for sext. There is a lot of room for extension beyond this patch. llvm-svn: 92962
-
- Jan 07, 2010
-
-
rdar://7517201Chris Lattner authored
When folding a and(any_ext(load)) both the any_ext and the load have to have only a single use. This removes the anyext-uses.ll testcase which started failing because it is unreduced and unclear what it is testing. llvm-svn: 92950
-
Chris Lattner authored
time, no functionality change. llvm-svn: 92948
-
David Greene authored
Revert r92939. These intrinsics get matched to LLVM instructions, so removing at Chris' request. llvm-svn: 92947
-
Evan Cheng authored
llvm-svn: 92943
-
David Greene authored
Add some "missing" instrinsics to make the SSE intrinsic set a bit more orthogonal. llvm-svn: 92939
-
Benjamin Kramer authored
llvm-svn: 92938
-
Eric Christopher authored
add it to the constant pool for fast-isel. We already don't add it for the normal case. llvm-svn: 92934
-
Eric Christopher authored
not-readonly segment on darwin. llvm-svn: 92933
-