OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Deps
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemDepPrinter.cpp
42
DepSetMap
Deps
;
60
Deps
.clear();
106
Deps
[Inst].insert(std::make_pair(getInstTypePair(Res),
112
DepSet &InstDeps =
Deps
[Inst];
123
DepSet &InstDeps =
Deps
[Inst];
138
DepSetMap::const_iterator DI =
Deps
.find(Inst);
139
if (DI ==
Deps
.end())
/src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp
83
auto
Deps
= ArgDeps & ~ExprDependence::TypeValue;
86
Deps
|= ExprDependence::Value;
91
return
Deps
;
92
if ((
Deps
& ExprDependence::Value) && (
Deps
& ExprDependence::Instantiation))
93
return
Deps
;
102
return
Deps
;
105
Deps
|= ExprDependence::Error;
107
Deps
|= ExprDependence::ValueInstantiation;
109
return
Deps
;
[
all
...]
TemplateBase.cpp
189
auto
Deps
= TemplateArgumentDependence::None;
195
Deps
= toTemplateArgumentDependence(getAsType()->getDependence());
197
Deps
|= TemplateArgumentDependence::Dependent;
198
return
Deps
;
212
Deps
= TemplateArgumentDependence::Dependent |
214
return
Deps
;
222
Deps
= toTemplateArgumentDependence(getAsExpr()->getDependence());
224
Deps
|= TemplateArgumentDependence::Dependent |
226
return
Deps
;
230
Deps
|= P.getDependence()
[
all
...]
ExprCXX.cpp
436
auto
Deps
= TemplateArgumentDependence::None;
438
TemplateKWLoc, *TemplateArgs, getTrailingTemplateArgumentLoc(),
Deps
);
467
auto
Deps
= TemplateArgumentDependence::None;
469
TemplateKWLoc, *Args, getTrailingObjects<TemplateArgumentLoc>(),
Deps
);
1379
auto
Deps
= TemplateArgumentDependence::None;
1382
Deps
);
Expr.cpp
421
auto
Deps
= TemplateArgumentDependence::None;
424
Deps
);
425
assert(!(
Deps
& TemplateArgumentDependence::Dependent) &&
1609
auto
Deps
= E->getDependence();
1613
Deps
|= ExprDependence::TypeValueInstantiation;
1616
Deps
|= ExprDependence::Instantiation;
1635
Deps
|= ExprDependence::Instantiation;
1640
E->setDependence(
Deps
);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistry.cpp
195
static bool collectStrongDependencies(const ConstCheckerInfoList &
Deps
,
202
static void collectWeakDependencies(const ConstCheckerInfoList &
Deps
,
219
CheckerInfoSet
Deps
;
220
if (!collectStrongDependencies(Checker.Dependencies, Mgr,
Deps
,
227
Tmp.insert(
Deps
.begin(),
Deps
.end());
243
CheckerInfoSet
Deps
;
245
collectWeakDependencies(Checker.WeakDependencies, Mgr,
Deps
, IsEnabled);
247
if (!collectStrongDependencies(Checker.Dependencies, Mgr,
Deps
,
255
Data.EnabledCheckers.set_union(
Deps
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalDCE.cpp
103
SmallPtrSetImpl<GlobalValue *> &
Deps
) {
106
Deps
.insert(Parent);
108
Deps
.insert(GV);
114
Deps
.insert(K.begin(), K.end());
119
Deps
.insert(LocalDeps.begin(), LocalDeps.end());
125
SmallPtrSet<GlobalValue *, 8>
Deps
;
127
ComputeDependencies(User,
Deps
);
128
Deps
.erase(&GV); // Remove self-reference.
129
for (GlobalValue *GVU :
Deps
) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DDG.h
288
/// accesses from \p Src to \p Dst, and store them into \p
Deps
. Return true
291
DependenceList &
Deps
) const;
452
const NodeType &Src, const NodeType &Dst, DependenceList &
Deps
) const {
453
assert(
Deps
.empty() && "Expected empty output list at the start.");
467
Deps
.push_back(std::move(Dep));
469
return !
Deps
.empty();
478
DependenceList
Deps
;
479
if (!getDependencies(Src, Dst,
Deps
))
481
interleaveComma(
Deps
, OS, [&](const std::unique_ptr<Dependence> &D) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h
615
Expected<std::vector<VerNeed>>
Deps
= getVersionDependencies(*VerNeedSec);
616
if (!
Deps
)
617
return
Deps
.takeError();
618
for (const VerNeed &Dep : *
Deps
)
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorCombine.cpp
176
InstList
Deps
; // List of dependencies.
268
OS << "
Deps
\n";
269
for (Instruction *I : MG.
Deps
)
551
DepList
Deps
;
556
Deps
.insert(D);
564
return
Deps
;
580
DepList
Deps
= getUpwardDeps(Info.Inst, Base);
581
if (!llvm::all_of(
Deps
, isSafeToMoveToBase))
586
Deps
.erase(Info.Inst);
588
if (llvm::any_of(
Deps
, inAddrMap)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachinePipeliner.cpp
134
SwpPruneDeps("pipeliner-prune-
deps
",
951
SmallVector<SDep, 4>
Deps
;
954
Deps
.push_back(P);
955
for (int i = 0, e =
Deps
.size(); i != e; i++) {
956
Topo.RemovePred(&I,
Deps
[i].getSUnit());
957
I.removePred(
Deps
[i]);
960
Deps
.clear();
963
Deps
.push_back(P);
964
for (int i = 0, e =
Deps
.size(); i != e; i++) {
965
Topo.RemovePred(LastSU,
Deps
[i].getSUnit())
[
all
...]
MachineScheduler.cpp
3442
SmallVectorImpl<SDep> &
Deps
= isTop ? SU->Preds : SU->Succs;
3446
for (SDep &Dep :
Deps
) {
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
531
auto
Deps
= ExprDependence::None;
533
Deps
|= ExprDependence::Type;
535
Deps
|= ExprDependence::Value;
537
Deps
|= ExprDependence::Instantiation;
539
Deps
|= ExprDependence::UnexpandedPack;
541
Deps
|= ExprDependence::Error;
542
E->setDependence(
Deps
);
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
Attributor.h
163
TinyPtrVector<DepTy>
Deps
;
178
aaiterator begin() { return aaiterator(
Deps
.begin(), &DepGetValAA); }
179
aaiterator end() { return aaiterator(
Deps
.end(), &DepGetValAA); }
180
iterator child_begin() { return iterator(
Deps
.begin(), &DepGetVal); }
181
iterator child_end() { return iterator(
Deps
.end(), &DepGetVal); }
184
TinyPtrVector<DepTy> &getDeps() { return
Deps
; }
1272
DG.SyntheticRoot.
Deps
.push_back(
Completed in 39 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026