Searched defs:NewV (Results 1 - 8 of 8) sorted by relevance
/external/compiler-rt/lib/profile/ |
H A D | InstrProfilingValue.c | 29 uint32_t BoolCmpXchg(void **Ptr, void *OldV, void *NewV) { argument 32 *Ptr = NewV;
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | Float2Int.cpp | 469 Value *NewV = nullptr; local 474 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], I->getType()); 478 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], I->getType()); 484 NewV = IRB.CreateICmp(P, NewOperands[0], NewOperands[1], I->getName()); 489 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], ToTy); 493 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], ToTy); 499 NewV = IRB.CreateBinOp(mapBinOpcode(I->getOpcode()), 507 I->replaceAllUsesWith(NewV); 509 ConvertedInsts[I] = NewV; 510 return NewV; [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | ProgramState.cpp | 277 const llvm::APSInt &NewV = getBasicVals().Convert(T, *Int); local 280 return loc::ConcreteInt(NewV); 282 return nonloc::ConcreteInt(NewV);
|
/external/llvm/lib/Linker/ |
H A D | IRMover.cpp | 952 Constant *NewV; local 960 NewV = 963 NewV = 966 DstElements.push_back(NewV);
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 763 Value *NewV = createFSub(Zero, V); local 764 if (Instruction *I = dyn_cast<Instruction>(NewV)) 766 return NewV;
|
/external/llvm/lib/Transforms/IPO/ |
H A D | GlobalOpt.cpp | 679 static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) { argument 684 LI->setOperand(0, NewV); 688 SI->setOperand(1, NewV); 696 CS.setCalledFunction(NewV); 702 CS.setArgument(i, NewV); 713 NewV, CI->getType())); 730 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
|
/external/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 1027 Value* NewV = llvm::UndefValue::get(RTy); local 1033 NewV = Builder.CreateInsertElement(NewV, VExt, IIndx, "shuf_ins"); 1035 return NewV;
|
/external/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 5041 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0) local 5043 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1); 5060 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0) 5062 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, [all...] |
Completed in 187 milliseconds