Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmtAsm.cpp373 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
379 } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
411 if (Info.allowsRegister()) { in ActOnGCCAsmStmt()
627 OutputConstraintInfos[TiedTo].allowsRegister()) in ActOnGCCAsmStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp593 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
598 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp1776 !Info.allowsRegister()) { in AddVariableConstraints()
1791 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
1822 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
1840 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2021 if (Info.allowsRegister()) in EmitAsmStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h828 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister() function