/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineC.cpp | 255 ProgramStateRef state, const Expr* Ex, const LocationContext* LCtx, in handleLValueBitCast() argument 266 SVal OrigV = state->getSVal(Ex, LCtx); in handleLValueBitCast() 282 void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, in VisitCast() argument 293 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx)); in VisitCast() 300 QualType ExTy = Ex->getType(); in VisitCast() 338 SVal V = state->getSVal(Ex, LCtx); in VisitCast() 345 SVal V = state->getSVal(Ex, LCtx); in VisitCast() 356 handleLValueBitCast(state, Ex, LCtx, T, ExTy, CastE, Bldr, Pred); in VisitCast() 366 SVal V = state->getSVal(Ex, LCtx); in VisitCast() 374 handleLValueBitCast(state, Ex, LCtx, T, ExTy, CastE, Bldr, Pred); in VisitCast() [all …]
|
H A D | ExplodedGraph.cpp | 50 bool ExplodedGraph::isInterestingLValueExpr(const Expr *Ex) { in isInterestingLValueExpr() argument 51 if (!Ex->isLValue()) in isInterestingLValueExpr() 53 return isa<DeclRefExpr, MemberExpr, ObjCIvarRefExpr, ArraySubscriptExpr>(Ex); in isInterestingLValueExpr() 122 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt()); in shouldCollect() local 123 if (!Ex) in shouldCollect() 129 if (isInterestingLValueExpr(Ex)) in shouldCollect() 137 if (!PM.isConsumedExpr(Ex)) in shouldCollect()
|
H A D | ExprEngine.cpp | 2024 const auto *Ex = cast<Expr>(S); in Visit() local 2025 QualType resultType = Ex->getType(); in Visit() 2029 SVal result = svalBuilder.conjureSymbolVal(nullptr, Ex, LCtx, in Visit() 2032 ProgramStateRef State = N->getState()->BindExpr(Ex, LCtx, result); in Visit() 2036 if (!(isa<ObjCBoxedExpr>(Ex) && in Visit() 2037 !cast<ObjCBoxedExpr>(Ex)->getSubExpr() in Visit() 2039 for (auto Child : Ex->children()) { in Visit() 2587 const auto *Ex = dyn_cast<Expr>(Condition); in RecoverCastedSymbol() local 2588 if (!Ex) in RecoverCastedSymbol() 2594 while (const auto *CE = dyn_cast<CastExpr>(Ex)) { in RecoverCastedSymbol() [all …]
|
H A D | MemRegion.cpp | 255 const Expr *Ex, unsigned cnt, in ProfileRegion() argument 258 ID.AddPointer(Ex); in ProfileRegion() 264 ProfileRegion(ID, Ex, Cnt, superRegion); in Profile() 395 Expr const *Ex, in ProfileRegion() argument 397 ID.AddPointer(Ex); in ProfileRegion() 402 ProfileRegion(ID, Ex, getSuperRegion()); in Profile() 416 ProfileRegion(ID, Ex, ExD, getSuperRegion()); in Profile() 481 os << "alloca{S" << Ex->getID(getContext()) << ',' << Cnt << '}'; in dumpToStream() 508 << "S" << Ex->getID(getContext()) << '}'; in dumpToStream() 518 << "S" << Ex->getID(getContext()) << '}'; in dumpToStream() [all …]
|
H A D | BugReporterVisitors.cpp | 87 static const Expr *peelOffOuterExpr(const Expr *Ex, const ExplodedNode *N); 2142 static const Expr *peelOffOuterExpr(const Expr *Ex, const ExplodedNode *N) { in peelOffOuterExpr() argument 2144 Ex = Ex->IgnoreParenCasts(); in peelOffOuterExpr() 2145 if (const auto *FE = dyn_cast<FullExpr>(Ex)) in peelOffOuterExpr() 2147 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(Ex)) in peelOffOuterExpr() 2149 if (const auto *POE = dyn_cast<PseudoObjectExpr>(Ex)) { in peelOffOuterExpr() 2160 if (const auto *CO = dyn_cast<ConditionalOperator>(Ex)) { in peelOffOuterExpr() 2182 if (auto *BO = dyn_cast<BinaryOperator>(Ex)) in peelOffOuterExpr() 2186 if (auto *UO = dyn_cast<UnaryOperator>(Ex)) { in peelOffOuterExpr() 2203 return Ex; in peelOffOuterExpr() [all …]
|
H A D | RegionStore.cpp | 409 const Expr *Ex, 978 const Expr *Ex; member in __anonfa909ae00611::InvalidateRegionsWorker 996 Ex(ex), Count(count), LCtx(lctx), IS(is), ITraits(ITraitsIn), Regions(r), in InvalidateRegionsWorker() 1130 svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, Ctx.IntTy, Count); in VisitCluster() 1151 DefinedOrUnknownSVal V = svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, in VisitCluster() 1220 svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, in VisitCluster() 1226 DefinedOrUnknownSVal V = svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, in VisitCluster() 1257 const Expr *Ex, in invalidateGlobalRegion() argument 1265 SVal V = svalBuilder.conjureSymbolVal(/* symbolTag = */ (const void*) GS, Ex, LCtx, in invalidateGlobalRegion() 1304 const Expr *Ex, unsigned Count, in invalidateRegions() argument [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ReachableCode.cpp | 37 static bool isEnumConstant(const Expr *Ex) { in isEnumConstant() argument 38 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex); in isEnumConstant() 44 static bool isTrivialExpression(const Expr *Ex) { in isTrivialExpression() argument 45 Ex = Ex->IgnoreParenCasts(); in isTrivialExpression() 46 return isa<IntegerLiteral>(Ex) || isa<StringLiteral>(Ex) || in isTrivialExpression() 47 isa<CXXBoolLiteralExpr>(Ex) || isa<ObjCBoolLiteralExpr>(Ex) || in isTrivialExpression() 48 isa<CharacterLiteral>(Ex) || in isTrivialExpression() 49 isEnumConstant(Ex); in isTrivialExpression() 197 if (const auto *Ex = dyn_cast<Expr>(S)) in isConfigurationValue() local 198 S = Ex->IgnoreImplicit(); in isConfigurationValue() [all …]
|
H A D | UninitializedValues.cpp | 250 static const Expr *stripCasts(ASTContext &C, const Expr *Ex) { in stripCasts() argument 251 while (Ex) { in stripCasts() 252 Ex = Ex->IgnoreParenNoopCasts(C); in stripCasts() 253 if (const auto *CE = dyn_cast<CastExpr>(Ex)) { in stripCasts() 255 Ex = CE->getSubExpr(); in stripCasts() 261 return Ex; in stripCasts() 452 const Expr *Ex = stripCasts(DC->getParentASTContext(), *I); in VisitCallExpr() local 453 const auto *UO = dyn_cast<UnaryOperator>(Ex); in VisitCallExpr() 455 Ex = UO->getSubExpr(); in VisitCallExpr() 456 classify(Ex, Ignore); in VisitCallExpr() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonConstExtenders.cpp | 303 bool operator==(const ExtExpr &Ex) const { in operator ==() 304 return Rs == Ex.Rs && S == Ex.S && Neg == Ex.Neg; in operator ==() 306 bool operator!=(const ExtExpr &Ex) const { in operator !=() 307 return !operator==(Ex); in operator !=() 309 bool operator<(const ExtExpr &Ex) const { in operator <() 310 if (Rs != Ex.Rs) in operator <() 311 return Rs < Ex.Rs; in operator <() 312 if (S != Ex.S) in operator <() 313 return S < Ex.S; in operator <() 314 return !Neg && Ex.Neg; in operator <() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DereferenceChecker.cpp | 54 const Expr *Ex, const ProgramState *state, 65 const Expr *Ex, in AddDerefSource() argument 69 Ex = Ex->IgnoreParenLValueCasts(); in AddDerefSource() 70 switch (Ex->getStmtClass()) { in AddDerefSource() 74 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex); in AddDerefSource() 83 const MemberExpr *ME = cast<MemberExpr>(Ex); in AddDerefSource() 91 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource()
|
H A D | ObjCUnusedIVarsChecker.cpp | 37 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) { in Scan() local 38 const ObjCIvarDecl *D = Ex->getDecl(); in Scan()
|
H A D | CStringChecker.cpp | 258 const Expr *Ex, 263 const Expr *Ex, 296 CheckerContext &C, ProgramStateRef State, const Expr *Ex, SVal V, 813 if (const auto *Ex = dyn_cast<Expr>(S)) in emitNullArgBug() local 814 bugreporter::trackExpressionValue(N, Ex, *Report); in emitNullArgBug() 999 const Expr *Ex, in getCStringLengthForRegion() argument 1013 MR, Ex, sizeTy, in getCStringLengthForRegion() 1037 const Expr *Ex, SVal Buf, in getCStringLength() argument 1053 emitNotCStringBug(C, state, Ex, os.str()); in getCStringLength() 1095 return getCStringLengthForRegion(C, state, Ex, MR, hypothetical); in getCStringLength() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | MemRegion.h | 485 const Expr *Ex; variable 488 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) { in AllocaRegion() 489 assert(Ex); in AllocaRegion() 492 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const Expr *Ex, 497 const Expr *getExpr() const { return Ex; } in getExpr() 1241 Expr const *Ex; variable 1244 : TypedValueRegion(sReg, CXXTempObjectRegionKind), Ex(E) { in CXXTempObjectRegion() 1254 const Expr *getExpr() const { return Ex; } in getExpr() 1259 QualType getValueType() const override { return Ex->getType(); } in getValueType() 1275 Expr const *Ex; variable [all …]
|
H A D | ExprEngine.h | 441 void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *Ex, ExplodedNode *Pred, 445 void VisitArraySubscriptExpr(const ArraySubscriptExpr *Ex, 475 void VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred, 491 void VisitGuardedExpr(const Expr *Ex, const Expr *L, const Expr *R, 530 void VisitOffsetOfExpr(const OffsetOfExpr *Ex, ExplodedNode *Pred, 534 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, 586 const Expr *Ex); 591 ProgramStateRef handleLValueBitCast(ProgramStateRef state, const Expr *Ex,
|
H A D | ProgramState.h | 376 SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const; 793 inline SVal ProgramState::getSVal(const Stmt *Ex, in getSVal() argument 795 return Env.getSVal(EnvironmentEntry(Ex, LCtx), in getSVal() 802 if (const Expr *Ex = dyn_cast<Expr>(S)) { in getSValAsScalarOrLoc() local 803 QualType T = Ex->getType(); in getSValAsScalarOrLoc() 804 if (Ex->isGLValue() || Loc::isLocType(T) || in getSValAsScalarOrLoc()
|
/freebsd/usr.bin/vi/catalog/ |
H A D | zh_CN.UTF-8.base | 85 092 "Ex 命令失败:等待中的命令已丢弃" 86 093 "Ex 命令失败:键映射已丢弃"
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldMachO.h | 39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections() 40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | WasmObjectFile.cpp | 1436 wasm::WasmExport Ex; in parseExportSection() local 1437 Ex.Name = readString(Ctx); in parseExportSection() 1438 Ex.Kind = readUint8(Ctx); in parseExportSection() 1439 Ex.Index = readVaruint32(Ctx); in parseExportSection() 1444 Info.Name = Ex.Name; in parseExportSection() 1446 switch (Ex.Kind) { in parseExportSection() 1448 if (!isDefinedFunctionIndex(Ex.Index)) in parseExportSection() 1451 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection() 1453 Info.ElementIndex = Ex.Index; in parseExportSection() 1460 if (!isValidGlobalIndex(Ex.Index)) in parseExportSection() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountChecker.cpp | 229 const Expr *Ex) const { in processObjCLiterals() 232 for (const Stmt *Child : Ex->children()) { in processObjCLiterals() 249 state->getSVal(Ex, pred->getLocationContext()).getAsSymbol()) { in processObjCLiterals() 250 QualType ResultTy = Ex->getType(); in processObjCLiterals() 270 void RetainCountChecker::checkPostStmt(const ObjCBoxedExpr *Ex, in checkPostStmt() argument 275 if (SymbolRef Sym = Pred->getSVal(Ex).getAsSymbol()) { in checkPostStmt() 276 QualType ResultTy = Ex->getType(); in checkPostStmt() 690 const Expr *Ex = CallOrMsg.getOriginExpr(); in checkSummary() local 691 assert(Ex); in checkSummary() 692 ResultTy = GetReturnType(Ex, C.getASTContext()); in checkSummary()
|
/freebsd/contrib/nvi/ |
H A D | README | 12 ex ............ Ex source code. 14 man ........... Ex/vi documentation.
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 824 Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) { in ActOnCXXThrow() argument 826 if (Ex) { in ActOnCXXThrow() 838 if (const auto *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens())) in ActOnCXXThrow() 857 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope); in ActOnCXXThrow() 860 ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex, in BuildCXXThrow() argument 891 if (Ex && !Ex->isTypeDependent()) { in BuildCXXThrow() 908 IsThrownVarInScope ? getNamedReturnInfo(Ex) : NamedReturnInfo(); in BuildCXXThrow() 910 QualType ExceptionObjectTy = Context.getExceptionObjectType(Ex->getType()); in BuildCXXThrow() 911 if (CheckCXXThrowOperand(OpLoc, ExceptionObjectTy, Ex)) in BuildCXXThrow() 916 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRInfo, Ex); in BuildCXXThrow() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | mediatek,sysirq.txt | 32 mapped region. Could be multiple bases here. Ex: mt6797 needs 2 reg, others
|
/freebsd/crypto/openssl/apps/ |
H A D | rsa8192.pem | 33 4Ex/td4cuggpEj3FGJV74qRvdvj/MF/uF7IxC/3WapPIsFBFH4zrJsUYt6u3L68I
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | ItaniumDemangle.h | 4948 Node *Ex = getDerived().parseExpr(); in parseExpr() local 4949 if (Ex == nullptr) in parseExpr() 4951 return make<PostfixExpr>(Ex, Sym, Op->getPrecedence()); in parseExpr() 4981 Node *Ex = getDerived().parseExpr(); in parseExpr() local 4982 if (Ex == nullptr) in parseExpr() 4984 Names.push_back(Ex); in parseExpr() 5006 Node *Ex = getDerived().parseExpr(); in parseExpr() local 5007 if (Ex == nullptr) in parseExpr() 5009 return make<DeleteExpr>(Ex, Global, /*IsArray=*/Op->getFlag(), in parseExpr() 5070 Node *Ex = getDerived().parseExpr(); in parseExpr() local [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | renesas,rsnd.txt | 118 Ex) Exchange output channel 147 Ex)
|