Searched defs:Captured (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DCaptureTracking.cpp36 : ReturnCaptures(ReturnCaptures), Captured(false) {}
38 void tooManyUses() override { Captured = true; }
44 Captured = true;
50 bool Captured; member in struct:__anon25672::SimpleCaptureTracker
74 return SCT.Captured;
H A DAliasAnalysis.cpp393 : BeforeHere(I), DT(DT), Captured(false) {}
395 void tooManyUses() override { Captured = true; }
422 Captured = true;
429 bool Captured; member in struct:__anon25661::CapturesBefore
454 if (CB.Captured)
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp344 : Captured(false), SCCNodes(SCCNodes) {}
346 void tooManyUses() override { Captured = true; }
350 if (!CS.getInstruction()) { Captured = true; return true; }
353 if (!F || !SCCNodes.count(F)) { Captured = true; return true; }
361 Captured = true;
375 bool Captured; // True only if certainly captured (used outside our SCC). member in struct:__anon26225::ArgumentUsesTracker
573 if (!Tracker.Captured) {

Completed in 255 milliseconds