- Aug 26, 2005
-
-
Chris Lattner authored
llvm-svn: 23092
-
Chris Lattner authored
giving it a non-instruction opcode. The dag->dag selector used to not select the operands of the fsel, because it thought that whole tree was already selected. llvm-svn: 23091
-
Chris Lattner authored
bool %test(int %X, int %Y) { %C = setne int %X, 0 ret bool %C } to: _test: addic r2, r3, -1 subfe r3, r2, r3 blr llvm-svn: 23089
-
Chris Lattner authored
just return its input, instead of emitting an explicit copy. llvm-svn: 23088
-
Nate Begeman authored
llvm-svn: 23085
-
Chris Lattner authored
llvm-svn: 23084
-
Chris Lattner authored
when the RHS of the comparison is 0.0. Turn this on by default. llvm-svn: 23083
-
Chris Lattner authored
llvm-svn: 23082
-
Chris Lattner authored
putting it into the constant pool. This allows the isel machinery to create constants that it will end up deciding are not needed, without them ending up in the resultant function constant pool. llvm-svn: 23081
-
Chris Lattner authored
llvm-svn: 23080
-
Chris Lattner authored
every other SD API. Fix it to take the opcode before the types. llvm-svn: 23079
-
Nate Begeman authored
llvm-svn: 23076
-
Chris Lattner authored
instead of in the backend. This currently handles fsel cases with registers, but doesn't have the 0.0 and -0.0 optimization enabled yet. Once this is finished, special hack for fp immediates can go away. llvm-svn: 23075
-
Nate Begeman authored
llvm-svn: 23073
-
Nate Begeman authored
llvm-svn: 23072
-
Chris Lattner authored
llvm-svn: 23068
-
Chris Lattner authored
return. Allow the udiv breaker-upper to work with any non-zero constant operand. llvm-svn: 23066
-
Chris Lattner authored
llvm-svn: 23065
-
Chris Lattner authored
ISelPattern llvm-svn: 23062
-
Chris Lattner authored
doesn't work for large uint constants, but we'll keep the current behavior llvm-svn: 23061
-
- Aug 25, 2005
-
-
Chris Lattner authored
llvm-svn: 23060
-
Chris Lattner authored
they will come later. llvm-svn: 23059
-
Nate Begeman authored
Chris. This will be accomplished through correctly modeling CR's and subregs. llvm-svn: 23056
-
Chris Lattner authored
_test: srawi r2, r3, 2 addze r3, r2 blr llvm-svn: 23052
-
Chris Lattner authored
llvm-svn: 23051
-
Chris Lattner authored
llvm-svn: 23048
-
Chris Lattner authored
is used by the int -> FP code among other things. This gets 2005-05-12-Int64ToFP past that failure, to dying on lack of support for add_parts llvm-svn: 23042
-
Chris Lattner authored
llvm-svn: 23038
-
Chris Lattner authored
around to functions and stuff llvm-svn: 23036
-
Chris Lattner authored
llvm-svn: 23034
-
Chris Lattner authored
to codegen this: float foo() { return 1.245; } into this: _foo: lis r2, ha16(.CPI_foo_0) lfs f1, lo16(.CPI_foo_0)(r2) blr instead of this: _foo: lis r2, ha16(.CPI_foo_0) lfs r2, lo16(.CPI_foo_0)(r2) <-- ouch or f1, r2, r2 <-- ouch blr with the dag isel. llvm-svn: 23033
-
Chris Lattner authored
llvm-svn: 23032
-
Chris Lattner authored
llvm-svn: 23031
-
Chris Lattner authored
llvm-svn: 23030
-
Chris Lattner authored
llvm-svn: 23029
-
Chris Lattner authored
instructions take a consistent reg class. Implement ISD::UNDEF in the dag->dag selector to generate this, fixing UnitTests/2003-07-06-IntOverflow. llvm-svn: 23028
-
Chris Lattner authored
llvm-svn: 23026
-
Chris Lattner authored
Emit the indcall sequence as: mtctr inreg mr R12, inreg btctr If inreg and R12 aren't coallesced, this reduces the odds of having the mtctr and btctr in the same dispatch group. :) llvm-svn: 23023
-
- Aug 24, 2005
-
-
Chris Lattner authored
llvm-svn: 23020
-
Chris Lattner authored
llvm-svn: 23010
-