Home
last modified time | relevance | path

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

12345678

/src/contrib/llvm-project/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 …]
/src/contrib/llvm-project/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 …]
/src/contrib/llvm-project/llvm/lib/IR/
H A DAttributeImpl.h92 void Profile(FoldingSetNodeID &ID) const { in Profile() function
94 Profile(ID, getKindAsEnum()); in Profile()
96 Profile(ID, getKindAsEnum(), getValueAsInt()); in Profile()
98 Profile(ID, getKindAsString(), getValueAsString()); in Profile()
100 Profile(ID, getKindAsEnum(), getValueAsType()); in Profile()
102 Profile(ID, getKindAsEnum(), getValueAsConstantRange()); in Profile()
104 Profile(ID, getKindAsEnum(), getValueAsConstantRangeList()); in Profile()
107 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind) { in Profile() function
112 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() function
119 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { in Profile() function
[all …]
/src/contrib/llvm-project/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()
187 SymbolConjured::Profile(profile, E, T, Count, LCtx, SymbolTag); in conjureSymbol()
203 SymbolDerived::Profile(profile, parentSymbol, R); in getDerivedSymbol()
218 SymbolExtent::Profile(profile, R); in getExtentSymbol()
235 SymbolMetadata::Profile(profile, R, S, T, LCtx, Count, SymbolTag); in getMetadataSymbol()
251 SymbolCast::Profile(ID, Op, From, To); in getCastSymbol()
267 SymIntExpr::Profile(ID, lhs, op, v, t); in getSymIntExpr()
284 IntSymExpr::Profile(ID, lhs, op, rhs, t); in getIntSymExpr()
301 SymSymExpr::Profile(ID, lhs, op, rhs, t); in getSymSymExpr()
317 UnarySymExpr::Profile(ID, Operand, Opc, T); in getUnarySymExpr()
H A DMemRegion.cpp224 void MemSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in MemSpaceRegion
228 void StackSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StackSpaceRegion
233 void StaticGlobalSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StaticGlobalSpaceRegion
263 void AllocaRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in AllocaRegion
267 void CompoundLiteralRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in CompoundLiteralRegion
287 void CXXThisRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in CXXThisRegion
291 void FieldRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in FieldRegion
303 void ObjCIvarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in ObjCIvarRegion
315 void NonParamVarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in NonParamVarRegion
327 void ParamVarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in ParamVarRegion
[all …]
/src/contrib/llvm-project/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.h55 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() function
60 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
61 Profile(profile, R); in Profile()
112 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() function
123 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
124 Profile(profile, S, T, Count, LCtx, SymbolTag); in Profile()
159 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent, in Profile() function
166 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
167 Profile(profile, parentSymbol, R); in Profile()
197 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.h118 virtual void Profile(llvm::FoldingSetNodeID& ID) const = 0;
221 void Profile(llvm::FoldingSetNodeID &ID) const override;
276 void Profile(llvm::FoldingSetNodeID &ID) const override;
407 void Profile(llvm::FoldingSetNodeID &ID) const override;
501 void Profile(llvm::FoldingSetNodeID& ID) const override;
618 void Profile(llvm::FoldingSetNodeID& ID) const override;
665 void Profile(llvm::FoldingSetNodeID& ID) const override;
763 void Profile(llvm::FoldingSetNodeID& ID) const override;
815 void Profile(llvm::FoldingSetNodeID& ID) const override;
851 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
/src/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h168 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
170 static void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context,
350 void Profile(llvm::FoldingSetNodeID &ID);
406 void Profile(llvm::FoldingSetNodeID &ID);
408 static void Profile(llvm::FoldingSetNodeID &ID, TemplateName Replacement,
469 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
470 Profile(ID, getQualifier(), hasTemplateKeyword(), UnderlyingTemplate); in Profile()
473 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, in Profile() function
567 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
569 Profile(ID, getQualifier(), getIdentifier()); in Profile()
[all …]
H A DType.h310 void Profile(llvm::FoldingSetNodeID &ID) const { ID.AddInteger(Data); }
809 void Profile(llvm::FoldingSetNodeID &ID) const { ID.AddInteger(Mask); }
1405 void Profile(llvm::FoldingSetNodeID &ID) const {
1760 void Profile(llvm::FoldingSetNodeID &ID) const {
1761 Profile(ID, getBaseType(), Quals);
1764 static void Profile(llvm::FoldingSetNodeID &ID,
1769 Quals.Profile(ID);
3123 void Profile(llvm::FoldingSetNodeID &ID) {
3124 Profile(ID, getElementType());
3127 static void Profile(llvm::FoldingSetNodeID &ID, QualType Element) {
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h234 static void Profile(const T &X, FoldingSetNodeID &ID) { in Profile() function
235 X.Profile(ID); in Profile()
237 static void Profile(T &X, FoldingSetNodeID &ID) { in Profile() function
238 X.Profile(ID); in Profile()
269 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { in Profile() function
270 X.Profile(ID, Context); in Profile()
371 inline void Add(const T &x) { FoldingSetTrait<T>::Profile(x, *this); } in Add()
420 FoldingSetTrait<T>::Profile(X, TempID); in Equals()
426 FoldingSetTrait<T>::Profile(X, TempID); in ComputeHash()
436 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()
/src/contrib/llvm-project/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()
267 void TemplateName::Profile(llvm::FoldingSetNodeID &ID) { in Profile() function in TemplateName
H A DTemplateBase.cpp386 void TemplateArgument::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in TemplateArgument
394 getAsType().Profile(ID); in Profile()
398 getNullPtrType().Profile(ID); in Profile()
402 getParamTypeForDecl().Profile(ID); in Profile()
414 getIntegralType().Profile(ID); in Profile()
415 getAsIntegral().Profile(ID); in Profile()
419 getStructuralValueType().Profile(ID); in Profile()
420 getAsStructuralValue().Profile(ID); in Profile()
424 getAsExpr()->Profile(ID, Context, true); in Profile()
430 Args.Args[I].Profile(ID, Context); in Profile()
[all …]
/src/contrib/llvm-project/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 …]
/src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h91 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
410 void Profile(llvm::FoldingSetNodeID &ID) const override;
432 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
455 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
535 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
560 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
589 void Profile(llvm::FoldingSetNodeID &ID) const override;
603 void Profile(llvm::FoldingSetNodeID &ID) const override;
/src/crypto/krb5/src/util/profile/
H A Dprof_err.et3 error_code PROF_VERSION, "Profile version 0.0"
9 error_code PROF_NO_SECTION, "Profile section not found"
10 error_code PROF_NO_RELATION, "Profile relation not found"
28 error_code PROF_SECTION_NOTOP, "Profile section header not at top level"
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DARMTargetDefEmitter.cpp187 StringRef Profile) -> std::string { in EmitARMTargetDef() argument
188 return Minor == 0 ? "ARMV" + std::to_string(Major) + Profile.upper() in EmitARMTargetDef()
190 std::to_string(Minor) + Profile.upper(); in EmitARMTargetDef()
311 auto Profile = Arch->getValueAsString("Profile"); in EmitARMTargetDef() local
312 auto ArchInfo = ArchInfoName(Major, Minor, Profile); in EmitARMTargetDef()
/src/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp205 D->Profile(profile); in HandlePathDiagnostic()
1087 void PathDiagnosticLocation::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticLocation
1093 void PathDiagnosticPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticPiece
1105 void PathDiagnosticCallPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticCallPiece
1106 PathDiagnosticPiece::Profile(ID); in Profile()
1111 void PathDiagnosticSpotPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticSpotPiece
1112 PathDiagnosticPiece::Profile(ID); in Profile()
1116 void PathDiagnosticControlFlowPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticControlFlowPiece
1117 PathDiagnosticPiece::Profile(ID); in Profile()
1122 void PathDiagnosticMacroPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticMacroPiece
[all …]
/src/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;
/src/contrib/llvm-project/llvm/lib/Support/
H A DAPSInt.cpp40 void APSInt::Profile(FoldingSetNodeID& ID) const { in Profile() function in APSInt
42 APInt::Profile(ID); in Profile()

12345678