HomeSort by: relevance | last modified time | path
    Searched refs:OtherVal (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 66 APSInt OtherVal = Other.getValue();
68 bool OtherSigned = OtherVal.isSigned();
70 unsigned OtherWidth = OtherVal.getBitWidth();
79 OtherVal = OtherVal.extOrTrunc(CommonWidth);
83 OtherVal = OtherVal.shl(CommonScale - OtherScale);
86 if (ThisVal.sgt(OtherVal))
88 else if (ThisVal.slt(OtherVal))
91 if (ThisVal.ugt(OtherVal))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
GTestChecker.cpp 165 SVal OtherVal = Call->getArgSVal(0);
174 OtherVal, State);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 4246 Value *OtherVal = A == Op1 ? B : A;
4247 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
4274 Value *OtherVal = A == Op0 ? B : A;
4275 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
4645 /// \param OtherVal The other argument of compare instruction.
4649 Value *OtherVal,
4657 assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal);
4724 if (match(OtherVal, m_And(m_Value(ValToMask), m_ConstantInt(CI)))) {
4740 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 1128 /// are its initializer and OtherVal. See if we can shrink the global into a
1131 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1174 auto *CI = dyn_cast<ConstantInt>(OtherVal);
1225 bool StoringOther = SI->getOperand(0) == OtherVal;
1267 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 279 SDValue OtherVal = DAG.getNode(
281 ReplaceValueWith(SDValue(N, OtherNo), OtherVal);
1557 SDValue OtherVal = DAG.getNode(
1560 ReplaceValueWith(SDValue(N, OtherNo), OtherVal);
3511 SDValue OtherVal = DAG.getNode(
3513 ReplaceValueWith(SDValue(N, OtherNo), OtherVal);

Completed in 25 milliseconds