HomeSort by relevance Sort by last modified time
    Searched defs:Captured (Results 1 - 2 of 2) 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
39 : ReturnCaptures(ReturnCaptures), Captured(false) {}
41 void tooManyUses() override { Captured = true; }
43 bool captured(const Use *U) override {
47 Captured = true;
53 bool Captured;
65 ReturnCaptures(ReturnCaptures), IncludeI(IncludeI), Captured(false) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 321 : Captured(false), SCCNodes(SCCNodes) {}
323 void tooManyUses() override { Captured = true; }
325 bool captured(const Use *U) override {
328 Captured = true;
335 Captured = true;
353 // CaptureTracking told us that we're being captured by an operand bundle
355 // or not -- we've been captured in some unknown way, and we have to be
357 Captured = true;
363 Captured = true;
371 bool Captured; // True only if certainly captured (used outside our SCC)
    [all...]

Completed in 512 milliseconds