Home
last modified time | relevance | path

Searched refs:Profile (Results 1 – 25 of 216) sorted by relevance

123456789

/openbsd-src/gnu/llvm/llvm/include/llvm/XRay/
H A DProfile.h27 class Profile; variable
37 Expected<Profile> loadProfile(StringRef Filename);
41 Profile mergeProfilesByThread(const Profile &L, const Profile &R);
45 Profile mergeProfilesByStack(const Profile &L, const Profile &R);
48 Expected<Profile> profileFromTrace(const Trace &T);
51 class Profile {
85 Profile() = default;
86 ~Profile() = default;
88 Profile(Profile &&O) noexcept in Profile() function
93 Profile &operator=(Profile &&O) noexcept {
[all …]
/openbsd-src/gnu/llvm/llvm/lib/XRay/
H A DProfile.cpp25 Profile::Profile(const Profile &O) { in Profile() function in llvm::xray::Profile
37 Profile &Profile::operator=(const Profile &O) { in operator =()
38 Profile P = O; in operator =()
78 static Expected<std::vector<Profile::FuncID>> readPath(DataExtractor &Extractor, in readPath()
81 std::vector<Profile::FuncID> Path; in readPath()
96 static Expected<Profile::Data> readData(DataExtractor &Extractor, in readData()
101 Profile::Data D; in readData()
121 Error Profile::addBlock(Block &&B) { in addBlock()
131 Expected<std::vector<Profile::FuncID>> Profile::expandPath(PathID P) const { in expandPath()
137 std::vector<Profile::FuncID> Path; in expandPath()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagOperands.cpp15 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID) const { in Profile() function in GIMatchDagOperand
16 Profile(ID, Idx, Name, IsDef); in Profile()
19 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID, size_t Idx, in Profile() function in GIMatchDagOperand
32 void GIMatchDagOperandList::Profile(FoldingSetNodeID &ID) const { in Profile() function in GIMatchDagOperandList
34 GIMatchDagOperand::Profile(ID, I.index(), I.value().getName(), in Profile()
80 GIMatchDagOperand::Profile(ID, i, I.Operands[i].Name, in makeOperandList()
101 GIMatchDagOperand::Profile(ID, 0, "$", true); in makeMIPredicateOperandList()
102 GIMatchDagOperand::Profile(ID, 1, "mi", false); in makeMIPredicateOperandList()
123 GIMatchDagOperand::Profile(ID, 0, "$", true); in makeTwoMOPredicateOperandList()
124 GIMatchDagOperand::Profile(ID, 1, "mi0", false); in makeTwoMOPredicateOperandList()
[all …]
H A DGIMatchDagOperands.h60 void Profile(FoldingSetNodeID &ID) const;
65 static void Profile(FoldingSetNodeID &ID, size_t Idx, StringRef Name,
98 void Profile(FoldingSetNodeID &ID) const;
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DAttributeImpl.h78 void Profile(FoldingSetNodeID &ID) const { in Profile() function
80 Profile(ID, getKindAsEnum()); in Profile()
82 Profile(ID, getKindAsEnum(), getValueAsInt()); in Profile()
84 Profile(ID, getKindAsString(), getValueAsString()); in Profile()
86 Profile(ID, getKindAsEnum(), getValueAsType()); in Profile()
89 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind) { in Profile() function
94 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() function
101 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { in Profile() function
106 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() function
277 void Profile(FoldingSetNodeID &ID) const { in Profile() function
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h44 static void Profile(llvm::FoldingSetNodeID &ID, in Profile() function
50 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
51 Profile(ID, *this); in Profile()
80 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile() function
81 env->ExprBindings.Profile(ID); in Profile()
86 void Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function
87 Profile(ID, this); in Profile()
H A DSymbolManager.h54 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() function
59 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
60 Profile(profile, R); in Profile()
111 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() function
122 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
123 Profile(profile, S, T, Count, LCtx, SymbolTag); in Profile()
158 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent, in Profile() function
165 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
166 Profile(profile, parentSymbol, R); in Profile()
196 static void Profile(llvm::FoldingSetNodeID& profile, const SubRegion *R) { in Profile() function
[all …]
H A DBasicValueFactory.h56 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
59 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } in Profile() function
79 static void Profile(llvm::FoldingSetNodeID& ID,
83 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); } in Profile() function
100 static void Profile(llvm::FoldingSetNodeID &ID, const NamedDecl *D,
103 void Profile(llvm::FoldingSetNodeID &ID) { Profile(ID, D, L); } in Profile() function
H A DMemRegion.h114 virtual void Profile(llvm::FoldingSetNodeID& ID) const = 0;
217 void Profile(llvm::FoldingSetNodeID &ID) const override;
272 void Profile(llvm::FoldingSetNodeID &ID) const override;
403 void Profile(llvm::FoldingSetNodeID &ID) const override;
497 void Profile(llvm::FoldingSetNodeID& ID) const override;
614 void Profile(llvm::FoldingSetNodeID& ID) const override;
661 void Profile(llvm::FoldingSetNodeID& ID) const override;
753 void Profile(llvm::FoldingSetNodeID& ID) const override;
805 void Profile(llvm::FoldingSetNodeID& ID) const override;
841 void Profile(llvm::FoldingSetNodeID& ID) const override { in Profile() function
[all …]
H A DRangedConstraintManager.h46 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
98 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
100 It.Profile(ID); in Profile()
321 static void Profile(llvm::FoldingSetNodeID &ID, const RangeSet &RS) { in Profile() function
327 void Profile(llvm::FoldingSetNodeID &ID) const { Profile(ID, *this); } in Profile() function
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile() function in CompoundValData
34 T.Profile(ID); in Profile()
38 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile() function in LazyCompoundValData
45 void PointerToMemberData::Profile( in Profile() function in PointerToMemberData
58 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { in Profile() function
59 X.first.Profile(ID); in Profile()
65 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { in Profile() function
66 X.first.Profile(ID); in Profile()
67 X.second.Profile(ID); in Profile()
96 X.Profile(ID); in getValue()
[all …]
H A DSymbolManager.cpp169 SymbolRegionValue::Profile(profile, R); in getRegionValueSymbol()
188 SymbolConjured::Profile(profile, E, T, Count, LCtx, SymbolTag); in conjureSymbol()
205 SymbolDerived::Profile(profile, parentSymbol, R); in getDerivedSymbol()
221 SymbolExtent::Profile(profile, R); in getExtentSymbol()
239 SymbolMetadata::Profile(profile, R, S, T, LCtx, Count, SymbolTag); in getMetadataSymbol()
256 SymbolCast::Profile(ID, Op, From, To); in getCastSymbol()
273 SymIntExpr::Profile(ID, lhs, op, v, t); in getSymIntExpr()
291 IntSymExpr::Profile(ID, lhs, op, rhs, t); in getIntSymExpr()
309 SymSymExpr::Profile(ID, lhs, op, rhs, t); in getSymSymExpr()
326 UnarySymExpr::Profile(ID, Operand, Opc, T); in getUnarySymExpr()
H A DMemRegion.cpp214 void MemSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in MemSpaceRegion
218 void StackSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StackSpaceRegion
223 void StaticGlobalSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StaticGlobalSpaceRegion
253 void AllocaRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in AllocaRegion
257 void CompoundLiteralRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in CompoundLiteralRegion
277 void CXXThisRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in CXXThisRegion
281 void FieldRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in FieldRegion
293 void ObjCIvarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in ObjCIvarRegion
305 void NonParamVarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in NonParamVarRegion
317 void ParamVarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in ParamVarRegion
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DTemplateName.h168 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
170 static void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context,
354 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
408 void Profile(llvm::FoldingSetNodeID &ID);
410 static void Profile(llvm::FoldingSetNodeID &ID, TemplateName Replacement,
470 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
471 Profile(ID, getQualifier(), hasTemplateKeyword(), UnderlyingTemplate); in Profile()
474 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, in Profile() function
568 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
570 Profile(ID, getQualifier(), getIdentifier()); in Profile()
[all …]
H A DType.h606 void Profile(llvm::FoldingSetNodeID &ID) const {
1155 void Profile(llvm::FoldingSetNodeID &ID) const {
1501 void Profile(llvm::FoldingSetNodeID &ID) const {
1502 Profile(ID, getBaseType(), Quals);
1505 static void Profile(llvm::FoldingSetNodeID &ID,
1510 Quals.Profile(ID);
2736 void Profile(llvm::FoldingSetNodeID &ID) {
2737 Profile(ID, getElementType());
2740 static void Profile(llvm::FoldingSetNodeID &ID, QualType Element) {
2762 void Profile(llvm::FoldingSetNodeID &ID) {
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DFoldingSet.h232 static void Profile(const T &X, FoldingSetNodeID &ID) { in Profile() function
233 X.Profile(ID); in Profile()
235 static void Profile(T &X, FoldingSetNodeID &ID) { in Profile() function
236 X.Profile(ID); in Profile()
267 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { in Profile() function
268 X.Profile(ID, Context); in Profile()
362 inline void Add(const T &x) { FoldingSetTrait<T>::Profile(x, *this); } in Add()
404 FoldingSetTrait<T>::Profile(X, TempID); in Equals()
410 FoldingSetTrait<T>::Profile(X, TempID); in ComputeHash()
420 ContextualFoldingSetTrait<T, Ctx>::Profile(X, TempID, Context); in Equals()
[all …]
H A DImmutableMap.h55 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) { in Profile() function
56 ImutContainerInfo<T>::Profile(ID, V.first); in Profile()
57 ImutContainerInfo<S>::Profile(ID, V.second); in Profile()
191 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) { in Profile() function
195 inline void Profile(FoldingSetNodeID& ID) const { in Profile() function
196 return Profile(ID,*this); in Profile()
321 static inline void Profile(FoldingSetNodeID &ID, const ImmutableMapRef &M) { in Profile() function
325 inline void Profile(FoldingSetNodeID &ID) const { return Profile(ID, *this); } in Profile() function
H A DImmutableList.h45 static inline void Profile(FoldingSetNodeID& ID, const T& H, in Profile() function
51 void Profile(FoldingSetNodeID& ID) { in Profile() function
52 Profile(ID, Head, Tail); in Profile()
144 void Profile(FoldingSetNodeID& ID) const { in Profile() function
183 ListTy::Profile(ID, Head, TailImpl); in concat()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DTemplateName.cpp56 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) { in Profile() function in SubstTemplateTemplateParmStorage
57 Profile(ID, Replacement, getAssociatedDecl(), getIndex(), getPackIndex()); in Profile()
60 void SubstTemplateTemplateParmStorage::Profile( in Profile() function in SubstTemplateTemplateParmStorage
63 Replacement.Profile(ID); in Profile()
78 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in SubstTemplateTemplateParmPackStorage
80 Profile(ID, Context, getArgumentPack(), getAssociatedDecl(), getIndex(), in Profile()
92 void SubstTemplateTemplateParmPackStorage::Profile( in Profile() function in SubstTemplateTemplateParmPackStorage
96 ArgPack.Profile(ID, Context); in Profile()
H A DTemplateBase.cpp307 void TemplateArgument::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in TemplateArgument
315 getAsType().Profile(ID); in Profile()
319 getNullPtrType().Profile(ID); in Profile()
323 getParamTypeForDecl().Profile(ID); in Profile()
331 getAsTemplateOrTemplatePattern().Profile(ID); in Profile()
335 getAsIntegral().Profile(ID); in Profile()
336 getIntegralType().Profile(ID); in Profile()
340 getAsExpr()->Profile(ID, Context, true); in Profile()
346 Args.Args[I].Profile(ID, Context); in Profile()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h85 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
403 void Profile(llvm::FoldingSetNodeID &ID) const override;
422 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
445 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
525 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
550 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
579 void Profile(llvm::FoldingSetNodeID &ID) const override;
601 void Profile(llvm::FoldingSetNodeID &ID) const override;
616 void Profile(llvm::FoldingSetNodeID &ID) const override;
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DPathDiagnostic.h107 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } in Profile() function
368 void Profile(llvm::FoldingSetNodeID &ID) const;
393 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
394 Start.Profile(ID); in Profile()
395 End.Profile(ID); in Profile()
479 virtual void Profile(llvm::FoldingSetNodeID &ID) const;
526 void Profile(llvm::FoldingSetNodeID &ID) const override;
625 void Profile(llvm::FoldingSetNodeID &ID) const override;
699 void Profile(llvm::FoldingSetNodeID &ID) const override;
722 void Profile(llvm::FoldingSetNodeID &ID) const override;
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DSMTAPI.h58 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
62 Profile(ID1);
63 Other.Profile(ID2);
107 Profile(ID1);
108 Other.Profile(ID2);
112 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPSInt.cpp40 void APSInt::Profile(FoldingSetNodeID& ID) const { in Profile() function in APSInt
42 APInt::Profile(ID); in Profile()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DPathDiagnostic.cpp207 D->Profile(profile); in HandlePathDiagnostic()
1085 void PathDiagnosticLocation::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticLocation
1091 void PathDiagnosticPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticPiece
1103 void PathDiagnosticCallPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticCallPiece
1104 PathDiagnosticPiece::Profile(ID); in Profile()
1109 void PathDiagnosticSpotPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticSpotPiece
1110 PathDiagnosticPiece::Profile(ID); in Profile()
1114 void PathDiagnosticControlFlowPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticControlFlowPiece
1115 PathDiagnosticPiece::Profile(ID); in Profile()
1120 void PathDiagnosticMacroPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticMacroPiece
[all …]

123456789