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

1 2 3

  /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
40 : ReturnCaptures(ReturnCaptures), Captured(false) {}
42 void tooManyUses() override { Captured = true; }
44 bool captured(const Use *U) override {
48 Captured = true;
54 bool Captured;
66 ReturnCaptures(ReturnCaptures), IncludeI(IncludeI), Captured(false) {
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 210 case Decl::Captured:
303 case Decl::Captured:
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 276 : Captured(false), SCCNodes(SCCNodes) {}
278 void tooManyUses() override { Captured = true; }
280 bool captured(const Use *U) override {
283 Captured = true;
289 Captured = true;
307 // CaptureTracking told us that we're being captured by an operand bundle
309 // or not -- we've been captured in some unknown way, and we have to be
311 Captured = true;
317 Captured = true;
325 bool Captured; // True only if certainly captured (used outside our SCC)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
DeclBase.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
DeclBase.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
DeclBase.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
DeclBase.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
DeclBase.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
DeclNodes.inc 32 #ifndef CAPTURED
33 # define CAPTURED(Type, Base) DECL(Type, Base)
35 CAPTURED(Captured, Decl)
36 #undef CAPTURED
580 DECL_CONTEXT(Captured)
  /external/clang/lib/AST/
DeclBase.cpp 679 case Captured:
997 case Decl::Captured:
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 141 case Decl::Captured:

Completed in 1252 milliseconds

1 2 3