Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmtAsm.cpp293 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
368 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
373 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
426 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp1791 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
1822 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
1840 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
1954 if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) { in EmitAsmStmt()
2050 if (Info.allowsMemory()) in EmitAsmStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp598 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h829 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function