Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp298 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
393 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
398 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
452 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2381 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2407 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2424 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2735 if (!Info.allowsMemory() && IsScalarOrAggregate) { in EmitAsmStmt()
2862 if (Info.allowsMemory()) in EmitAsmStmt()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp796 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1121 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function