OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DTN
(Results
1 - 23
of
23
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
TemplateName.cpp
234
} else if (DependentTemplateName *
DTN
= getAsDependentTemplateName()) {
235
if (!SuppressNNS &&
DTN
->getQualifier())
236
DTN
->getQualifier()->print(OS, Policy);
239
if (
DTN
->isIdentifier())
240
OS <<
DTN
->getIdentifier()->getName();
242
OS << "operator " << getOperatorSpelling(
DTN
->getOperator());
TypeLoc.cpp
584
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName())
585
Builder.MakeTrivial(Context,
DTN
->getQualifier(), Loc);
ASTContext.cpp
5898
DependentTemplateName *
DTN
= Name.getAsDependentTemplateName();
5900
if (
DTN
->isIdentifier()) {
5901
DName = DeclarationNames.getIdentifier(
DTN
->getIdentifier());
5904
DName = DeclarationNames.getCXXOperatorName(
DTN
->getOperator());
5947
DependentTemplateName *
DTN
= Name.getAsDependentTemplateName();
5948
assert(
DTN
&& "Non-dependent template names must refer to template decls.");
5949
return
DTN
->CanonicalTemplateName;
ASTImporter.cpp
8759
DependentTemplateName *
DTN
= From.getAsDependentTemplateName();
8760
auto QualifierOrErr = Import(
DTN
->getQualifier());
8764
if (
DTN
->isIdentifier()) {
8766
Import(
DTN
->getIdentifier()));
8770
DTN
->getOperator());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstraintElimination.cpp
225
ConstraintOrBlock(DomTreeNode *
DTN
)
226
: NumIn(
DTN
->getDFSNumIn()), NumOut(
DTN
->getDFSNumOut()), IsBlock(true),
227
BB(
DTN
->getBlock()) {}
228
ConstraintOrBlock(DomTreeNode *
DTN
, CmpInst *Condition, bool Not)
229
: NumIn(
DTN
->getDFSNumIn()), NumOut(
DTN
->getDFSNumOut()), IsBlock(false),
NewGVN.cpp
2854
for (auto
DTN
: nodes(DT)) {
2855
BasicBlock *BB =
DTN
->getBlock();
3426
for (auto
DTN
: depth_first(DT->getRootNode())) {
3427
BasicBlock *B =
DTN
->getBlock();
LICM.cpp
545
for (DomTreeNode *
DTN
: reverse(Worklist)) {
546
BasicBlock *BB =
DTN
->getBlock();
/src/external/apache2/llvm/dist/llvm/lib/IR/
SafepointIRVerifier.cpp
736
DomTreeNode *
DTN
= DT[const_cast<BasicBlock *>(BB)];
738
assert(
DTN
&& "Unreachable blocks are ignored");
739
while (
DTN
->getIDom()) {
740
DTN
=
DTN
->getIDom();
741
auto BBS = getBasicBlockState(
DTN
->getBlock());
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp
227
for (auto *
DTN
: children<DomTreeNode*>(DT->getNode(B)))
228
Changed |= visitBlock(
DTN
->getBlock());
HexagonCommonGEP.cpp
320
for (auto *
DTN
: children<DomTreeNode*>(DT->getNode(Root)))
321
getBlockTraversalOrder(
DTN
->getBlock(), Order);
1241
for (auto
DTN
: children<DomTreeNode*>(DT->getNode(B)))
1242
BO.push_back(
DTN
->getBlock());
HexagonGenInsert.cpp
984
for (auto *
DTN
: children<MachineDomTreeNode*>(MDT->getNode(B))) {
985
MachineBasicBlock *SB =
DTN
->getBlock();
1456
for (auto *
DTN
: children<MachineDomTreeNode*>(N))
1457
Changed |= removeDeadCode(
DTN
);
HexagonBitSimplify.cpp
277
for (auto *
DTN
: children<MachineDomTreeNode*>(MDT->getNode(&B)))
278
Changed |= visitBlock(*(
DTN
->getBlock()), T, NewAVs);
993
for (auto *
DTN
: children<MachineDomTreeNode*>(N))
994
Changed |= runOnNode(
DTN
);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp
907
DependentTemplateName *
DTN
= Template.getAsDependentTemplateName();
908
if (
DTN
&&
DTN
->isIdentifier()) {
911
assert(
DTN
->getQualifier() == SS.getScopeRep());
913
DTN
->getQualifier(),
914
DTN
->getIdentifier(),
942
if (Template.getAsOverloadedTemplate() ||
DTN
||
SemaTemplate.cpp
3653
DependentTemplateName *
DTN
3655
if (
DTN
&&
DTN
->isIdentifier())
3661
DTN
->getQualifier(),
3662
DTN
->getIdentifier(),
3958
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName()) {
3961
DTN
->getQualifier(),
3962
DTN
->getIdentifier(),
4032
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName()) {
4034
DTN
->getQualifier()
[
all
...]
SemaTemplateDeduction.cpp
2672
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName())
2673
Builder.MakeTrivial(Context,
DTN
->getQualifier(), Loc);
5799
if (DependentTemplateName *
DTN
= Name.getAsDependentTemplateName())
5800
MarkUsedTemplateParameters(Ctx,
DTN
->getQualifier(), OnlyDeduced,
TreeTransform.h
4232
if (DependentTemplateName *
DTN
= Name.getAsDependentTemplateName()) {
4240
SS.getScopeRep() ==
DTN
->getQualifier() &&
4247
if (
DTN
->isIdentifier()) {
4250
*
DTN
->getIdentifier(),
4258
DTN
->getOperator(), NameLoc,
6636
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName()) {
6640
DTN
->getQualifier(),
6641
DTN
->getIdentifier(),
/src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp
414
const DynTypedNode &
DTN
= N.ASTNode;
415
if (auto *S =
DTN
.get<Stmt>())
417
if (auto *D =
DTN
.get<Decl>())
419
if (auto *Init =
DTN
.get<CXXCtorInitializer>())
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp
1166
for (auto *
DTN
= (*DT)[InsertPt->getParent()];
DTN
;
DTN
=
DTN
->getIDom())
1167
if (LI->getLoopFor(
DTN
->getBlock()) == L)
1168
return
DTN
->getBlock()->getTerminator();
PredicateInfo.cpp
518
for (auto
DTN
: depth_first(DT.getRootNode())) {
519
BasicBlock *BranchBB =
DTN
->getBlock();
LoopUtils.cpp
521
auto AddRegionToWorklist = [&](DomTreeNode *
DTN
) {
523
BasicBlock *BB =
DTN
->getBlock();
525
Worklist.push_back(
DTN
);
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp
983
DomTreeNode *
DTN
;
989
:
DTN
(D), ChildIt(It), IncomingVal(M) {}
992
std::swap(
DTN
, RHS.
DTN
);
1168
DomTreeNode *Node = WorkStack.back().
DTN
;
ScalarEvolution.cpp
10083
for (DomTreeNode *
DTN
= DT[Latch], *HeaderDTN = DT[L->getHeader()];
10084
DTN
!= HeaderDTN;
DTN
=
DTN
->getIDom()) {
10085
assert(
DTN
&& "should reach the loop header before reaching the root!");
10087
BasicBlock *BB =
DTN
->getBlock();
/src/external/apache2/llvm/dist/clang/include/clang/AST/
RecursiveASTVisitor.h
766
if (DependentTemplateName *
DTN
= Template.getAsDependentTemplateName())
767
TRY_TO(TraverseNestedNameSpecifier(
DTN
->getQualifier()));
Completed in 123 milliseconds
Indexes created Thu Jun 18 00:24:58 UTC 2026