Home
last modified time | relevance | path

Searched refs:DN (Results 1 – 25 of 27) sorted by relevance

12

/llvm-project-15.0.7/lld/test/MachO/
H A Dthreads.s8 # RUN: not %lld --threads=all %t.o -o /dev/null 2>&1 | FileCheck %s -DN=all
9 # RUN: not %lld --threads=0 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=0
10 # RUN: not %lld --threads=-1 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=-1
/llvm-project-15.0.7/lld/test/ELF/
H A Dthreads.s8 # RUN: not ld.lld --threads=all %t.o -o /dev/null 2>&1 | FileCheck %s -DN=all
9 # RUN: not ld.lld --threads=0 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=0
10 # RUN: not ld.lld --threads=-1 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=-1
/llvm-project-15.0.7/lld/test/wasm/
H A Dthreads.s8 # RUN: not wasm-ld --threads=all %t.o -o /dev/null 2>&1 | FileCheck %s -DN=all
9 # RUN: not wasm-ld --threads=0 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=0
10 # RUN: not wasm-ld --threads=-1 %t.o -o /dev/null 2>&1 | FileCheck %s -DN=-1
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dwiden-vmovs.ll9 ; CHECK: vorr [[DL:d[0-9]+]], [[DN:d[0-9]+]]
10 ; CHECK: , [[DN]]
12 ; CHECK: vadd.f32 [[DL]], [[DL]], [[DN]]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp79 struct DN : D, N {}; struct
80 struct DND : DN, X<D,0> {};
81 struct DNN : DN, X<N,0> {};
/llvm-project-15.0.7/llvm/lib/Passes/
H A DStandardInstrumentations.cpp1425 DotCfgDiffNode(const DotCfgDiffNode &DN) in DotCfgDiffNode() argument
1426 : Graph(DN.Graph), N(DN.N), Data{DN.Data[0], DN.Data[1]}, in DotCfgDiffNode()
1427 Colour(DN.Colour), EdgesMap(DN.EdgesMap), Children(DN.Children),
1428 Edges(DN.Edges) {}
/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp2064 EXPECT_EQ(&C1, CG.lookupSCC(DN)); in TEST()
2067 EXPECT_EQ(&RC1, CG.lookupRefSCC(DN)); in TEST()
2073 Function &D = DN.getFunction(); in TEST()
2088 RC1.replaceNodeFunction(DN, E); in TEST()
2090 EXPECT_EQ(&E, &DN.getFunction()); in TEST()
2091 EXPECT_EQ(&DN, &(*CN)[DN].getNode()); in TEST()
2092 EXPECT_EQ(&DN, &(*BN)[DN].getNode()); in TEST()
2136 DN.populate(); in TEST()
2141 CG.insertEdge(DN, DeadN, LazyCallGraph::Edge::Ref); in TEST()
2156 EXPECT_EQ(&C1, CG.lookupSCC(DN)); in TEST()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DDebugify.cpp318 for (const DINode *DN : SP->getRetainedNodes()) { in collectDebugInfoMetadata() local
319 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in collectDebugInfoMetadata()
557 for (const DINode *DN : SP->getRetainedNodes()) { in checkDebugInfoMetadata() local
558 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in checkDebugInfoMetadata()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1942 for (const DINode *DN : SP->getRetainedNodes()) { in collectEntityInfo() local
1943 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in collectEntityInfo()
1946 if (auto *DV = dyn_cast<DILocalVariable>(DN)) { in collectEntityInfo()
1948 } else if (auto *DL = dyn_cast<DILabel>(DN)) { in collectEntityInfo()
1953 createConcreteEntity(TheCU, *Scope, DN, nullptr); in collectEntityInfo()
2239 for (const DINode *DN : SP->getRetainedNodes()) { in endFunctionImpl() local
2240 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in endFunctionImpl()
2244 if (auto *DV = dyn_cast<DILocalVariable>(DN)) in endFunctionImpl()
2246 else if (auto *DL = dyn_cast<DILabel>(DN)) in endFunctionImpl()
2252 ensureAbstractEntityIsCreated(TheCU, DN, Scope); in endFunctionImpl()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRDFLiveness.cpp523 NodeId DN = DA.Addr->getReachedDef(); in computePhiInfo() local
524 while (DN != 0) { in computePhiInfo()
525 NodeAddr<DefNode*> A = DFG.addr<DefNode*>(DN); in computePhiInfo()
534 DN = A.Addr->getSibling(); in computePhiInfo()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCoroutine.cpp34 DeclarationName DN = S.PP.getIdentifierInfo(Name); in lookupMember() local
35 LookupResult LR(S, DN, Loc, Sema::LookupMemberName); in lookupMember()
1208 DeclarationName DN = in makeReturnOnAllocFailure() local
1210 LookupResult Found(S, DN, Loc, Sema::LookupMemberName); in makeReturnOnAllocFailure()
1232 << DN; in makeReturnOnAllocFailure()
H A DSemaAttr.cpp806 DeclarationName DN(II); in ActOnPragmaMSAllocText() local
807 NamedDecl *ND = LookupSingleName(TUScope, DN, Loc, LookupOrdinaryName); in ActOnPragmaMSAllocText()
H A DSema.cpp261 DeclarationName DN = &Context.Idents.get(Name); in addImplicitTypedef() local
262 if (IdResolver.begin(DN) == IdResolver.end()) in addImplicitTypedef()
H A DSemaCodeComplete.cpp5459 DeclarationName DN = T.getNamedConcept()->getDeclName(); in deduceType() local
5460 if (DN.isIdentifier() && DN.getAsIdentifierInfo()->isStr("same_as")) in deduceType()
/llvm-project-15.0.7/llvm/lib/Target/BPF/
H A DBTFDebug.cpp1163 for (const DINode *DN : SP->getRetainedNodes()) { in beginFunctionImpl() local
1164 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in beginFunctionImpl()
1185 for (const DINode *DN : SP->getRetainedNodes()) { in beginFunctionImpl() local
1186 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in beginFunctionImpl()
H A DBPFAbstractMemberAccess.cpp240 for (const DINode *DN : SP->getRetainedNodes()) { in run() local
241 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) in run()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp859 DomTreeNode *DN = DT->getNode(L->getHeader()); in preheader() local
860 if (!DN) in preheader()
862 return DN->getIDom()->getBlock(); in preheader()
H A DHexagonLoopIdiomRecognition.cpp2256 DomTreeNode *DN = DT->getNode(ExitD); in processCopyingStore() local
2257 BN->setIDom(DN); in processCopyingStore()
/llvm-project-15.0.7/llvm/test/Transforms/Attributor/
H A Dnoreturn_async.ll20 @"??_C@_0BK@JHJLGDKL@Done?5execution?5result?$DN?$CFi?6?$AA@" = linkonce_odr dso_local unnamed_addr…
H A Dnoreturn_sync.ll20 @"??_C@_0BK@JHJLGDKL@Done?5execution?5result?$DN?$CFi?6?$AA@" = linkonce_odr dso_local unnamed_addr…
/llvm-project-15.0.7/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp254 auto DN = D->getDeclName(); in getQualifiedNameStart() local
255 bool IsAnonymous = DN.isIdentifier() && !DN.getAsIdentifierInfo(); in getQualifiedNameStart()
/llvm-project-15.0.7/llvm/test/Demangle/
H A Dms-string-literals.test199 ??_C@_01NEMOKFLO@?$DN?$AA@
558 ??_C@_13NMPKAAJP@?$AA?$DN?$AA?$AA@
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclBase.cpp313 if (const auto *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) { in print() local
315 DN->printQualifiedName(OS); in print()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclCXX.h3622 UsingEnumDecl(DeclContext *DC, DeclarationName DN, SourceLocation UL, in UsingEnumDecl() argument
3624 : BaseUsingDecl(UsingEnum, DC, NL, DN), UsingLocation(UL), in UsingEnumDecl()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp2480 DeclarationNameInfo DN = Record.readDeclarationNameInfo(); in VisitTemplateTypeParmDecl() local
2486 D->setTypeConstraint(NNS, DN, /*FoundDecl=*/nullptr, NamedConcept, in VisitTemplateTypeParmDecl()

12