Home
last modified time | relevance | path

Searched refs:castTo (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h261 RangeSet castTo(RangeSet What, APSIntType Ty);
262 RangeSet castTo(RangeSet What, QualType T);
/llvm-project-15.0.7/flang/lib/Lower/
H A DConvertVariable.cpp450 mlir::Value castTo = in defineGlobal() local
452 builder.create<fir::HasValueOp>(loc, castTo); in defineGlobal()
461 mlir::Value castTo = builder.createConvert(loc, symTy, initVal); in defineGlobal() local
462 builder.create<fir::HasValueOp>(loc, castTo); in defineGlobal()
H A DConvertExpr.cpp3868 mlir::Value castTo = in lowerLazyArrayExpression() local
3872 loc, seqTy, castTo, shapeOp, /*slice=*/mlir::Value{}, llvm::None); in lowerLazyArrayExpression()
3885 mlir::Value castTo = builder.createConvert(loc, toTy, load); in lowerLazyArrayExpression() local
3888 loc, builder, castTo.getType(), shape, iters.iterVec()); in lowerLazyArrayExpression()
3890 loc, builder.getRefType(eleTy), castTo, shape, in lowerLazyArrayExpression()
4226 auto castTo = builder.createConvert(loc, memrefTy, origVal); in convertElementForUpdate() local
4227 origVal = builder.create<fir::EmboxOp>(loc, eleTy, castTo); in convertElementForUpdate()
5508 mlir::Value castTo = in genarr() local
5510 builder.create<fir::HasValueOp>(loc, castTo); in genarr()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp675 RangeSet RangeSet::Factory::castTo(RangeSet What, APSIntType Ty) { in castTo() function in RangeSet::Factory
706 RangeSet RangeSet::Factory::castTo(RangeSet What, QualType T) { in castTo() function in RangeSet::Factory
708 return castTo(What, ValueFactory.getAPSIntType(T)); in castTo()
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DFIRBuilder.cpp1064 auto castTo = builder.createConvert(loc, fieldEleTy, fromPointerValue); in genComponentByComponentAssignment() local
1065 builder.create<fir::StoreOp>(loc, castTo, toCoor); in genComponentByComponentAssignment()
/llvm-project-15.0.7/clang/unittests/StaticAnalyzer/
H A DRangeSetTest.cpp267 RangeSet Result = F.castTo(What, Ty); in checkCastToImpl()