Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaStmtAsm.cpp390 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
396 } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
422 if (Info.allowsRegister()) { in ActOnGCCAsmStmt()
669 OutputConstraintInfos[TiedTo].allowsRegister()) in ActOnGCCAsmStmt()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DTargetInfo.cpp664 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
669 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp2077 !Info.allowsRegister()) { in AddVariableConstraints()
2094 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2126 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2142 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2334 const bool RequiresCast = Info.allowsRegister() && in EmitAsmStmt()
2422 if (Info.allowsRegister() && (GCCReg.empty() || Info.earlyClobber())) in EmitAsmStmt()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DTargetInfo.h973 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister() function