Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1970 Expr *AsmLabel; variable
2034 DeclarationAttrs(DeclarationAttrs), AsmLabel(nullptr), in Declarator()
2123 AsmLabel = nullptr; in clear()
2704 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2705 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp593 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
595 Str->switchSection(AsmLabel); in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2004 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2005 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2009 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2599 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2600 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2603 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2443 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2444 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2449 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td1059 def AsmLabel : InheritableAttr {