mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
Simplify code; NFC.
Also, moved test cases from CodeGen/X86/fold-buildvector-bug.ll into CodeGen/X86/buildvec-insertvec.ll and regenerated CHECK lines using update_llc_test_checks.py. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239142 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -619,7 +619,7 @@ static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
|
||||
|
||||
// fold (fneg (fsub 0, B)) -> B
|
||||
if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
|
||||
if (N0CFP->getValueAPF().isZero())
|
||||
if (N0CFP->isZero())
|
||||
return Op.getOperand(1);
|
||||
|
||||
// fold (fneg (fsub A, B)) -> (fsub B, A)
|
||||
@ -7864,7 +7864,7 @@ SDValue DAGCombiner::visitFADD(SDNode *N) {
|
||||
bool AllowNewConst = (Level < AfterLegalizeDAG);
|
||||
|
||||
// fold (fadd A, 0) -> A
|
||||
if (N1CFP && N1CFP->getValueAPF().isZero())
|
||||
if (N1CFP && N1CFP->isZero())
|
||||
return N0;
|
||||
|
||||
// fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
|
||||
@ -7995,11 +7995,11 @@ SDValue DAGCombiner::visitFSUB(SDNode *N) {
|
||||
// If 'unsafe math' is enabled, fold lots of things.
|
||||
if (Options.UnsafeFPMath) {
|
||||
// (fsub A, 0) -> A
|
||||
if (N1CFP && N1CFP->getValueAPF().isZero())
|
||||
if (N1CFP && N1CFP->isZero())
|
||||
return N0;
|
||||
|
||||
// (fsub 0, B) -> -B
|
||||
if (N0CFP && N0CFP->getValueAPF().isZero()) {
|
||||
if (N0CFP && N0CFP->isZero()) {
|
||||
if (isNegatibleForFree(N1, LegalOperations, TLI, &Options))
|
||||
return GetNegatedExpression(N1, DAG, LegalOperations);
|
||||
if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
|
||||
@ -8065,7 +8065,7 @@ SDValue DAGCombiner::visitFMUL(SDNode *N) {
|
||||
|
||||
if (Options.UnsafeFPMath) {
|
||||
// fold (fmul A, 0) -> 0
|
||||
if (N1CFP && N1CFP->getValueAPF().isZero())
|
||||
if (N1CFP && N1CFP->isZero())
|
||||
return N1;
|
||||
|
||||
// fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
|
||||
@ -12995,7 +12995,7 @@ SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
|
||||
if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
|
||||
N->getOpcode() == ISD::FDIV) {
|
||||
if (isNullConstant(RHSOp) || (RHSOp.getOpcode() == ISD::ConstantFP &&
|
||||
cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
|
||||
cast<ConstantFPSDNode>(RHSOp.getNode())->isZero()))
|
||||
break;
|
||||
}
|
||||
|
||||
@ -13259,7 +13259,7 @@ SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
|
||||
// Check to see if we can simplify the select into an fabs node
|
||||
if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
|
||||
// Allow either -0.0 or 0.0
|
||||
if (CFP->getValueAPF().isZero()) {
|
||||
if (CFP->isZero()) {
|
||||
// select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
|
||||
if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
|
||||
N0 == N2 && N3.getOpcode() == ISD::FNEG &&
|
||||
|
Reference in New Issue
Block a user