Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
444 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp2173 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2200 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2217 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2413 if (!Info.allowsMemory() && IsScalarOrAggregate) { in EmitAsmStmt()
2541 if (Info.allowsMemory()) in EmitAsmStmt()
/llvm-project-15.0.7/clang/lib/Basic/
H A DTargetInfo.cpp703 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetInfo.h1036 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function