Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DTargetInfo.cpp642 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
647 return Info.allowsMemory() || Info.allowsRegister(); in validateOutputConstraint()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp2039 !Info.allowsRegister()) { in AddVariableConstraints()
2056 if (Info.allowsRegister() || !Info.allowsMemory()) { in EmitAsmInputLValue()
2087 if (!Info.allowsRegister() && !Info.allowsMemory()) { in EmitAsmInput()
2103 if (Info.allowsRegister() || !Info.allowsMemory()) in EmitAsmInput()
2293 if (Info.allowsRegister() && isScalarizableAggregate) { in EmitAsmStmt()
2378 if (Info.allowsRegister() && (GCCReg.empty() || Info.earlyClobber())) in EmitAsmStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetInfo.h973 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister() function