Searched refs:OtherVal (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DFixedPoint.cpp65 llvm::APSInt OtherVal = Other.getValue(); local
67 bool OtherSigned = OtherVal.isSigned();
69 unsigned OtherWidth = OtherVal.getBitWidth();
78 OtherVal = OtherVal.extOrTrunc(CommonWidth);
82 OtherVal = OtherVal.shl(CommonScale - OtherScale);
85 if (ThisVal.sgt(OtherVal))
87 else if (ThisVal.slt(OtherVal))
90 if (ThisVal.ugt(OtherVal))
158 llvm::APSInt OtherVal = ConvertedOther.getValue(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp165 SVal OtherVal = Call->getArgSVal(0); local
174 OtherVal, State);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp4165 Value *OtherVal = A == Op1 ? B : A; local
4166 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
4193 Value *OtherVal = A == Op0 ? B : A; local
4194 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
4559 /// \param OtherVal The other argument of compare instruction.
4563 Value *OtherVal, InstCombiner &IC) {
4570 assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal);
4635 if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal))
4648 if (match(OtherVal, m_An
4562 processUMulZExtIdiom(ICmpInst &I, Value *MulVal, Value *OtherVal, InstCombiner &IC) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1620 /// are its initializer and OtherVal. See if we can shrink the global into a
1623 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1666 auto *CI = dyn_cast<ConstantInt>(OtherVal);
1717 bool StoringOther = SI->getOperand(0) == OtherVal;
1759 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp261 SDValue OtherVal = DAG.getNode( local
263 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); local
1398 SDValue OtherVal = DAG.getNode( local
1401 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); local
3215 SDValue OtherVal = DAG.getNode( local
3217 ReplaceValueWith(SDValue(N, OtherNo), OtherVal); local

Completed in 197 milliseconds