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

  /external/llvm/lib/Analysis/
CaptureTracking.cpp 1 //===--- CaptureTracking.cpp - Determine whether a pointer is captured ----===//
10 // This file contains routines that help determine which pointers are captured.
11 // A pointer value is captured if the function makes a copy of any part of the
12 // pointer that outlives the call. Not being captured means, more or less, that
29 : ReturnCaptures(ReturnCaptures), Captured(false) {}
31 void tooManyUses() { Captured = true; }
35 bool captured(Use *U) { function in struct:__anon8839::SimpleCaptureTracker
39 Captured = true;
45 bool Captured;
49 /// PointerMayBeCaptured - Return true if this pointer value may be captured
    [all...]
MemoryDependenceAnalysis.cpp 347 : BeforeHere(I), DT(DT), Captured(false) {}
349 void tooManyUses() { Captured = true; }
360 bool captured(Use *U) { function in struct:__anon8858::CapturesBefore
366 Captured = true;
373 bool Captured;
385 // was captured before or after this particular call, while we are. However,
397 if (isa<Constant>(Object) || CS.getInstruction() == Object || CB.Captured)
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 275 : Captured(false), SCCNodes(SCCNodes) {}
277 void tooManyUses() { Captured = true; }
281 bool captured(Use *U) { function in struct:__anon9284::ArgumentUsesTracker
283 if (!CS.getInstruction()) { Captured = true; return true; }
286 if (!F || !SCCNodes.count(F)) { Captured = true; return true; }
293 Captured = true;
301 assert(!Uses.empty() && "Capturing call-site captured nothing?");
305 bool Captured; // True only if certainly captured (used outside our SCC).
356 // captured
    [all...]
  /external/v8/src/
d8.js     [all...]

Completed in 635 milliseconds