Searched refs:Profile (Results 1 - 25 of 134) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h1 //===- Profile.h - XRay Profile Abstraction -------------------------------===//
9 // Defines the XRay Profile class representing the latency profile generated by
27 class Profile;
29 // We forward declare the Trace type for turning a Trace into a Profile.
37 Expected<Profile> loadProfile(StringRef Filename);
39 /// This algorithm will merge two Profile instances into a single Profile
41 Profile mergeProfilesByThread(const Profile
51 class Profile { class in namespace:llvm::xray
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
H A DProfile.cpp1 //===- Profile.cpp - XRay Profile Abstraction -----------------------------===//
9 // Defines the XRay Profile class representing the latency profile generated by
13 #include "llvm/XRay/Profile.h"
25 Profile::Profile(const Profile &O) { function in class:llvm::xray::Profile
27 // Profile being initialized, through the Block instances we see.
37 Profile &Profile
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPSInt.cpp40 void APSInt::Profile(FoldingSetNodeID& ID) const { function in class:APSInt
42 APInt::Profile(ID);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagOperands.cpp15 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID) const { function in class:GIMatchDagOperand
16 Profile(ID, Idx, Name, IsDef);
19 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID, size_t Idx, function in class:GIMatchDagOperand
32 void GIMatchDagOperandList::Profile(FoldingSetNodeID &ID) const { function in class:GIMatchDagOperandList
34 GIMatchDagOperand::Profile(ID, I.index(), I.value().getName(),
80 GIMatchDagOperand::Profile(ID, i, I.Operands[i].Name,
101 GIMatchDagOperand::Profile(ID, 0, "$", true);
102 GIMatchDagOperand::Profile(ID, 1, "mi", false);
123 GIMatchDagOperand::Profile(ID, 0, "$", true);
124 GIMatchDagOperand::Profile(I
[all...]
H A DGIMatchDagOperands.h59 /// for details on the Profile function.
60 void Profile(FoldingSetNodeID &ID) const;
62 /// A helper that behaves like Profile() but is also usable without the object.
65 static void Profile(FoldingSetNodeID &ID, size_t Idx, StringRef Name,
78 /// See GIMatchDagOperandList::Profile() for the details on how they are folded.
98 void Profile(FoldingSetNodeID &ID) const;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h43 /// Profile an EnvironmentEntry for inclusion in a FoldingSet.
44 static void Profile(llvm::FoldingSetNodeID &ID, function in class:clang::ento::EnvironmentEntry
50 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::ento::EnvironmentEntry
51 Profile(ID, *this);
78 /// Profile - Profile the contents of an Environment object for use
80 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { function in class:clang::ento::Environment
81 env->ExprBindings.Profile(ID);
84 /// Profile - Used to profile the contents of this object for inclusion
86 void Profile(llv function in class:clang::ento::Environment
[all...]
H A DDynamicTypeInfo.h42 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::ento::DynamicTypeInfo
H A DSymbolManager.h53 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { function in class:clang::ento::SymbolRegionValue
58 void Profile(llvm::FoldingSetNodeID& profile) override {
59 Profile(profile, R);
104 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, function in class:clang::ento::SymbolConjured
115 void Profile(llvm::FoldingSetNodeID& profile) override {
116 Profile(profile, S, T, Count, LCtx, SymbolTag);
147 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent, function in class:clang::ento::SymbolDerived
154 void Profile(llvm::FoldingSetNodeID& profile) override {
155 Profile(profile, parentSymbol, R);
182 static void Profile(llv function in class:clang::ento::SymbolExtent
231 static void Profile(llvm::FoldingSetNodeID& profile, const MemRegion *R, function in class:clang::ento::SymbolMetadata
284 static void Profile(llvm::FoldingSetNodeID& ID, function in class:clang::ento::SymbolCast
378 static void Profile(llvm::FoldingSetNodeID &ID, LHSTYPE lhs, function in class:clang::ento::BinarySymExprImpl
[all...]
H A DBasicValueFactory.h55 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
58 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } function in class:clang::ento::CompoundValData
74 static void Profile(llvm::FoldingSetNodeID& ID,
78 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); } function in class:clang::ento::LazyCompoundValData
95 static void Profile(llvm::FoldingSetNodeID& ID, const DeclaratorDecl *D,
98 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, D, L); } function in class:clang::ento::PointerToMemberData
H A DMemRegion.h113 virtual void Profile(llvm::FoldingSetNodeID& ID) const = 0;
212 void Profile(llvm::FoldingSetNodeID &ID) const override;
267 void Profile(llvm::FoldingSetNodeID &ID) const override;
396 void Profile(llvm::FoldingSetNodeID &ID) const override;
488 void Profile(llvm::FoldingSetNodeID& ID) const override;
605 void Profile(llvm::FoldingSetNodeID& ID) const override;
650 void Profile(llvm::FoldingSetNodeID& ID) const override;
737 void Profile(llvm::FoldingSetNodeID& ID) const override;
775 void Profile(llvm::FoldingSetNodeID& ID) const override;
810 void Profile(llv
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp31 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, function in class:CompoundValData
33 T.Profile(ID);
37 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, function in class:LazyCompoundValData
44 void PointerToMemberData::Profile( function in class:PointerToMemberData
57 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { function in struct:llvm::FoldingSetTrait
58 X.first.Profile(ID);
64 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { function in struct:llvm::FoldingSetTrait
65 X.first.Profile(ID);
66 X.second.Profile(ID);
95 X.Profile(I
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAttributeImpl.h76 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributeImpl
78 Profile(ID, getKindAsEnum(), static_cast<uint64_t>(0));
80 Profile(ID, getKindAsEnum(), getValueAsInt());
82 Profile(ID, getKindAsString(), getValueAsString());
84 Profile(ID, getKindAsEnum(), getValueAsType());
87 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, function in class:llvm::AttributeImpl
93 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { function in class:llvm::AttributeImpl
98 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, function in class:llvm::AttributeImpl
261 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::final
262 Profile(I
265 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) { function in class:llvm::final
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h157 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
159 static void Profile(llvm::FoldingSetNodeID &ID,
330 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::TemplateName
368 void Profile(llvm::FoldingSetNodeID &ID);
370 static void Profile(llvm::FoldingSetNodeID &ID,
429 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::QualifiedTemplateName
430 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl());
433 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::QualifiedTemplateName
527 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentTemplateName
529 Profile(I
534 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::DependentTemplateName
541 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::DependentTemplateName
[all...]
H A DType.h572 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::Qualifiers
1063 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::QualType
1407 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::ExtQuals
1408 Profile(ID, getBaseType(), Quals);
1411 static void Profile(llvm::FoldingSetNodeID &ID, function in class:clang::ExtQuals
1416 Quals.Profile(ID);
2607 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::ComplexType
2608 Profile(ID, getElementType());
2611 static void Profile(llvm::FoldingSetNodeID &ID, QualType Element) { function in class:clang::ComplexType
2633 void Profile(llv function in class:clang::ParenType
2637 static void Profile(llvm::FoldingSetNodeID &ID, QualType Inner) { function in class:clang::ParenType
2660 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::PointerType
2664 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { function in class:clang::PointerType
2693 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::AdjustedType
2697 static void Profile(llvm::FoldingSetNodeID &ID, QualType Orig, QualType New) { function in class:clang::AdjustedType
2742 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::BlockPointerType
2746 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { function in class:clang::BlockPointerType
2782 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::ReferenceType
2786 static void Profile(llvm::FoldingSetNodeID &ID, function in class:clang::ReferenceType
2872 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::MemberPointerType
2876 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee, function in class:clang::MemberPointerType
2976 void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Ctx) { function in class:clang::final
3011 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::IncompleteArrayType
3016 static void Profile(llvm::FoldingSetNodeID &ID, QualType ET, function in class:clang::IncompleteArrayType
3074 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::VariableArrayType
3131 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentSizedArrayType
3176 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentAddressSpaceType
3220 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentSizedExtVectorType
3279 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::VectorType
3284 static void Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, function in class:clang::VectorType
3334 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentVectorType
3490 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::final
3495 static void Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, function in class:clang::final
3537 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::final
3864 void Profile(llvm::FoldingSetNodeID &ID) { function
3868 static void Profile(llvm::FoldingSetNodeID &ID, QualType ResultType, function
[all...]
H A DASTConcept.h55 void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &C) { function in class:clang::ConstraintSatisfaction
56 Profile(ID, C, ConstraintOwner, TemplateArgs);
59 static void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &C,
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPITypes.h33 void Profile(llvm::FoldingSetNodeID &Id) const { function in class:clang::ento::mpi::Request
H A DMPIBugReporter.h86 void Profile(llvm::FoldingSetNodeID &ID) const override {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h80 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
157 void Profile(llvm::FoldingSetNodeID &ID) const override;
179 void Profile(llvm::FoldingSetNodeID &ID) const override;
198 void Profile(llvm::FoldingSetNodeID &ID) const override {
221 void Profile(llvm::FoldingSetNodeID &ID) const override {
305 void Profile(llvm::FoldingSetNodeID &ID) const override {
330 void Profile(llvm::FoldingSetNodeID &ID) const override {
359 void Profile(llvm::FoldingSetNodeID &ID) const override;
381 void Profile(llvm::FoldingSetNodeID &ID) const override;
397 void Profile(llv
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h39 /// FoldingSetNode. The node class must also define a Profile method used to
40 /// establish the unique bits of data for the node. The Profile method is
54 /// void Profile(FoldingSetNodeID &ID) const {
229 static void Profile(const T &X, FoldingSetNodeID &ID) { function in struct:llvm::DefaultFoldingSetTrait
230 X.Profile(ID);
232 static void Profile(T &X, FoldingSetNodeID &ID) { function in struct:llvm::DefaultFoldingSetTrait
233 X.Profile(ID);
238 // just calls Profile and does a regular comparison. Implementations
245 // just calls Profile and does a regular hash computation.
253 /// The default behavior is to invoke a 'Profile' metho
264 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { function in struct:llvm::DefaultContextualFoldingSetTrait
763 void Profile(FoldingSetNodeID &ID) { FoldingSetTrait<T>::Profile(data, ID); } function in class:llvm::FoldingSetNodeWrapper
785 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } function in class:llvm::FastFoldingSetNode
792 static inline void Profile(T *X, FoldingSetNodeID &ID) { function in struct:llvm::FoldingSetTrait
798 static inline void Profile(const std::pair<T1, T2> &P, function in struct:llvm::FoldingSetTrait
[all...]
H A DImmutableMap.h54 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) { function in struct:llvm::ImutKeyValueInfo
55 ImutContainerInfo<T>::Profile(ID, V.first);
56 ImutContainerInfo<S>::Profile(ID, V.second);
227 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) { function in class:llvm::ImmutableMap
231 inline void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableMap
232 return Profile(ID,*this);
357 static inline void Profile(FoldingSetNodeID &ID, const ImmutableMapRef &M) { function in class:llvm::ImmutableMapRef
361 inline void Profile(FoldingSetNodeID &ID) const { return Profile(ID, *this); } function in class:llvm::ImmutableMapRef
H A DImmutableList.h44 static inline void Profile(FoldingSetNodeID& ID, const T& H, function in class:llvm::ImmutableListImpl
50 void Profile(FoldingSetNodeID& ID) { function in class:llvm::ImmutableListImpl
51 Profile(ID, Head, Tail);
143 void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableList
177 // Profile the new list to see if it already exists in our cache.
182 ListTy::Profile(ID, Head, TailImpl);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp40 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) { function in class:SubstTemplateTemplateParmStorage
41 Profile(ID, Parameter, Replacement);
44 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmStorage
51 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmPackStorage
53 Profile(ID, Context, Parameter, getArgumentPack());
56 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmPackStorage
61 ArgPack.Profile(ID, Context);
H A DASTConcept.cpp61 void ConstraintSatisfaction::Profile( function in class:ConstraintSatisfaction
67 Arg.Profile(ID, C);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfiling.h95 * Read profile data form buffer \p Profile and merge with
101 void __llvm_profile_merge_from_buffer(const char *Profile, uint64_t Size);
105 * Returns 0 (success) if the profile data in buffer \p Profile with size
110 int __llvm_profile_check_compatibility(const char *Profile,
/freebsd-13-stable/contrib/llvm-project/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;

Completed in 236 milliseconds

123456