HomeSort by: relevance | last modified time | path
    Searched refs:CQueue (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
CSPreInliner.cpp 62 bool CSPreInliner::getInlineCandidates(ProfiledCandidateQueue &CQueue,
95 CQueue.emplace(CalleeSamples, std::max(CallsiteCount, CalleeEntryCount));
138 ProfiledCandidateQueue CQueue;
139 getInlineCandidates(CQueue, FSamples);
141 while (!CQueue.empty() && FuncFinalSize < SizeLimit) {
142 ProfiledInlineCandidate Candidate = CQueue.top();
143 CQueue.pop();
152 getInlineCandidates(CQueue, Candidate.CalleeSamples);
162 if (!CQueue.empty())
168 while (!CQueue.empty())
    [all...]
CSPreInliner.h 75 bool getInlineCandidates(ProfiledCandidateQueue &CQueue,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 1315 CandidateQueue CQueue;
1323 CQueue.push(NewCandidate);
1342 while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) {
1343 InlineCandidate Candidate = CQueue.top();
1344 CQueue.pop();
1388 CQueue.emplace(NewCandidate);
1399 CQueue.emplace(NewCandidate);
1409 if (!CQueue.empty()) {

Completed in 19 milliseconds