Home
last modified time | relevance | path

Searched refs:NoEscape (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h415 unsigned NoEscape : 1; variable
424 : NoEscapeSpecified(false), NoEscape(false), RawRetainCountConvention() {} in ParamInfo()
429 return NoEscape; in isNoEscape()
433 NoEscape = Value.value_or(false); in setNoEscape()
452 NoEscape = RHS.NoEscape;
469 LHS.NoEscape == RHS.NoEscape &&
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp67 OS << (NoEscape ? "[NoEscape] " : ""); in dump()
H A DAPINotesYAMLCompiler.cpp72 std::optional<bool> NoEscape = false; member
123 IO.mapOptional("NoEscape", P.NoEscape); in mapping()
690 PI.setNoEscape(P.NoEscape); in convertParams()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.h249 bool NoEscape : 1; variable
H A DCGBlocks.cpp37 NoEscape(false), HasCXXObject(false), UsesStret(false), in CGBlockInfo()
405 if (Info.NoEscape) in addBlockLayout()
568 info.NoEscape = true; in computeBlockInfo()
807 llvm::Constant *blockISA = blockInfo.NoEscape in EmitBlockLiteral()
825 if (blockInfo.NoEscape) in EmitBlockLiteral()
1014 if (!blockInfo.NoEscape && !blockInfo.NeedsCopyDispose) in EmitBlockLiteral()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3861 ExtParameterInfo withIsNoEscape(bool NoEscape) const {
3863 if (NoEscape)
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2180 def NoEscape : Attr {