HomeSort by: relevance | last modified time | path
    Searched defs:RTy (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConstraintManager.h 189 QualType LTy, RTy;
191 std::tie(ConvertedRHS, RTy) = SMTConv::fixAPSInt(Ctx, *RHS);
193 Solver, Ctx, ConvertedLHS, LTy, ConvertedRHS, RTy);
SMTConv.h 349 QualType RTy, QualType *RetTy) {
352 doTypeConversion(Solver, Ctx, NewLHS, NewRHS, LTy, RTy);
368 if (LTy->isAnyPointerType() && RTy->isAnyPointerType() && Op == BO_Sub) {
386 QualType LTy, RTy;
393 std::tie(NewRInt, RTy) = fixAPSInt(Ctx, SIE->getRHS());
396 return getBinExpr(Solver, Ctx, LHS, LTy, Op, RHS, RTy, RetTy);
405 getSymExpr(Solver, Ctx, ISE->getRHS(), &RTy, hasComparison);
406 return getBinExpr(Solver, Ctx, LHS, LTy, Op, RHS, RTy, RetTy);
413 getSymExpr(Solver, Ctx, SSM->getRHS(), &RTy, hasComparison);
414 return getBinExpr(Solver, Ctx, LHS, LTy, Op, RHS, RTy, RetTy)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp 632 const ReferenceType *RTy = cast<ReferenceType>(Ty);
633 QualType ETy = RTy->getPointeeType();
CGExprScalar.cpp 1609 auto *RTy = llvm::FixedVectorType::get(LTy->getElementType(),
1611 Value* NewV = llvm::UndefValue::get(RTy);
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 193 const RecordType *RTy = CT->getAs<RecordType>();
194 if (!RTy || !RTy->hasConstFields())
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 1447 QualType RTy = R->getValueType();
1451 if (RTy->isAnyComplexType())
1462 if (RTy->isStructureOrClassType())
1466 if (RTy->isUnionType())
1469 if (RTy->isArrayType()) {
1470 if (RTy->isConstantArrayType())
1477 if (RTy->isVectorType())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 1066 auto *RTy = cast<IntegerType>(Range.getType());
1069 if (!AllowNarrowLatchCondition && RTy != Ty)
1071 if (RTy->getBitWidth() < Ty->getBitWidth())
1080 RTy, SE, IsSignedPredicate);
1081 const SCEV *End = NoopOrExtend(SE.getSCEV(MainLoopStructure.LoopExitAt), RTy,
1092 const SCEV *One = SE.getOne(RTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
InlineFunction.cpp 2536 Type *RTy = CalledFunc->getReturnType();
2543 PHI = PHINode::Create(RTy, Returns.size(), CB.getName(),
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 2375 VectorType *RTy;
2402 VectorType *RTy = DelayedShuffle.RTy;
2410 VectorType::get(Type::getInt32Ty(Context), RTy->getElementCount());
2790 VectorType *RTy = dyn_cast<VectorType>(CurTy);
2793 if (Record.size() < 4 || !RTy || !OpTy)
2796 {OpTy, RTy, CurFullTy, Record[1], Record[2], Record[3], NextCstNo});
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 12810 const RecordType *RTy = Ty.getCanonicalType()->getAs<RecordType>();
12814 DiagnoseRecursiveConstFields(S, ME->getMemberDecl(), RTy, Loc,
12817 DiagnoseRecursiveConstFields(S, DRE->getDecl(), RTy, Loc,
12820 DiagnoseRecursiveConstFields(S, nullptr, RTy, Loc,

Completed in 79 milliseconds