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

/external/v8/test/mjsunit/
H A Dprototype.js32 function NewC() { function
44 var c = NewC();
52 var c = NewC();
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp833 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C))
834 C = ConstantFoldConstantExpression(NewC, TD, TLI);
892 Constant *NewC = cast<Constant>(*i); local
894 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC))
895 NewC = ConstantFoldConstantExpression(NewCE, TD, TLI);
896 Ops.push_back(NewC);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1520 APInt NewC = C1; local
1524 NewC = NewC + 1;
1529 NewC = NewC.lshr(ShiftBits);
1530 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) {
1536 SDValue CmpRHS = DAG.getConstant(NewC, CmpTy);
H A DDAGCombiner.cpp1665 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), local
1667 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp351 Constant *NewC; local
353 NewC = ConstantArray::get(UserCA->getType(), NewOps);
355 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
357 NewC = ConstantVector::get(NewOps);
360 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
363 UserC->replaceAllUsesWith(NewC);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1006 if (Constant *NewC = ConstantFoldInstruction(I, TD, TLI)) {
1007 I->replaceAllUsesWith(NewC);

Completed in 909 milliseconds