Searched refs:AE (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAArch64TargetParser.cpp142 for (const auto &AE : AArch64ARCHExtNames)
143 if (ArchExtKind == AE.ID)
144 return AE.getName();
151 for (const auto &AE : AArch64ARCHExtNames) {
152 if (AE.NegFeature && ArchExtBase == AE.getName())
153 return StringRef(AE.NegFeature);
157 for (const auto &AE : AArch64ARCHExtNames)
158 if (AE.Feature && ArchExt == AE
[all...]
H A DARMTargetParser.cpp412 for (const auto AE : ARCHExtNames) {
413 if ((Extensions & AE.ID) == AE.ID && AE.Feature)
414 Features.push_back(AE.Feature);
415 else if (AE.NegFeature)
416 Features.push_back(AE.NegFeature);
439 for (const auto AE : ARCHExtNames) {
440 if (ArchExtKind == AE.ID)
441 return AE
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp96 for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {
146 for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp36 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); local
39 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE.
51 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); local
52 if (AE <= E)
61 IndexType AS = A.start(), AE = A.end(); local
64 if (end() < AE || end() == IndexType::None) {
65 setEnd(AE);
68 if (end() == AE)
115 IndexType AS = A.start(), AE = A.end(); local
[all...]
H A DHexagonLoopIdiomRecognition.cpp1207 bool AE = true, AL = true;
1212 AE = false;
1217 if (AE && AL)
1222 if (!AE && !AL)
1226 assert(AE != AL);
1228 if (AE)
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp196 ArgEffect AE = ArgEffect(IncRef, K); local
203 AE = AE.withKind(IncRef);
206 AE = AE.withKind(DecRefBridgedTransferred);
219 state = updateSymbol(state, Sym, *T, AE, hasErr, C);
553 ArgEffect AE = Summ.getArg(idx); local
570 RefVal::makeNotOwned(AE.getObjKind(), PointeeTy));
577 switch (AE.getKind()) {
713 ArgEffect AE,
711 updateSymbol(ProgramStateRef state, SymbolRef sym, RefVal V, ArgEffect AE, RefVal::Kind &hasErr, CheckerContext &C) const argument
1352 const ArgEffect *AE = CalleeSideArgEffects.lookup(idx); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp139 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(S); local
140 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(),
147 const OMPArraySectionExpr *AE = cast<OMPArraySectionExpr>(S); local
148 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp128 Function::arg_iterator AE = Wrapper->arg_end(); local
142 for (; AI != AE && PI != PE; ++AI, ++PI) {
173 for (; AI != AE; ++AI)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp100 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
101 AI != AE; ++AI) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.cpp25 AI = F->arg_begin(), AE = F->arg_end(); AI != AE; ++AI)
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1488 ArgEffect AE = RS->getArg(i); local
1489 if (AE.getKind() == DecRef && AE.getObjKind() == ObjKind::CF &&
1495 } else if (AE.getKind() == DecRef && AE.getObjKind() == ObjKind::ObjC &&
1540 ArgEffect AE = RS->getArg(i); local
1541 if ((AE.getKind() == DecRef /*CFConsumed annotated*/ ||
1542 AE.getKind() == IncRef) && AE.getObjKind() == ObjKind::CF) {
1543 if (AE
1613 ArgEffect AE = RS->getArg(i); local
1672 ArgEffect AE = RS->getArg(i); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp96 for (Function::const_arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
97 AI != AE; ++AI)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCVSXFMAMutate.cpp300 for (LiveInterval::iterator AI = FMAInt.begin(), AE = FMAInt.end();
301 AI != AE; ++AI) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DRetainSummaryManager.h315 if (const ArgEffect *AE = Args.lookup(idx))
316 return *AE;
514 ArgEffectKind AE);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp694 for (unsigned AI = 0, AE = Symbol->getNumberOfAuxSymbols(); AI < AE; ++AI, ++SI) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp1240 for (auto *AE : AllowedExit) {
1243 if (ReductionLiveOuts.count(AE))
1245 for (User *U : AE->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp250 auto AI = I.arg_begin(), AE = I.arg_end(); local
251 for (; AI != AE; ++AI) {
266 for (auto BI = I.arg_begin(); BI != AE; ++BI, ++ArgNo) {
H A DAliasAnalysis.cpp211 for (auto AI = Call->arg_begin(), AE = Call->arg_end(); AI != AE; ++AI) {
H A DLoopAccessAnalysis.cpp1683 EquivalenceClasses<MemAccessInfo>::member_iterator AE = local
1687 while (AI != AE) {
1694 while (OI != AE) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2686 void ExprEngine::VisitAtomicExpr(const AtomicExpr *AE, ExplodedNode *Pred, argument
2689 getCheckerManager().runCheckersForPreStmt(AfterPreSet, Pred, AE, *this);
2702 for (unsigned SI = 0, Count = AE->getNumSubExprs(); SI != Count; SI++) {
2703 const Expr *SubExpr = AE->getSubExprs()[SI];
2708 State = State->invalidateRegions(ValuesToInvalidate, AE,
2715 State = State->BindExpr(AE, LCtx, ResultVal);
2716 Bldr.generateNode(AE, I, State, nullptr,
2720 getCheckerManager().runCheckersForPostStmt(Dst, AfterInvalidateSet, AE, *this);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp578 for (auto *AE : E->getAssocExprs())
579 D |= AE->getDependence() & ExprDependence::Error;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp425 static bool isSentinel(const DWARFDebugNames::AttributeEncoding &AE) { argument
426 return AE == sentinelAttrEnc();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1358 auto AI = FPT->param_type_begin(), AE = FPT->param_type_end(); local
1366 assert(AI != AE);
1371 if (AI != AE && (*AI)->isIntegerType()) {
1376 if (AI != AE && (*AI)->isAlignValT()) {
1381 assert(AI == AE && "unexpected usual deallocation function parameter");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1174 unsigned AI, AE; local
1176 for (AI = 0, AE = ArgLocs.size(); AI != AE; ++AI) {
1218 for (AE = AI, AI = ArgLocs.size(); AI != AE; --AI) {
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp1438 for (RecIter AI = SchedRW.Aliases.begin(), AE = SchedRW.Aliases.end();
1439 AI != AE; ++AI) {
2020 for (RecIter AI = SchedRW.Aliases.begin(), AE = SchedRW.Aliases.end();
2021 AI != AE; ++AI) {

Completed in 201 milliseconds

12