Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Dprototype.js32 function NewC() { class
44 var c = NewC();
52 var c = NewC();
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp1567 Comparison NewC(C); in adjustForTestUnderMask() local
1571 NewC.Op0 = C.Op0.getOperand(0); in adjustForTestUnderMask()
1572 NewC.Op1 = C.Op0.getOperand(1); in adjustForTestUnderMask()
1573 Mask = dyn_cast<ConstantSDNode>(NewC.Op1); in adjustForTestUnderMask()
1581 if (NewC.Op0.getValueType() != MVT::i64 || in adjustForTestUnderMask()
1582 NewC.CCMask == SystemZ::CCMASK_CMP_EQ || in adjustForTestUnderMask()
1583 NewC.CCMask == SystemZ::CCMASK_CMP_NE || in adjustForTestUnderMask()
1584 NewC.ICmpType == SystemZICMP::SignedOnly) in adjustForTestUnderMask()
1587 if (NewC.CCMask == SystemZ::CCMASK_CMP_LE || in adjustForTestUnderMask()
1588 NewC.CCMask == SystemZ::CCMASK_CMP_GT) { in adjustForTestUnderMask()
[all …]
/external/llvm/lib/Analysis/
DConstantFolding.cpp911 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C)) in ConstantFoldInstruction() local
912 C = ConstantFoldConstantExpression(NewC, DL, TLI); in ConstantFoldInstruction()
970 Constant *NewC = cast<Constant>(*i); in ConstantFoldConstantExpressionImpl() local
973 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) { in ConstantFoldConstantExpressionImpl()
975 NewC = ConstantFoldConstantExpressionImpl(NewCE, DL, TLI, FoldedOps); in ConstantFoldConstantExpressionImpl()
977 Ops.push_back(NewC); in ConstantFoldConstantExpressionImpl()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1717 APInt NewC = C1; in SimplifySetCC() local
1721 NewC = NewC + 1; in SimplifySetCC()
1726 NewC = NewC.lshr(ShiftBits); in SimplifySetCC()
1727 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) { in SimplifySetCC()
1733 SDValue CmpRHS = DAG.getConstant(NewC, CmpTy); in SimplifySetCC()
DDAGCombiner.cpp1864 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), in visitSUB() local
1866 return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC, in visitSUB()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp854 Constant *NewC; in ResolveConstantForwardRefs() local
856 NewC = ConstantArray::get(UserCA->getType(), NewOps); in ResolveConstantForwardRefs()
858 NewC = ConstantStruct::get(UserCS->getType(), NewOps); in ResolveConstantForwardRefs()
860 NewC = ConstantVector::get(NewOps); in ResolveConstantForwardRefs()
863 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps); in ResolveConstantForwardRefs()
866 UserC->replaceAllUsesWith(NewC); in ResolveConstantForwardRefs()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp931 auto NewC = in visitCallInst() local
935 auto Shuffle = Builder->CreateShuffleVector(V1, V2, NewC); in visitCallInst()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp812 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) { in ConstantPropUsersOf() local
813 I->replaceAllUsesWith(NewC); in ConstantPropUsersOf()