Home
last modified time | relevance | path

Searched refs:isGLValue (Results 1 – 25 of 34) sorted by relevance

12

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp73 SVal ExprVal = B->isGLValue() ? LeftV : RightV; in VisitBinaryOperator()
183 if (B->isGLValue()) in VisitBinaryOperator()
443 if (CastE->isGLValue()) in VisitCast()
484 if (CastE->isGLValue()) in VisitCast()
534 if (CastE->isGLValue()) in VisitCast()
565 if (CL->isGLValue()) in VisitCompoundLiteralExpr()
625 if (InitEx->isGLValue()) { in VisitDeclStmt()
752 if (!IE->isGLValue() && !IE->isTransparent() && in VisitInitListExpr()
1004 assert(!U->isGLValue()); in VisitUnaryOperator()
1015 assert (!U->isGLValue()); in VisitUnaryOperator()
[all …]
H A DSValBuilder.cpp170 if (Ex->isGLValue()) in conjureSymbolVal()
405 if (E->isGLValue()) in getConstantVal()
H A DExprEngine.cpp456 if (Result->isGLValue()) { in createTemporaryRegionIfNeeded()
3046 assert(Ex->isGLValue() || VD->getType()->isVoidType()); in VisitCommonDeclRefExpr()
3092 assert(!Ex->isGLValue()); in VisitCommonDeclRefExpr()
3290 bool IsGLValueLike = A->isGLValue() || in VisitArraySubscriptExpr()
3378 if (M->isGLValue() || M->getType()->isArrayType()) { in VisitMemberExpr()
3383 if (!M->isGLValue()) { in VisitMemberExpr()
H A DBugReporterVisitors.cpp1027 if (RetE->isGLValue()) { in visitNodeInitial()
2462 if (cast<Expr>(E)->isGLValue()) in handle()
/openbsd-src/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeExprGen.h108 return E->isGLValue() ? PT_Ptr : classify(E->getType()); in classify()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp145 if (BadE->isGLValue()) in emitBadCall()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprScalar.cpp423 if (E->isGLValue()) in VisitConstantExpr()
496 if (E->isGLValue()) in VisitOpaqueValueExpr()
2010 if (ICE->isGLValue()) in ShouldNullCheckClassCastValue()
2310 assert(E->isGLValue() && "lvalue-to-rvalue applied to r-value!"); in VisitCastExpr()
3085 if (E->isGLValue()) { in VisitReal()
3124 if (Op->isGLValue()) { in VisitImag()
3142 if (Op->isGLValue()) in VisitImag()
H A DCGExpr.cpp4161 } else if (E->getBase()->isGLValue()) { in EmitExtVectorElementExpr()
4563 if (!E->isGLValue()) in EmitInitListLValue()
4661 if (!E->isGLValue()) { in EmitIgnoredConditionalOperator()
4679 if (!expr->isGLValue()) { in EmitConditionalOperatorLValue()
H A DCGExprComplex.cpp164 if (E->isGLValue()) in VisitOpaqueValueExpr()
H A DCGExprAgg.cpp203 if (E->isGLValue()) { in VisitPseudoObjectExpr()
H A DCGExprCXX.cpp2127 if (!CE->getSubExpr()->isGLValue()) in isGLValueFromPointerDeref()
H A DCGExprConstant.cpp1400 if (CE->isGLValue()) in tryEmitConstantExpr()
H A DCGCall.cpp4413 assert(type->isReferenceType() == E->isGLValue() && in EmitCallArg()
4416 if (E->isGLValue()) { in EmitCallArg()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DUninitializedValues.cpp430 if ((*I)->isGLValue()) { in VisitCallExpr()
H A DCFG.cpp736 if (Arg->getType()->getAsCXXRecordDecl() && !Arg->isGLValue()) in findConstructionContextsForArguments()
1504 assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() || in findConstructionContexts()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h816 if (Ex->isGLValue() || Loc::isLocType(T) || in getSValAsScalarOrLoc()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaInit.cpp5862 if (ArrayDecay || Initializer->isGLValue()) { in tryObjCWritebackConversion()
6359 Initializer->isGLValue()), in InitializeFrom()
7333 if (Arg->isGLValue()) in handleGslAnnotatedTypes()
7435 if (Arg->isGLValue()) in visitLifetimeBoundArguments()
7485 if (CE->getSubExpr()->isGLValue()) in visitLocalsRetainedByReferenceBinding()
7759 if (E->isGLValue()) in visitLocalsRetainedByInitializer()
8020 << ExtendingEntity->getDecl() << Init->isGLValue() << DiagRange; in checkInitializerLifetime()
8194 if (Init->isGLValue()) in checkInitializerLifetime()
H A DSemaCast.cpp1499 if (!SrcExpr->isGLValue()) in TryLValueToRValueCast()
2237 if (!SrcExpr.get()->isGLValue()) { in TryReinterpretCast()
H A DSemaPseudoObject.cpp232 if (exp->isGLValue()) in CanCaptureValue()
H A DSemaExprCXX.cpp592 if (RecordD->isPolymorphic() && E->isGLValue()) { in BuildCXXTypeId()
6117 if (To->isGLValue()) { in TryClassUnification()
7157 if (E->isGLValue()) in MaybeBindToTemporary()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExpr.cpp2417 if (isGLValue()) { in isTransparent()
2510 if (!isGLValue() || !getType().isVolatileQualified()) in isReadIfDiscardedInCPlusPlus11()
4033 (ICE->isGLValue() && ICE->getCastKind() == CK_NoOp)) in getSourceBitField()
4080 if (ICE->isGLValue() && ICE->getCastKind() == CK_NoOp) in refersToVectorElement()
H A DExprConstant.cpp4627 if (Object->isGLValue()) in EvaluateObjectArgument()
5844 if (Ptr.isNullPointer() && !E->isGLValue()) in HandleDynamicCast()
5867 if (!E->isGLValue()) { in HandleDynamicCast()
8224 assert(E->isGLValue() || E->getType()->isFunctionType() || in EvaluateLValue()
8976 if (SubExpr->isGLValue()) { in VisitCastExpr()
11810 if (E->isGLValue()) { in tryEvaluateBuiltinObjectSize()
14975 if (E->isGLValue() || T->isFunctionType()) { in Evaluate()
15101 if (E->isGLValue()) { in EvaluateAsRValue()
H A DExprCXX.cpp144 if (RD->isPolymorphic() && E->isGLValue()) in isPotentiallyEvaluated()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DCFG.h192 return !E->isGLValue() && in isCXXRecordTypedCall()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h274 bool isGLValue() const { return getValueKind() != VK_PRValue; } in isGLValue() function
376 bool isGLValue() const { return Kind <= CL_XValue; } in isGLValue() function

12