Home
last modified time | relevance | path

Searched defs:ArgumentUsesTracker (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp274 struct ArgumentUsesTracker : public CaptureTracker { struct
275 ArgumentUsesTracker(const SCCNodeSet &SCCNodes) in ArgumentUsesTracker() argument
278 void tooManyUses() override { Captured = true; } in tooManyUses()
280 bool captured(const Use *U) override { in captured()
325 bool Captured; // True only if certainly captured (used outside our SCC).
326 SmallVector<Argument *, 4> Uses; // Uses within our SCC.
328 const SCCNodeSet &SCCNodes;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp318 struct ArgumentUsesTracker : public CaptureTracker { struct
319 ArgumentUsesTracker(const SCCNodeSet &SCCNodes) : SCCNodes(SCCNodes) {} in ArgumentUsesTracker() function
321 void tooManyUses() override { Captured = true; } in tooManyUses()
323 bool captured(const Use *U) override { in captured()
369 bool Captured = false;
372 SmallVector<Argument *, 4> Uses;
374 const SCCNodeSet &SCCNodes;