Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmtAsm.cpp390 if (Info.allowsMemory() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
403 if (Info.requiresImmediateConstant() && !Info.allowsRegister()) { in ActOnGCCAsmStmt()
423 if (Info.allowsRegister()) { in ActOnGCCAsmStmt()
670 OutputConstraintInfos[TiedTo].allowsRegister()) { in ActOnGCCAsmStmt()
/llvm-project-15.0.7/clang/lib/Basic/
H A DTargetInfo.cpp698 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
703 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp2159 !Info.allowsRegister()) { in AddVariableConstraints()
2173 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2200 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2217 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2423 const bool RequiresCast = Info.allowsRegister() && in EmitAsmStmt()
2511 if (Info.allowsRegister() && (GCCReg.empty() || Info.earlyClobber())) in EmitAsmStmt()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetInfo.h1035 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister() function