Home
last modified time | relevance | path

Searched refs:AsmLabel (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/tools/driver/
H A Dcc1as_main.cpp520 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
522 Str.get()->switchSection(AsmLabel); in ExecuteAssemblerImpl()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h1863 Expr *AsmLabel; variable
1925 DeclarationAttrs(DeclarationAttrs), AsmLabel(nullptr), in Declarator()
2013 AsmLabel = nullptr; in clear()
2585 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2586 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseExprCXX.cpp2096 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2097 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2101 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2418 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2419 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2422 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2262 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2263 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2268 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXCursor.cpp57 case attr::AsmLabel: in GetCursorKind()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td857 def AsmLabel : InheritableAttr {