Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAsm.cpp295 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
385 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
390 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
443 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp2056 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2087 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2103 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2287 if (!Info.allowsMemory() && (hasScalarEvaluationKind(OutExpr->getType()) || in EmitAsmStmt()
2407 if (Info.allowsMemory()) in EmitAsmStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DTargetInfo.cpp647 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetInfo.h974 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function