HomeSort by: relevance | last modified time | path
    Searched refs:RTy (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
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...]
SMTConstraintManager.h 189 QualType LTy, RTy;
191 std::tie(ConvertedRHS, RTy) = SMTConv::fixAPSInt(Ctx, *RHS);
193 Solver, Ctx, ConvertedLHS, LTy, ConvertedRHS, RTy);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporterLookupTable.cpp 29 if (const auto *RTy = dyn_cast<RecordType>(Ty)) {
30 LT.add(RTy->getAsRecordDecl());
32 for (auto *it : RTy->getAsRecordDecl()->fields()) {
58 if (const auto *RTy = dyn_cast<RecordType>(Ty))
59 LT.add(RTy->getAsCXXRecordDecl());
DeclPrinter.cpp 163 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
164 BaseType = RTy->getPointeeType();
ASTContext.cpp 7488 } else if (const auto *RTy = PointeeTy->getAs<RecordType>()) {
7490 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
7495 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
7504 RTy, Options.ExpandPointedToStructures()))) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp 592 explicit RecordMemberExprValidatorCCC(const RecordType *RTy)
593 : Record(RTy->getDecl()) {
640 const RecordType *RTy,
646 RecordDecl *RDecl = RTy->getDecl();
647 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
648 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
655 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
700 RecordMemberExprValidatorCCC CCC(RTy);
1294 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1296 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy, OpLoc, IsArrow, SS
    [all...]
SemaExprCXX.cpp 6150 QualType RTy = RHS.get()->getType();
6152 bool RVoid = RTy->isVoidType();
6187 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
6200 if (!Context.hasSameType(LTy, RTy) &&
6201 (LTy->isRecordType() || RTy->isRecordType())) {
6213 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6227 RTy = RHS.get()->getType();
6240 // FIXME: If LTy and RTy have a composite pointer type, should we convert to
6244 if (!Context.hasSameType(LTy, RTy) &&
6254 if (CompareReferenceRelationship(QuestionLoc, LTy, RTy, &RefConv) =
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h 179 template <typename LTy, typename RTy> struct match_combine_or {
181 RTy R;
183 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
194 template <typename LTy, typename RTy> struct match_combine_and {
196 RTy R;
198 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
209 template <typename LTy, typename RTy>
210 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
211 return match_combine_or<LTy, RTy>(L, R)
    [all...]
DIBuilder.h 238 DIDerivedType *createReferenceType(unsigned Tag, DIType *RTy,
  /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/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/Analysis/
TargetTransformInfo.cpp 70 IntrinsicCostAttributes::IntrinsicCostAttributes(Intrinsic::ID Id, Type *RTy,
75 : II(I), RetTy(RTy), IID(Id), FMF(Flags), ScalarizationCost(ScalarCost) {
89 IntrinsicCostAttributes::IntrinsicCostAttributes(Intrinsic::ID Id, Type *RTy,
95 : II(I), RetTy(RTy), IID(Id), FMF(Flags), ScalarizationCost(ScalarCost) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp 632 const ReferenceType *RTy = cast<ReferenceType>(Ty);
633 QualType ETy = RTy->getPointeeType();
CGCall.cpp 3261 // the actual members of the record type `RTy`. Note that this function does
3265 static void setUsedBits(CodeGenModule &CGM, const RecordType *RTy, int Offset,
3269 const RecordDecl *RD = RTy->getDecl()->getDefinition();
3318 if (const auto *RTy = QTy->getAs<RecordType>())
3319 return setUsedBits(CGM, RTy, Offset, Bits);
CGBuiltin.cpp 4349 llvm::Type *RTy;
4359 RTy = Exchange->getType();
4375 RTy));
6750 auto *RTy = cast<llvm::FixedVectorType>(Ty);
6753 RTy = llvm::FixedVectorType::get(RTy->getElementType(),
6754 RTy->getNumElements() * 2);
6756 RTy, GetNeonType(this, NeonTypeFlags(Type.getEltType(), false,
8458 auto *RTy = llvm::VectorType::get(IntegerType::get(getLLVMContext(), 1), VTy);
8459 if (Pred->getType() == RTy)
    [all...]
CodeGenFunction.h 4096 QualType RTy);
4098 QualType RTy);
CGDebugInfo.cpp 2220 llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy,
2223 llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc));
CGExprScalar.cpp 1609 auto *RTy = llvm::FixedVectorType::get(LTy->getElementType(),
1611 Value* NewV = llvm::UndefValue::get(RTy);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DIBuilder.cpp 305 unsigned Tag, DIType *RTy,
309 assert(RTy && "Unable to create reference type");
310 return DIDerivedType::get(VMContext, Tag, "", nullptr, 0, nullptr, RTy,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 134 Intrinsic::ID Id, Type *RTy, ArrayRef<Type *> Tys,
138 IntrinsicCostAttributes(Intrinsic::ID Id, Type *RTy,
142 Intrinsic::ID Id, Type *RTy, ArrayRef<const Value *> Args,
  /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/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 806 if (auto RTy = Elements[0])
807 addType(Buffer, 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/TableGen/
Record.cpp 220 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS);
221 if (!RTy)
224 return llvm::all_of(RTy->getClasses(), [this](Record *TargetClass) {

Completed in 167 milliseconds

1 2