Home
last modified time | relevance | path

Searched refs:AE (Results 1 – 25 of 52) sorted by relevance

123

/llvm-project-15.0.7/llvm/lib/Support/
H A DCSKYTargetParser.cpp146 for (const auto &AE : CSKYARCHExtNames) in getArchExtName() local
147 if (ArchExtKind == AE.ID) in getArchExtName()
148 return AE.getName(); in getArchExtName()
162 for (const auto &AE : CSKYARCHExtNames) { in getArchExtFeature() local
163 if (AE.Feature && ArchExt == AE.getName()) in getArchExtFeature()
164 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature()
175 for (const auto &AE : CSKYARCHExtNames) { in getExtensionFeatures() local
176 if ((Extensions & AE.ID) == AE.ID && AE.Feature) in getExtensionFeatures()
177 Features.push_back(AE.Feature); in getExtensionFeatures()
H A DAArch64TargetParser.cpp130 for (const auto &AE : AArch64ARCHExtNames) in getArchExtName() local
131 if (ArchExtKind == AE.ID) in getArchExtName()
132 return AE.getName(); in getArchExtName()
139 for (const auto &AE : AArch64ARCHExtNames) { in getArchExtFeature() local
140 if (AE.NegFeature && ArchExtBase == AE.getName()) in getArchExtFeature()
141 return StringRef(AE.NegFeature); in getArchExtFeature()
145 for (const auto &AE : AArch64ARCHExtNames) in getArchExtFeature() local
146 if (AE.Feature && ArchExt == AE.getName()) in getArchExtFeature()
147 return StringRef(AE.Feature); in getArchExtFeature()
H A DARMTargetParser.cpp434 for (const auto &AE : ARCHExtNames) { in getExtensionFeatures() local
435 if ((Extensions & AE.ID) == AE.ID && AE.Feature) in getExtensionFeatures()
436 Features.push_back(AE.Feature); in getExtensionFeatures()
437 else if (AE.NegFeature) in getExtensionFeatures()
461 for (const auto &AE : ARCHExtNames) { in getArchExtName() local
462 if (ArchExtKind == AE.ID) in getArchExtName()
463 return AE.getName(); in getArchExtName()
479 if (AE.Feature && ArchExt == AE.getName()) in getArchExtFeature()
480 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature()
529 if ((AE.ID & ID) == ID && AE.NegFeature) in appendArchExtFeatures()
[all …]
/llvm-project-15.0.7/llvm/test/MC/PowerPC/
H A Dppc64-fixups.s47 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_LO target 0x0
55 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_HA target 0x0
72 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_HA target 0x0
80 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_LO target 0x0
88 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_HA target 0x0
96 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_LO target 0x0
104 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_HI target 0x0
112 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16_HI target 0x0
160 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_ADDR16 target 0x0
185 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_REL16 target 0x2
[all …]
H A Dppc64-fixup-explicit.s19 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16 target 0x0
27 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_DS target 0x0
35 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_HA target 0x0
43 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO target 0x0
51 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_HI target 0x0
59 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO target 0x0
67 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO_DS target 0x0
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp39 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE. in overlaps()
52 if (AE <= E) in contains()
61 IndexType AS = A.start(), AE = A.end(); in merge() local
65 setEnd(AE); in merge()
68 if (end() == AE) in merge()
115 IndexType AS = A.start(), AE = A.end(); in addsub() local
120 if (AE == IndexType::None) in addsub()
126 assert(AE != IndexType::None); in addsub()
131 if (BE < AE) { in addsub()
134 add(BS, AE, A.Fixed, false); in addsub()
[all …]
H A DHexagonLoopIdiomRecognition.cpp1222 bool AE = true, AL = true; in classifyInst() local
1227 AE = false; in classifyInst()
1232 if (AE && AL) in classifyInst()
1237 if (!AE && !AL) in classifyInst()
1241 assert(AE != AL); in classifyInst()
1243 if (AE) in classifyInst()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp196 ArgEffect AE = ArgEffect(IncRef, K); in checkPostStmt() local
203 AE = AE.withKind(IncRef); in checkPostStmt()
206 AE = AE.withKind(DecRefBridgedTransferred); in checkPostStmt()
553 ArgEffect AE = Summ.getArg(idx); in updateOutParameters() local
577 switch (AE.getKind()) { in updateOutParameters()
718 switch (AE.getKind()) { in updateSymbol()
722 AE = AE.withKind(DoNothing); in updateSymbol()
725 AE = AE.withKind(DoNothing); in updateSymbol()
728 AE = AE.withKind(StopTracking); in updateSymbol()
740 switch (AE.getKind()) { in updateSymbol()
[all …]
H A DRetainCountDiagnostics.cpp561 for (auto AI=CE->arg_begin(), AE=CE->arg_end(); AI!=AE; ++AI, ++i) { in VisitNode() local
/llvm-project-15.0.7/llvm/test/Linker/
H A Davailable_externally_a.ll2 ; RUN: llvm-link %s -S -o - | FileCheck --check-prefix=AE-ONLY %s
7 ; AE-ONLY-NOT: @foo
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp185 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(S); in reportBug() local
186 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug()
193 const OMPArraySectionExpr *AE = cast<OMPArraySectionExpr>(S); in reportBug() local
194 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug()
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DObjCMT.cpp1485 ArgEffect AE = RS->getArg(i); in AddCFAnnotations() local
1486 if (AE.getKind() == DecRef && AE.getObjKind() == ObjKind::CF && in AddCFAnnotations()
1492 } else if (AE.getKind() == DecRef && AE.getObjKind() == ObjKind::ObjC && in AddCFAnnotations()
1537 ArgEffect AE = RS->getArg(i); in migrateAddFunctionAnnotation() local
1539 AE.getKind() == IncRef) && AE.getObjKind() == ObjKind::CF) { in migrateAddFunctionAnnotation()
1542 else if (AE.getKind() == IncRef) in migrateAddFunctionAnnotation()
1610 ArgEffect AE = RS->getArg(i); in AddCFAnnotations() local
1611 if (AE.getKind() == DecRef in AddCFAnnotations()
1612 && AE.getObjKind() == ObjKind::CF in AddCFAnnotations()
1669 ArgEffect AE = RS->getArg(i); in migrateAddMethodAnnotation() local
[all …]
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp120 Function::arg_iterator AE = Wrapper->arg_end(); in createWrapper() local
134 for (; AI != AE && PI != PE; ++AI, ++PI) { in createWrapper()
165 for (; AI != AE; ++AI) in createWrapper()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DBinaryHolder.cpp245 auto AE = std::make_unique<ArchiveEntry>(); in getObjectEntry() local
246 auto Err = AE->load(VFS, Filename, Timestamp, Verbose); in getObjectEntry()
251 ArchiveCache[ArchiveFilename] = std::move(AE); in getObjectEntry()
/llvm-project-15.0.7/compiler-rt/lib/orc/
H A Delfnix_platform.cpp257 auto &AE = V.back(); in runAtExits() local
258 AE.Func(AE.Arg); in runAtExits()
H A Dmacho_platform.cpp508 auto &AE = JDS.AtExits.back(); in runAtExits() local
509 AE.Func(AE.Arg); in runAtExits()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp96 for (Function::const_arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end(); in setFunction() local
97 AI != AE; ++AI) in setFunction()
/llvm-project-15.0.7/clang/include/clang/Analysis/
H A DRetainSummaryManager.h315 if (const ArgEffect *AE = Args.lookup(idx))
316 return *AE;
514 ArgEffectKind AE);
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Daix-bytestring.ll4 …95\96\97\98\99\9A\9B\9C\9D\9E\9F\A0\A1\A2\A3\A4\A5\A6\A7\A8\A9\AA\AB\AC\AD\AE\AF\B0\B1\B2\B3\B4\B5…
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLint.cpp216 auto AI = I.arg_begin(), AE = I.arg_end(); in visitCallBase() local
217 for (; AI != AE; ++AI) { in visitCallBase()
232 for (auto *BI = I.arg_begin(); BI != AE; ++BI, ++ArgNo) { in visitCallBase()
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp1371 for (auto *AE : AllowedExit) { in prepareToFoldTailByMasking() local
1374 if (ReductionLiveOuts.count(AE)) in prepareToFoldTailByMasking()
1376 for (User *U : AE->users()) { in prepareToFoldTailByMasking()
/llvm-project-15.0.7/llvm/test/Demangle/
H A Dms-templates-memptrs.test23 ??$CallMethod@US@@$1??_91@$BA@AE@@YAXAAUS@@@Z
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3081 void ExprEngine::VisitAtomicExpr(const AtomicExpr *AE, ExplodedNode *Pred, in VisitAtomicExpr() argument
3084 getCheckerManager().runCheckersForPreStmt(AfterPreSet, Pred, AE, *this); in VisitAtomicExpr()
3097 for (unsigned SI = 0, Count = AE->getNumSubExprs(); SI != Count; SI++) { in VisitAtomicExpr()
3098 const Expr *SubExpr = AE->getSubExprs()[SI]; in VisitAtomicExpr()
3103 State = State->invalidateRegions(ValuesToInvalidate, AE, in VisitAtomicExpr()
3110 State = State->BindExpr(AE, LCtx, ResultVal); in VisitAtomicExpr()
3111 Bldr.generateNode(AE, I, State, nullptr, in VisitAtomicExpr()
3115 getCheckerManager().runCheckersForPostStmt(Dst, AfterInvalidateSet, AE, *this); in VisitAtomicExpr()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprCXX.cpp1361 auto AI = FPT->param_type_begin(), AE = FPT->param_type_end(); in getUsualDeleteParams() local
1369 assert(AI != AE); in getUsualDeleteParams()
1374 if (AI != AE && (*AI)->isIntegerType()) { in getUsualDeleteParams()
1379 if (AI != AE && (*AI)->isAlignValT()) { in getUsualDeleteParams()
1384 assert(AI == AE && "unexpected usual deallocation function parameter"); in getUsualDeleteParams()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp860 for (unsigned AI = 0, AE = Symbol->getNumberOfAuxSymbols(); AI < AE; ++AI, ++SI) { in printCOFFSymbolTable() local

123