Searched refs:InlineHistoryID (Results 1 – 3 of 3) 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 440 Function *F, int InlineHistoryID, in InlineHistoryIncludes() argument 442 while (InlineHistoryID != -1) { in InlineHistoryIncludes() 443 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in InlineHistoryIncludes() 445 if (InlineHistory[InlineHistoryID].first == F) in InlineHistoryIncludes() 447 InlineHistoryID = InlineHistory[InlineHistoryID].second; in InlineHistoryIncludes() 567 int InlineHistoryID; in inlineCallsImpl() local 574 InlineHistoryID = CallSites[CSi].second; in inlineCallsImpl() 575 if (InlineHistoryID != -1 && in inlineCallsImpl() 576 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory)) in inlineCallsImpl() 610 InlineHistoryID, InsertLifetime, AARGetter, in inlineCallsImpl() [all …]
|
/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()
|