Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp398 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
411 if (Info.requiresImmediateConstant() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
431 if (Info.allowsRegister()) { in ActOnGCCAsmStmt()
678 OutputConstraintInfos[TiedTo].allowsRegister()) { in ActOnGCCAsmStmt()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp791 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
796 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2367 !Info.allowsRegister()) { in AddVariableConstraints()
2381 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2407 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2424 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2745 const bool RequiresCast = Info.allowsRegister() && in EmitAsmStmt()
2832 if (Info.allowsRegister() && (GCCReg.empty() || Info.earlyClobber())) in EmitAsmStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1120 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister() function