|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/Analysis/BasicAliasAnalysis.cpp 1961 if (Dest[j].Scale != Scale)
1991 Var0.Scale != -Var1.Scale)
2011 if (V0Scale != V1Scale || V0ZExtBits != V1ZExtBits ||
lib/Analysis/DemandedBits.cpp 407 if (Res.second || (AB |= Res.first->second) != Res.first->second) {
lib/Analysis/InstructionSimplify.cpp 4923 PtrSym != LoadedRHSSym || PtrOffset != LoadedRHSOffset)
lib/Analysis/Loads.cpp 225 if (Step->getAPInt() != EltSize)
lib/Analysis/ScalarEvolution.cpp 5713 if (Known.One != ~Known.Zero + 1)
9983 if (!LDiff || !RDiff || *LDiff != *RDiff)
lib/Analysis/ValueTracking.cpp 5529 assert(Upper != Lower && "Upper part of range has wrapped!");
lib/CodeGen/CodeGenPrepare.cpp 5787 WidestAndBits != DemandBits)
lib/CodeGen/SelectionDAG/DAGCombiner.cpp 4784 (Mask->getAPIntValue() & C->getAPIntValue()) != C->getAPIntValue())
5977 if (Rem != 0 || ResultAmt != OppLHSAmt)
5983 if (OppLHSAmt != ExtractFromAmt - NeededShiftAmt.zextOrTrunc(
8642 if (C1 != C2 + 1)
8644 if (C1 != C2 - 1)
lib/CodeGen/SelectionDAG/SelectionDAG.cpp 2022 case ISD::SETNE: return getBoolConstant(C1 != C2, dl, VT, OpVT);
2150 if (NewVal != CVal)
9412 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
lib/CodeGen/SwitchLoweringUtils.cpp 394 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) {
lib/IR/ConstantFold.cpp 1867 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V1 != V2);
lib/IR/ConstantRange.cpp 53 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
1089 if (NegL.Upper != SignedMin + 1) {
lib/Support/APInt.cpp 756 while (A != B) {
1967 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS;
1967 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS;
2974 bool InexactSQ = Q != D;
lib/Target/AArch64/AArch64FastISel.cpp 2372 if (cast<ConstantInt>(RHS)->getValue() != APInt(BW, -1, true))
lib/Target/AMDGPU/SIISelLowering.cpp 8890 if (C.bitcastToAPInt() != CanonicalQNaN.bitcastToAPInt())
lib/Target/ARM/ARMISelLowering.cpp11711 if ((C1Int & Mask) != C1Int)
14004 if ((OrCI & Known.Zero) != OrCI)
lib/Target/ARM/MVETailPredication.cpp 329 if (Const->getAPInt() != -VF->getValue())
354 if (Const->getAPInt() != (VF->getValue() - 1))
lib/Target/PowerPC/PPCISelLowering.cpp12069 if (Op1Known.Zero != Op2Known.Zero || Op1Known.One != Op2Known.One)
12069 if (Op1Known.Zero != Op2Known.Zero || Op1Known.One != Op2Known.One)
lib/Target/SystemZ/SystemZISelLowering.cpp 756 if (HighValue != LowValue || 8 > HalfSize)
lib/Target/X86/X86ISelDAGToDAG.cpp 1751 if (MaskedHighBits != Known.Zero) return true;
lib/Target/X86/X86ISelLowering.cpp 6301 if (0 <= SplatIndex && EltBits[i] != EltBits[SplatIndex]) {
39324 if (EltBits0[i] != ~EltBits1[i])
41776 if (MaskedVal1 != Val1)
lib/Transforms/InstCombine/InstCombineCasts.cpp 894 if (!Op1CV->isNullValue() && (*Op1CV != KnownZeroMask)) {
1260 if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) {
lib/Transforms/InstCombine/InstCombineCompares.cpp 1281 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1677 if (SameAsC1 != C1) {
2366 bool ProdOV = (DivIsSigned ? Prod.sdiv(*C2) : Prod.udiv(*C2)) != C;
3398 if (*C0 != *C1)
4993 *LHSC != Op0KnownZeroInverted)
lib/Transforms/InstCombine/InstCombineSelect.cpp 170 if (TC.getBitWidth() != AndMask.getBitWidth() || (TC ^ FC) != AndMask)
2036 if (!(*MaxValue + 1).isPowerOf2() || -*MinValue != *MaxValue + 1)
lib/Transforms/InstCombine/InstructionCombining.cpp 1305 if (SmallScale.sext(Scale.getBitWidth()) != Scale)
lib/Transforms/Scalar/LoopIdiomRecognize.cpp 717 if (FirstStride != SecondStride)
lib/Transforms/Scalar/Reassociate.cpp 1215 if (C1 != ConstOpnd)
lib/Transforms/Utils/SimplifyCFG.cpp 622 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)
4318 if (Cases[I - 1]->getValue() != Cases[I]->getValue() + 1)
5043 } else if (Dist != DistToPrev) {
tools/clang/lib/AST/ASTContext.cpp 5241 if (!CAT2 || CAT1->getSize() != CAT2->getSize())
9044 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
tools/clang/lib/AST/ExprConstant.cpp 8578 if (InitBound != AllocBound)
tools/clang/lib/Analysis/CFG.cpp 991 if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) ||
992 (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) {
tools/clang/lib/Lex/LiteralSupport.cpp 1029 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
tools/clang/lib/Sema/SemaTemplateDeduction.cpp 1603 if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize())
unittests/IR/ConstantRangeTest.cpp 58 while (++N != CR.getUpper());
505 if (Lower1 != Upper2 + 1)
507 if (Lower2 != Upper1 + 1)
1394 for (APInt I = NUWRegion.getLower(), E = NUWRegion.getUpper(); I != E;
1401 for (APInt I = NSWRegion.getLower(), E = NSWRegion.getUpper(); I != E;
1422 for (APInt I = NUWRegion.getLower(), E = NUWRegion.getUpper(); I != E;
1429 for (APInt I = NSWRegion.getLower(), E = NSWRegion.getUpper(); I != E;
utils/TableGen/CodeGenSchedule.cpp 382 if (LhsMasks.first != RhsMasks.first)
385 if (LhsMasks.second != RhsMasks.second)
utils/unittest/googletest/include/gtest/gtest.h 1522 GTEST_IMPL_CMP_HELPER_(NE, !=);