HomeSort by relevance Sort by last modified time
    Searched defs:NewV (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 462 Value *NewV = nullptr;
467 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], I->getType());
471 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], I->getType());
477 NewV = IRB.CreateICmp(P, NewOperands[0], NewOperands[1], I->getName());
482 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], ToTy);
486 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], ToTy);
492 NewV = IRB.CreateBinOp(mapBinOpcode(I->getOpcode()),
500 I->replaceAllUsesWith(NewV);
502 ConvertedInsts[I] = NewV;
503 return NewV;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 277 const llvm::APSInt &NewV = getBasicVals().Convert(T, *Int);
280 return loc::ConcreteInt(NewV);
282 return nonloc::ConcreteInt(NewV);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 763 Value *NewV = createFSub(Zero, V);
764 if (Instruction *I = dyn_cast<Instruction>(NewV))
766 return NewV;
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 136 milliseconds