Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmtAsm.cpp296 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
391 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
396 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
450 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp2184 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2211 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2228 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2424 if (!Info.allowsMemory() && IsScalarOrAggregate) { in EmitAsmStmt()
2552 if (Info.allowsMemory()) in EmitAsmStmt()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DTargetInfo.cpp783 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTargetInfo.h1060 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function