Searched refs:NewC (Results 1 – 5 of 5) sorted by relevance
/external/v8/test/mjsunit/ |
D | prototype.js | 32 function NewC() { class 44 var c = NewC(); 52 var c = NewC();
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 826 Constant *NewC = cast<Constant>(*i); in ConstantFoldConstantExpression() local 828 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) in ConstantFoldConstantExpression() 829 NewC = ConstantFoldConstantExpression(NewCE, TD, TLI); in ConstantFoldConstantExpression() 830 Ops.push_back(NewC); in ConstantFoldConstantExpression()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 339 Constant *NewC; in ResolveConstantForwardRefs() local 341 NewC = ConstantArray::get(UserCA->getType(), NewOps); in ResolveConstantForwardRefs() 343 NewC = ConstantStruct::get(UserCS->getType(), NewOps); in ResolveConstantForwardRefs() 345 NewC = ConstantVector::get(NewOps); in ResolveConstantForwardRefs() 348 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps); in ResolveConstantForwardRefs() 351 UserC->replaceAllUsesWith(NewC); in ResolveConstantForwardRefs()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 830 if (Constant *NewC = ConstantFoldInstruction(I, TD, TLI)) { in ConstantPropUsersOf() local 831 I->replaceAllUsesWith(NewC); in ConstantPropUsersOf()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 1641 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT); in visitSUB() local 1642 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC, in visitSUB()
|