Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaStmtAsm.cpp194 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
274 if (Info.allowsMemory() && in ActOnGCCAsmStmt()
279 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
322 if (!Ty->isVoidType() || !Info.allowsMemory()) in ActOnGCCAsmStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp1657 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
1688 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
1696 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
1810 if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) { in EmitAsmStmt()
1897 if (Info.allowsMemory()) in EmitAsmStmt()
/external/clang/lib/Basic/
DTargetInfo.cpp500 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/external/clang/include/clang/Basic/
DTargetInfo.h585 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function