Home
last modified time | relevance | path

Searched refs:ParamMoves (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtCXX.cpp90 CoroutineBodyStmt::FirstParamMove + Args.ParamMoves.size()); in Create()
111 : Stmt(CoroutineBodyStmtClass), NumParams(Args.ParamMoves.size()) { in CoroutineBodyStmt()
126 std::copy(Args.ParamMoves.begin(), Args.ParamMoves.end(), in CoroutineBodyStmt()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp846 llvm::ArrayRef<const Stmt *> ParamMoves = S.getParamMoves(); in EmitCoroutineBody() local
848 (ParamMoves.size() == 0 || (ParamMoves.size() == FnArgs.size())) && in EmitCoroutineBody()
850 if (ParamMoves.size() == FnArgs.size() && DI) in EmitCoroutineBody()
851 for (const auto Pair : llvm::zip(FnArgs, ParamMoves)) in EmitCoroutineBody()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h361 ArrayRef<Stmt *> ParamMoves; member
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1168 this->ParamMoves = this->ParamMovesVector; in CoroutineStmtBuilder()