Home
last modified time | relevance | path

Searched refs:ProfileData (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
Dprofiledata.cc54 const int ProfileData::kMaxStackDepth;
55 const int ProfileData::kAssociativity;
56 const int ProfileData::kBuckets;
57 const int ProfileData::kBufferLength;
59 ProfileData::Options::Options() in Options()
65 void ProfileData::Evict(const Entry& entry) { in Evict()
79 ProfileData::ProfileData() in ProfileData() function in ProfileData
91 bool ProfileData::Start(const char* fname, in Start()
92 const ProfileData::Options& options) { in Start()
131 ProfileData::~ProfileData() { in ~ProfileData()
[all …]
Dprofiledata.h78 class ProfileData {
105 ProfileData();
106 ~ProfileData();
180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
Dprofiler.cc108 ProfileData collector_;
168 ProfileData::Options collector_options; in Start()
231 ProfileData::State collector_state; in GetCurrentState()
269 void* stack[ProfileData::kMaxStackDepth]; in prof_handler()
/external/chromium_org/third_party/tcmalloc/vendor/src/
Dprofiledata.cc54 const int ProfileData::kMaxStackDepth;
55 const int ProfileData::kAssociativity;
56 const int ProfileData::kBuckets;
57 const int ProfileData::kBufferLength;
59 ProfileData::Options::Options() in Options()
65 void ProfileData::Evict(const Entry& entry) { in Evict()
79 ProfileData::ProfileData() in ProfileData() function in ProfileData
91 bool ProfileData::Start(const char* fname, in Start()
92 const ProfileData::Options& options) { in Start()
131 ProfileData::~ProfileData() { in ~ProfileData()
[all …]
Dprofiledata.h78 class ProfileData {
105 ProfileData();
106 ~ProfileData();
180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
Dprofiler.cc106 ProfileData collector_;
166 ProfileData::Options collector_options; in Start()
229 ProfileData::State collector_state; in GetCurrentState()
267 void* stack[ProfileData::kMaxStackDepth]; in prof_handler()
/external/llvm/lib/Analysis/
DProfileDataLoaderPass.cpp65 virtual void readEdge(unsigned, ProfileData&, ProfileData::Edge,
67 virtual unsigned matchEdges(Module&, ProfileData&, ArrayRef<unsigned>);
68 virtual void setBranchWeightMetadata(Module&, ProfileData&);
94 ProfileData &PB, ProfileData::Edge e, in readEdge()
108 unsigned ProfileMetadataLoaderPass::matchEdges(Module &M, ProfileData &PB, in matchEdges()
134 ProfileData &PB) { in setBranchWeightMetadata()
152 ProfileData::Edge edge = PB.getEdge(BB, TI->getSuccessor(s)); in setBranchWeightMetadata()
173 ProfileData PB; in runOnModule()
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
Dprofiledata_unittest.cc323 ProfileData::State state; in ExpectRunningSamples()
329 void ExpectSameState(const ProfileData::State& before, in ExpectSameState()
330 const ProfileData::State& after) { in ExpectSameState()
337 ProfileData collector_;
378 ProfileData::State state_before; in TEST_F()
395 ProfileData::State state_after; in TEST_F()
410 ProfileData::Options options; in TEST_F()
433 ProfileData::Options())); in TEST_F()
452 ProfileData::Options options; in TEST_F()
456 ProfileData::State state_before; in TEST_F()
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
Dprofiledata_unittest.cc323 ProfileData::State state; in ExpectRunningSamples()
329 void ExpectSameState(const ProfileData::State& before, in ExpectSameState()
330 const ProfileData::State& after) { in ExpectSameState()
337 ProfileData collector_;
378 ProfileData::State state_before; in TEST_F()
395 ProfileData::State state_after; in TEST_F()
410 ProfileData::Options options; in TEST_F()
433 ProfileData::Options())); in TEST_F()
452 ProfileData::Options options; in TEST_F()
456 ProfileData::State state_before; in TEST_F()
[all …]
/external/chromium_org/chrome/browser/extensions/
Duser_script_listener.cc58 struct UserScriptListener::ProfileData { struct in extensions::UserScriptListener
66 ProfileData() : user_scripts_ready(false) {} in ProfileData() argument
174 ProfileData& data = profile_data_[profile_id]; in AppendNewURLPatterns()
185 ProfileData& data = profile_data_[profile_id]; in ReplaceURLPatterns()
Duser_script_listener.h91 struct ProfileData;
92 typedef std::map<void*, ProfileData> ProfileDataMap;
/external/llvm/include/llvm/Analysis/
DProfileDataLoader.h92 typedef ProfileDataT<Function, BasicBlock> ProfileData; typedef
/external/llvm/lib/IR/
DInstructions.cpp793 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); in swapSuccessors() local
794 if (!ProfileData || ProfileData->getNumOperands() != 3) in swapSuccessors()
799 ProfileData->getOperand(0), in swapSuccessors()
800 ProfileData->getOperand(2), in swapSuccessors()
801 ProfileData->getOperand(1) in swapSuccessors()
804 MDNode::get(ProfileData->getContext(), Ops)); in swapSuccessors()
/external/skia/gyp/
Dpoppler.gyp86 '../third_party/externals/poppler/poppler/ProfileData.cc',
/external/chromium_org/third_party/skia/gyp/
Dpoppler.gyp86 '../third_party/externals/poppler/poppler/ProfileData.cc',
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1915 MDNode *ProfileData = BI->getMetadata(LLVMContext::MD_prof); in ExtractBranchMetadata() local
1916 if (!ProfileData || ProfileData->getNumOperands() != 3) return false; in ExtractBranchMetadata()
1917 ConstantInt *CITrue = dyn_cast<ConstantInt>(ProfileData->getOperand(1)); in ExtractBranchMetadata()
1918 ConstantInt *CIFalse = dyn_cast<ConstantInt>(ProfileData->getOperand(2)); in ExtractBranchMetadata()
/external/chromium_org/third_party/tcmalloc/vendor/
DChangeLog395 * Add Options struct to ProfileData (cgd)
549 * Fixed race condition in ProfileData::FlushTable (etune)