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

/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DConstantFolding.cpp808 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C))
809 C = ConstantFoldConstantExpression(NewC, TD, TLI);
867 Constant *NewC = cast<Constant>(*i); local
869 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC))
870 NewC = ConstantFoldConstantExpression(NewCE, TD, TLI);
871 Ops.push_back(NewC);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2357 APInt NewC = C1; local
2361 NewC = NewC + 1;
2366 NewC = NewC.lshr(ShiftBits);
2367 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) {
2373 SDValue CmpRHS = DAG.getConstant(NewC, CmpTy);
H A DDAGCombiner.cpp1652 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), local
1654 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp356 Constant *NewC; local
358 NewC = ConstantArray::get(UserCA->getType(), NewOps);
360 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
362 NewC = ConstantVector::get(NewOps);
365 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
368 UserC->replaceAllUsesWith(NewC);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DGlobalOpt.cpp1002 if (Constant *NewC = ConstantFoldInstruction(I, TD, TLI)) {
1003 I->replaceAllUsesWith(NewC);

Completed in 115 milliseconds