Searched refs:InlineHistoryID (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | Inliner.cpp | 317 static bool InlineHistoryIncludes(Function *F, int InlineHistoryID, in InlineHistoryIncludes() argument 319 while (InlineHistoryID != -1) { in InlineHistoryIncludes() 320 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in InlineHistoryIncludes() 322 if (InlineHistory[InlineHistoryID].first == F) in InlineHistoryIncludes() 324 InlineHistoryID = InlineHistory[InlineHistoryID].second; in InlineHistoryIncludes() 429 int InlineHistoryID = CallSites[CSi].second; in runOnSCC() local 430 if (InlineHistoryID != -1 && in runOnSCC() 431 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory)) in runOnSCC() 442 InlineHistoryID)) in runOnSCC() 452 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID)); in runOnSCC()
|
/external/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 358 static bool InlineHistoryIncludes(Function *F, int InlineHistoryID, in InlineHistoryIncludes() argument 360 while (InlineHistoryID != -1) { in InlineHistoryIncludes() 361 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in InlineHistoryIncludes() 363 if (InlineHistory[InlineHistoryID].first == F) in InlineHistoryIncludes() 365 InlineHistoryID = InlineHistory[InlineHistoryID].second; in InlineHistoryIncludes() 477 int InlineHistoryID = CallSites[CSi].second; in inlineCalls() local 478 if (InlineHistoryID != -1 && in inlineCalls() 479 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory)) in inlineCalls() 499 InlineHistoryID, InsertLifetime)) { in inlineCalls() 519 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID)); in inlineCalls()
|