HomeSort by: relevance | last modified time | path
    Searched defs:Profile (Results 1 - 25 of 87) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APSInt.cpp 40 void APSInt::Profile(FoldingSetNodeID& ID) const {
42 APInt::Profile(ID);
APInt.cpp 159 void APInt::Profile(FoldingSetNodeID& ID) const {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTConcept.cpp 61 void ConstraintSatisfaction::Profile(
67 Arg.Profile(ID, C);
TemplateName.cpp 40 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) {
41 Profile(ID, Parameter, Replacement);
44 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID,
51 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
53 Profile(ID, Context, Parameter, getArgumentPack());
56 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
61 ArgPack.Profile(ID, Context);
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 42 void Profile(llvm::FoldingSetNodeID &ID) const {
Environment.h 43 /// Profile an EnvironmentEntry for inclusion in a FoldingSet.
44 static void Profile(llvm::FoldingSetNodeID &ID,
50 void Profile(llvm::FoldingSetNodeID &ID) const {
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) {
81 env->ExprBindings.Profile(ID);
84 /// Profile - Used to profile the contents of this object for inclusio
    [all...]
DynamicCastInfo.h 41 void Profile(llvm::FoldingSetNodeID &ID) const {
RangedConstraintManager.h 46 void Profile(llvm::FoldingSetNodeID &ID) const {
97 void Profile(llvm::FoldingSetNodeID &ID) const {
99 It.Profile(ID);
251 static void Profile(llvm::FoldingSetNodeID &ID, const RangeSet &RS) {
255 /// Profile - Generates a hash profile of this RangeSet for use
257 void Profile(llvm::FoldingSetNodeID &ID) const { Profile(ID, *this); }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 33 void Profile(llvm::FoldingSetNodeID &Id) const {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
GIMatchDagOperands.cpp 15 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID) const {
16 Profile(ID, Idx, Name, IsDef);
19 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID, size_t Idx,
32 void GIMatchDagOperandList::Profile(FoldingSetNodeID &ID) const {
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(ID, 1, "mi0", false)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 39 void Profile(llvm::FoldingSetNodeID &ID) const {
BasicValueFactory.cpp 32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T,
34 T.Profile(ID);
38 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID,
45 void PointerToMemberData::Profile(
58 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) {
59 X.first.Profile(ID);
65 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) {
66 X.first.Profile(ID);
67 X.second.Profile(ID);
96 X.Profile(ID)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 189 void RecordRecTy::Profile(FoldingSetNodeID &ID) const {
349 void BitsInit::Profile(FoldingSetNodeID &ID) const {
583 void ListInit::Profile(FoldingSetNodeID &ID) const {
713 void UnOpInit::Profile(FoldingSetNodeID &ID) const {
879 void BinOpInit::Profile(FoldingSetNodeID &ID) const {
1206 void TernOpInit::Profile(FoldingSetNodeID &ID) const {
1500 void FoldOpInit::Profile(FoldingSetNodeID &ID) const {
1565 void IsAOpInit::Profile(FoldingSetNodeID &ID) const {
1822 void VarDefInit::Profile(FoldingSetNodeID &ID) const {
1986 void CondOpInit::Profile(FoldingSetNodeID &ID) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
Profile.h 1 //===- 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.
32 /// This function will attempt to load an XRay Profiling Mode profile from the
35 /// For any errors encountered in the loading of the profile data from
37 Expected<Profile> loadProfile(StringRef Filename);
39 /// This algorithm will merge two Profile instances into a single Profil
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp 1 //=-- ProfilesummaryBuilder.cpp - Profile summary computation ---------------=//
9 // This file contains support for computing profile summary data.
26 "profile-summary-contextless", cl::Hidden, cl::init(false), cl::ZeroOrMore,
37 "profile-summary-cutoff-hot", cl::Hidden, cl::init(990000), cl::ZeroOrMore,
42 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999), cl::ZeroOrMore,
47 "profile-summary-huge-working-set-size-threshold", cl::Hidden,
50 " blocks required to reach the -profile-summary-cutoff-hot"
54 "profile-summary-large-working-set-size-threshold", cl::Hidden,
57 " blocks required to reach the -profile-summary-cutoff-hot"
63 "profile-summary-hot-count", cl::ReallyHidden, cl::ZeroOrMore
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
profile_collector_test.cc 85 struct Profile {
91 std::tuple<Profile, const char *> ParseProfile(const char *P) {
92 Profile Result;
135 // Then we post the data to the global profile collector service.
163 Profile Profile1, Profile2;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTConcept.h 55 void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &C) {
56 Profile(ID, C, ConstraintOwner, TemplateArgs);
59 static void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &C,
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp 57 void llvm::FoldingSetTrait<SourceLocation>::Profile(
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
Iterator.h 70 void Profile(llvm::FoldingSetNodeID &ID) const {
108 void Profile(llvm::FoldingSetNodeID &ID) const {
PointerArithChecker.cpp 36 static inline void Profile(AllocKind X, FoldingSetNodeID &ID) {
TestAfterDivZeroChecker.cpp 50 void Profile(llvm::FoldingSetNodeID &ID) const {
67 void Profile(llvm::FoldingSetNodeID &ID) const override {
VirtualCallChecker.cpp 35 static inline void Profile(ObjectState X, FoldingSetNodeID &ID) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObject.h 104 void Profile(llvm::FoldingSetNodeID &ID) const { ID.AddPointer(this); }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 40 /// Profile - Used to gather unique data for the abbreviation folding set.
42 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
55 /// Profile - Used to gather unique data for the abbreviation folding set.
57 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
63 Data[i].Profile(ID);
150 Abbrev.Profile(ID);
  /src/external/gpl3/gcc/dist/contrib/
analyze_brprob.py 34 # Step 1: Compile and profile your program. You need to use -fprofile-generate
37 # Step 3: Compile the program with collected profile and dump IPA profiles
38 # (-fprofile-use -fdump-ipa-profile-details)
40 # find . -name '*.profile' | xargs cat > dump_file
223 class Profile:
304 help = 'IPA profile dump file')
317 profile = Profile(args.dump_file) variable
318 loop_niter_str = ';; profile-based iteration count: '
329 profile.add(name, prediction, count, hits
    [all...]

Completed in 26 milliseconds

1 2 3 4