Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Captures

1438 /// Find all local variable captures in the statement.
1442 llvm::SmallSetVector<const VarDecl *, 4> Captures;
1449 return !Captures.empty() || SEHCodeSlot.isValid();
1463 Captures.insert(ParentThis);
1469 Captures.insert(D);
1473 Captures.insert(ParentThis);
1539 // Find all captures in the Stmt.
1543 // We can exit early on x86_64 when there are no captures. We just have to
1580 // Create llvm.localrecover calls for all captures.
1581 for (const VarDecl *VD : Finder.Captures) {