HomeSort by relevance Sort by last modified time
    Searched refs:CallSites (Results 1 - 22 of 22) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BasicInliner.cpp 78 std::vector<CallSite> CallSites;
88 CallSites.push_back(CS);
92 DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
98 for (unsigned index = 0; index != CallSites.size() && !CallSites.empty();
100 CallSite CS = CallSites[index];
106 CallSites.erase(CallSites.begin() + index);
138 CallSites.erase(CallSites.begin() + index)
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 393 SmallVector<std::pair<CallSite, int>, 16> CallSites;
420 CallSites.push_back(std::make_pair(CS, -1));
424 DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
427 if (CallSites.empty())
432 unsigned FirstCallInSCC = CallSites.size();
434 if (Function *F = CallSites[i].first.getCalledFunction())
436 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
450 // CallSites may be modified inside so ranged for loop can not be used.
451 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
    [all...]
WholeProgramDevirt.cpp 274 MutableArrayRef<VirtualCallSite> CallSites);
280 MutableArrayRef<VirtualCallSite> CallSites);
283 MutableArrayRef<VirtualCallSite> CallSites);
285 ArrayRef<VirtualCallSite> CallSites);
396 MutableArrayRef<VirtualCallSite> CallSites) {
405 for (auto &&VCallSite : CallSites) {
445 MutableArrayRef<VirtualCallSite> CallSites) {
454 for (auto Call : CallSites)
461 MutableArrayRef<VirtualCallSite> CallSites) {
478 for (auto &&Call : CallSites) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 345 SmallVector<std::pair<CallSite, int>, 16> CallSites;
371 CallSites.push_back(std::make_pair(CS, -1));
375 DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
378 if (CallSites.empty())
383 unsigned FirstCallInSCC = CallSites.size();
385 if (Function *F = CallSites[i].first.getCalledFunction())
387 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
401 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) {
402 CallSite CS = CallSites[CSi].first
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 215 computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
264 CallSites.push_back(Site);
285 CallSiteEntry &Prev = CallSites.back();
295 CallSites.push_back(Site);
300 if (CallSites.size() < SiteNo)
301 CallSites.resize(SiteNo);
302 CallSites[SiteNo - 1] = Site;
314 CallSites.push_back(Site);
364 SmallVector<CallSiteEntry, 64> CallSites;
365 computeCallSiteTable(CallSites, LandingPads, FirstActions)
    [all...]
EHStreamer.h 87 void computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfException.cpp 226 ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
273 CallSites.push_back(Site);
294 CallSiteEntry &Prev = CallSites.back();
304 CallSites.push_back(Site);
309 if (CallSites.size() < SiteNo)
310 CallSites.resize(SiteNo);
311 CallSites[SiteNo - 1] = Site;
323 CallSites.push_back(Site);
383 SmallVector<CallSiteEntry, 64> CallSites;
384 ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions)
    [all...]
DwarfException.h 118 void ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisEvaluator.cpp 135 SetVector<CallSite> CallSites;
155 CallSites.insert(CS);
168 << " pointers, " << CallSites.size() << " call sites\n";
203 for (SetVector<CallSite>::iterator C = CallSites.begin(),
204 Ce = CallSites.end(); C != Ce; ++C) {
233 for (SetVector<CallSite>::iterator C = CallSites.begin(),
234 Ce = CallSites.end(); C != Ce; ++C) {
235 for (SetVector<CallSite>::iterator D = CallSites.begin(); D != Ce; ++D) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 224 computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
273 CallSites.push_back(Site);
294 CallSiteEntry &Prev = CallSites.back();
304 CallSites.push_back(Site);
309 if (CallSites.size() < SiteNo)
310 CallSites.resize(SiteNo);
311 CallSites[SiteNo - 1] = Site;
323 CallSites.push_back(Site);
373 SmallVector<CallSiteEntry, 64> CallSites;
374 computeCallSiteTable(CallSites, LandingPads, FirstActions)
    [all...]
EHStreamer.h 88 void computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
  /external/llvm/lib/Analysis/
CallGraphSCCPass.cpp 180 DenseMap<Value*, CallGraphNode*> CallSites;
214 CallSites.count(I->first) ||
248 assert(!CallSites.count(I->first) &&
256 CallSites.insert(std::make_pair(I->first, I->second));
261 // Loop over all of the instructions in the function, getting the callsites.
273 // matches up to expectations and remove it from CallSites.
275 CallSites.find(CS.getInstruction());
276 if (ExistingIt != CallSites.end()) {
279 // Remove from CallSites since we have now seen it.
280 CallSites.erase(ExistingIt)
    [all...]
AliasAnalysisEvaluator.cpp 102 SmallSetVector<CallSite, 16> CallSites;
127 CallSites.insert(CS);
140 << " pointers, " << CallSites.size() << " call sites\n";
238 for (CallSite C : CallSites) {
270 for (auto C = CallSites.begin(), Ce = CallSites.end(); C != Ce; ++C) {
271 for (auto D = CallSites.begin(); D != Ce; ++D) {
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
CallGraphSCCPass.cpp 172 DenseMap<Value*, CallGraphNode*> CallSites;
207 CallSites.count(I->first) ||
236 assert(!CallSites.count(I->first) &&
238 CallSites.insert(std::make_pair(I->first, I->second));
242 // Loop over all of the instructions in the function, getting the callsites.
252 // matches up to expectations and remove it from CallSites.
254 CallSites.find(CS.getInstruction());
255 if (ExistingIt != CallSites.end()) {
258 // Remove from CallSites since we have now seen it.
259 CallSites.erase(ExistingIt)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CallGraphSCCPass.cpp 193 DenseMap<Value*, CallGraphNode*> CallSites;
226 CallSites.count(I->first) ||
260 assert(!CallSites.count(I->first) &&
268 CallSites.insert(std::make_pair(I->first, I->second));
273 // Loop over all of the instructions in the function, getting the callsites.
285 // matches up to expectations and remove it from CallSites.
287 CallSites.find(CS.getInstruction());
288 if (ExistingIt != CallSites.end()) {
291 // Remove from CallSites since we have now seen it.
292 CallSites.erase(ExistingIt)
    [all...]
AliasAnalysisEvaluator.cpp 101 SmallSetVector<CallSite, 16> CallSites;
126 CallSites.insert(CS);
139 << " pointers, " << CallSites.size() << " call sites\n";
231 for (CallSite C : CallSites) {
282 for (auto C = CallSites.begin(), Ce = CallSites.end(); C != Ce; ++C) {
283 for (auto D = CallSites.begin(); D != Ce; ++D) {
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 296 SmallVector<CallSiteEntry, 64> CallSites;
342 CallSites.push_back(Site);
353 if (CallSites.size()) {
354 CallSiteEntry &Prev = CallSites.back();
363 CallSites.push_back(Site);
371 CallSites.push_back(Site);
375 unsigned SizeSites = CallSites.size() * (sizeof(int32_t) + // Site start.
378 for (unsigned i = 0, e = CallSites.size(); i < e; ++i)
379 SizeSites += MCAsmInfo::getULEB128Size(CallSites[i].Action);
407 for (unsigned i = 0; i < CallSites.size(); ++i)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
Inliner.cpp 484 SmallVector<std::pair<CallSite, int>, 16> CallSites;
523 CallSites.push_back(std::make_pair(CS, -1));
527 LLVM_DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
530 if (CallSites.empty())
535 unsigned FirstCallInSCC = CallSites.size();
537 if (Function *F = CallSites[i].first.getCalledFunction())
539 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
552 // CallSites may be modified inside so ranged for loop can not be used.
553 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
    [all...]
WholeProgramDevirt.cpp 323 std::vector<VirtualCallSite> CallSites;
403 CSI.CallSites.push_back({VTable, CS, NumUnsafeUses});
756 for (auto &&VCallSite : CSInfo.CallSites) {
    [all...]
LowerTypeTests.cpp 350 std::vector<CallInst *> CallSites;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 512 // Lifted callsites.
513 SmallVector<ImmutableCallSite, 8> CallSites;
530 NeedLift = std::any_of(CallSites.begin(), CallSites.end(),
545 CallSites.push_back(CS);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 546 // Lifted callsites.
547 SmallVector<ImmutableCallSite, 8> CallSites;
566 llvm::any_of(CallSites, [C, &AA](const ImmutableCallSite &CS) {
584 CallSites.push_back(CS);
    [all...]

Completed in 399 milliseconds