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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
ConstantHoisting.h 118 ConstantExpr *BaseExpr;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 549 const SCEV *BaseExpr = SE->getGEPExpr(cast<GEPOperator>(GEP), IndexExprs);
556 factorArrayIndex(ArrayIdx, BaseExpr, ElementSize, GEP);
567 factorArrayIndex(TruncatedArrayIdx, BaseExpr, ElementSize, GEP);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 127 Expr *BaseExpr = E->getBase();
133 BaseValue = EmitPointerWithAlignment(BaseExpr);
134 const auto *PTy = BaseExpr->getType()->castAs<PointerType>();
137 LValue BaseLV = EmitLValue(BaseExpr);
139 QualType BaseTy = BaseExpr->getType();
435 const Expr *BaseExpr = BO->getLHS();
446 This = EmitPointerWithAlignment(BaseExpr);
448 This = EmitLValue(BaseExpr).getAddress(*this);
CGExpr.cpp 4143 Expr *BaseExpr = E->getBase();
4149 Address Addr = EmitPointerWithAlignment(BaseExpr, &BaseInfo, &TBAAInfo);
4150 QualType PtrTy = BaseExpr->getType()->getPointeeType();
4152 bool IsBaseCXXThis = IsWrappedCXXThis(BaseExpr);
4155 if (IsBaseCXXThis || isa<DeclRefExpr>(BaseExpr))
4161 BaseLV = EmitCheckedLValue(BaseExpr, TCK_MemberAccess);
4171 if ((IsWrappedCXXThis(BaseExpr) &&
5091 const Expr *BaseExpr = E->getBase();
5095 BaseValue = EmitScalarExpr(BaseExpr);
5096 ObjectTy = BaseExpr->getType()->getPointeeType()
    [all...]
CGExprScalar.cpp 4834 Expr *BaseExpr = E->getBase();
4836 if (BaseExpr->isRValue()) {
4837 Addr = Address(EmitScalarExpr(BaseExpr), getPointerAlign());
4839 Addr = EmitLValue(BaseExpr).getAddress(*this);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 2681 Expr *BaseExpr = M->getBase();
2686 state = createTemporaryRegionIfNeeded(state, LCtx, BaseExpr);
2697 state = createTemporaryRegionIfNeeded(state, LCtx, BaseExpr,
2701 MR ? loc::MemRegionVal(MR) : state->getSVal(BaseExpr, LCtx);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 924 Expr *BaseExpr;
933 MSPropertyRefExpr(Expr *baseExpr, MSPropertyDecl *decl, bool isArrow,
936 : Expr(MSPropertyRefExprClass, ty, VK, OK_Ordinary), BaseExpr(baseExpr),
954 return BaseExpr->getBeginLoc();
964 return child_range((Stmt**)&BaseExpr, (Stmt**)&BaseExpr + 1);
976 Expr *getBaseExpr() const { return BaseExpr; }
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 7454 Expr *BaseExpr = IV->getBase();
7459 BaseExpr = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(BaseExpr));
7460 IV->setBase(BaseExpr);
7467 if (BaseExpr->getType()->isObjCObjectPointerType()) {
7469 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType());
7490 BaseExpr);
RewriteObjC.cpp 5808 Expr *BaseExpr = IV->getBase();
5813 BaseExpr = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(BaseExpr));
5814 IV->setBase(BaseExpr);
5821 if (BaseExpr->getType()->isObjCObjectPointerType()) {
5823 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType());
5863 if (BaseExpr->getType()->isObjCObjectPointerType()) {
5865 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 5470 Expr *BaseExpr, *IndexExpr;
5473 BaseExpr = LHSExp;
5477 BaseExpr = LHSExp;
5482 BaseExpr = LHSExp;
5488 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr,
5494 BaseExpr = RHSExp;
5500 BaseExpr = RHSExp;
5505 << ResultType << BaseExpr->getSourceRange();
5509 BaseExpr = LHSExp; // vectors: V[123]
5523 QualType BaseType = BaseExpr->getType()
    [all...]

Completed in 43 milliseconds