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
36 : ReturnCaptures(ReturnCaptures), Captured(false) {}
38 void tooManyUses() { Captured = true; }
40 bool captured(Use *U) { function in struct:__anon11344::SimpleCaptureTracker
44 Captured = true;
50 bool Captured;
54 /// PointerMayBeCaptured - Return true if this pointer value may be captured
    [all...]
AliasAnalysis.cpp 388 : BeforeHere(I), DT(DT), Captured(false) {}
390 void tooManyUses() { Captured = true; }
408 bool captured(Use *U) { function in struct:__anon11333::CapturesBefore
417 Captured = true;
424 bool Captured;
430 // was captured before or after this particular call, while we are. However,
449 if (CB.Captured)
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 281 : Captured(false), SCCNodes(SCCNodes) {}
283 void tooManyUses() { Captured = true; }
285 bool captured(Use *U) { function in struct:__anon11820::ArgumentUsesTracker
287 if (!CS.getInstruction()) { Captured = true; return true; }
290 if (!F || !SCCNodes.count(F)) { Captured = true; return true; }
297 Captured = true;
305 assert(!Uses.empty() && "Capturing call-site captured nothing?");
309 bool Captured; // True only if certainly captured (used outside our SCC).
363 // captured
    [all...]
  /external/v8/src/
d8.js     [all...]

Completed in 108 milliseconds