Searched refs:NewC (Results 1 - 8 of 8) 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/Target/SystemZ/
H A DSystemZISelLowering.cpp1926 Comparison NewC(C);
1930 NewC.Op0 = C.Op0.getOperand(0);
1931 NewC.Op1 = C.Op0.getOperand(1);
1932 Mask = dyn_cast<ConstantSDNode>(NewC.Op1);
1940 if (NewC.Op0.getValueType() != MVT::i64 ||
1941 NewC.CCMask == SystemZ::CCMASK_CMP_EQ ||
1942 NewC.CCMask == SystemZ::CCMASK_CMP_NE ||
1943 NewC.ICmpType == SystemZICMP::SignedOnly)
1946 if (NewC.CCMask == SystemZ::CCMASK_CMP_LE ||
1947 NewC
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp913 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C))
914 C = ConstantFoldConstantExpression(NewC, DL, TLI);
972 Constant *NewC = cast<Constant>(*i); local
975 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) {
977 NewC = ConstantFoldConstantExpressionImpl(NewCE, DL, TLI, FoldedOps);
979 Ops.push_back(NewC);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1769 APInt NewC = C1; local
1773 NewC = NewC + 1;
1778 NewC = NewC.lshr(ShiftBits);
1779 if (ShiftBits && NewC.getMinSignedBits() <= 64 &&
1780 isLegalICmpImmediate(NewC.getSExtValue())) {
1788 SDValue CmpRHS = DAG.getConstant(NewC, dl, CmpTy);
H A DDAGCombiner.cpp1910 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), local
1912 return DAG.getNode(ISD::SUB, DL, VT, NewC,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1422 auto NewC = ConstantDataVector::get(V->getContext(), local
1426 auto Shuffle = Builder->CreateShuffleVector(V1, V2, NewC);
1462 auto NewC = local
1466 auto Shuffle = Builder->CreateShuffleVector(V1, V2, NewC);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1015 Constant *NewC; local
1017 NewC = ConstantArray::get(UserCA->getType(), NewOps);
1019 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
1021 NewC = ConstantVector::get(NewOps);
1024 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
1027 UserC->replaceAllUsesWith(NewC);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp814 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
815 I->replaceAllUsesWith(NewC);

Completed in 248 milliseconds