Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Dprototype.js32 function NewC() { class
44 var c = NewC();
52 var c = NewC();
/external/llvm/lib/Analysis/
DConstantFolding.cpp808 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C)) in ConstantFoldInstruction() local
809 C = ConstantFoldConstantExpression(NewC, TD, TLI); in ConstantFoldInstruction()
867 Constant *NewC = cast<Constant>(*i); in ConstantFoldConstantExpression() local
869 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) in ConstantFoldConstantExpression()
870 NewC = ConstantFoldConstantExpression(NewCE, TD, TLI); in ConstantFoldConstantExpression()
871 Ops.push_back(NewC); in ConstantFoldConstantExpression()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp354 Constant *NewC; in ResolveConstantForwardRefs() local
356 NewC = ConstantArray::get(UserCA->getType(), NewOps); in ResolveConstantForwardRefs()
358 NewC = ConstantStruct::get(UserCS->getType(), NewOps); in ResolveConstantForwardRefs()
360 NewC = ConstantVector::get(NewOps); in ResolveConstantForwardRefs()
363 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps); in ResolveConstantForwardRefs()
366 UserC->replaceAllUsesWith(NewC); in ResolveConstantForwardRefs()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp2352 APInt NewC = C1; in SimplifySetCC() local
2356 NewC = NewC + 1; in SimplifySetCC()
2361 NewC = NewC.lshr(ShiftBits); in SimplifySetCC()
2362 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) { in SimplifySetCC()
2368 SDValue CmpRHS = DAG.getConstant(NewC, CmpTy); in SimplifySetCC()
DDAGCombiner.cpp1646 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT); in visitSUB() local
1647 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC, in visitSUB()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1000 if (Constant *NewC = ConstantFoldInstruction(I, TD, TLI)) { in ConstantPropUsersOf() local
1001 I->replaceAllUsesWith(NewC); in ConstantPropUsersOf()