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.cpp1714 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
1745 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
1753 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
1867 if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) { in EmitAsmStmt()
1954 if (Info.allowsMemory()) in EmitAsmStmt()
/external/clang/lib/Basic/
DTargetInfo.cpp509 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/external/clang/include/clang/Basic/
DTargetInfo.h623 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory() function