HomeSort by relevance Sort by last modified time
    Searched refs:Captured (Results 1 - 10 of 10) 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/clang/lib/Serialization/
ASTCommon.cpp 238 case Decl::Captured:
328 case Decl::Captured:
  /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...]
  /external/clang/lib/AST/
DeclBase.cpp 637 case Captured:
954 case Decl::Captured:
    [all...]
Expr.cpp 668 if (DC->isFunctionOrMethod() && (DC->getDeclKind() != Decl::Captured)) {
    [all...]
  /external/clang/include/clang/AST/
Decl.h     [all...]
DeclBase.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 136 case Decl::Captured:
CGDecl.cpp 81 case Decl::Captured:
243 // We can't name blocks or captured statements directly, so try to emit their
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 1093 milliseconds