Searched defs:NewC (Results 1 - 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DConstantFolding.cpp795 Constant *NewC = cast<Constant>(*i); local
797 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC))
798 NewC = ConstantFoldConstantExpression(NewCE, TD);
799 Ops.push_back(NewC);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp987 if (auto *NewC = dyn_cast<ConstantExpr>(C))
988 C = ConstantFoldConstantExpression(NewC, DL, TLI);
1047 auto *NewC = cast<Constant>(&NewU); local
1050 if (auto *NewCE = dyn_cast<ConstantExpr>(NewC)) {
1052 NewC = ConstantFoldConstantExpressionImpl(NewCE, DL, TLI, FoldedOps);
1054 Ops.push_back(NewC);
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp331 Constant *NewC; local
333 NewC = ConstantArray::get(UserCA->getType(), NewOps);
335 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
337 NewC = ConstantVector::get(NewOps);
340 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
343 UserC->replaceAllUsesWith(NewC);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1068 Constant *NewC; local
1070 NewC = ConstantArray::get(UserCA->getType(), NewOps);
1072 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
1074 NewC = ConstantVector::get(NewOps);
1077 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
1080 UserC->replaceAllUsesWith(NewC);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1884 APInt NewC = C1; local
1888 NewC = NewC + 1;
1893 NewC = NewC.lshr(ShiftBits);
1894 if (ShiftBits && NewC.getMinSignedBits() <= 64 &&
1895 isLegalICmpImmediate(NewC.getSExtValue())) {
1903 SDValue CmpRHS = DAG.getConstant(NewC, dl, CmpTy);
H A DDAGCombiner.cpp1902 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), local
1904 return DAG.getNode(ISD::SUB, DL, VT, NewC,
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringARM32.cpp556 int32_t NewC = C->getValue(); local
558 NewC &= ~(0x80000000l >> ShAmt);
560 NewC = (NewC << ShAmt) >> ShAmt;
562 Src1 = Ctx->getConstantInt32(NewC);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1600 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT); local
1601 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,

Completed in 418 milliseconds