Home
last modified time | relevance | path

Searched refs:OtherVal (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp75 APSInt OtherVal = Other.getValue(); in compare() local
77 bool OtherSigned = OtherVal.isSigned(); in compare()
84 OtherVal = OtherVal.extOrTrunc(CommonWidth); in compare()
87 OtherVal = OtherVal.shl(Other.getLsbWeight() - CommonLsb); in compare()
90 if (ThisVal.sgt(OtherVal)) in compare()
92 else if (ThisVal.slt(OtherVal)) in compare()
95 if (ThisVal.ugt(OtherVal)) in compare()
97 else if (ThisVal.ult(OtherVal)) in compare()
102 else if (ThisVal.ugt(OtherVal)) in compare()
104 else if (ThisVal.ult(OtherVal)) in compare()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp732 for (unsigned OtherVal : ValueMappingIt->second) { in compareAssignmentMapping() local
733 if (OtherVal == InstValB) in compareAssignmentMapping()
735 if (!ValueNumberMappingA.contains(OtherVal)) in compareAssignmentMapping()
737 if (!ValueNumberMappingA[OtherVal].contains(InstValA)) in compareAssignmentMapping()
739 ValueNumberMappingA[OtherVal].erase(InstValA); in compareAssignmentMapping()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1157 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) { in TryToShrinkGlobalToBoolean() argument
1203 auto *CI = dyn_cast<ConstantInt>(OtherVal); in TryToShrinkGlobalToBoolean()
1254 bool StoringOther = SI->getOperand(0) == OtherVal; in TryToShrinkGlobalToBoolean()
1297 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI->getIterator()); in TryToShrinkGlobalToBoolean()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DSandboxIR.cpp113 llvm::Value *OtherVal = OtherV->Val; in replaceUsesWithIf() local
116 OtherVal, [&ShouldReplace, this](llvm::Use &LLVMUse) -> bool { in replaceUsesWithIf()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp5577 Value *OtherVal = A == Op1 ? B : A; in foldICmpEquality() local
5578 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType())); in foldICmpEquality()
5605 Value *OtherVal = A == Op0 ? B : A; in foldICmpEquality() local
5606 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType())); in foldICmpEquality()
6146 const APInt *OtherVal, in processUMulZExtIdiom() argument
6217 MaxVal = MaxVal.zext(OtherVal->getBitWidth()); in processUMulZExtIdiom()
6218 if (MaxVal.eq(*OtherVal)) in processUMulZExtIdiom()
6227 APInt MaxVal = APInt::getOneBitSet(OtherVal->getBitWidth(), MulWidth); in processUMulZExtIdiom()
6228 if (MaxVal.eq(*OtherVal)) in processUMulZExtIdiom()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp298 SDValue OtherVal = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, OtherVT, in ScalarizeVecRes_FFREXP()
300 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); in ScalarizeVecRes_FFREXP()
374 SDValue OtherVal = DAG.getNode( in ScalarizeVecRes_OverflowOp()
376 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); in ScalarizeVecRes_OverflowOp()
1898 SDValue OtherVal = DAG.getNode( in SplitVecRes_OverflowOp()
1901 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); in SplitVecRes_INSERT_VECTOR_ELT()
2552 SDValue OtherVal = in SplitVecRes_FFREXP()
2555 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); in SplitVecRes_ExtendOp()
5011 SDValue OtherVal = DAG.getNode( in WidenVecRes_OverflowOp()
5013 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); in WidenVecRes_OverflowOp()
294 SDValue OtherVal = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, OtherVT, ScalarizeVecRes_FFREXP() local
370 SDValue OtherVal = DAG.getNode( ScalarizeVecRes_OverflowOp() local
1894 SDValue OtherVal = DAG.getNode( SplitVecRes_OverflowOp() local
2548 SDValue OtherVal = SplitVecRes_FFREXP() local
5007 SDValue OtherVal = DAG.getNode( WidenVecRes_OverflowOp() local
[all...]