Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1908 Expr *AsmLabel; variable
1970 DeclarationAttrs(DeclarationAttrs), AsmLabel(nullptr), in Declarator()
2059 AsmLabel = nullptr; in clear()
2623 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2624 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/freebsd-14.2/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp555 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
557 Str.get()->switchSection(AsmLabel); in ExecuteAssemblerImpl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2155 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2156 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2160 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2548 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2549 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2552 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2420 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2421 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2426 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td932 def AsmLabel : InheritableAttr {