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.h1967 Expr *AsmLabel; variable
2031 DeclarationAttrs(DeclarationAttrs), AsmLabel(nullptr), in Declarator()
2120 AsmLabel = nullptr; in clear()
2701 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2702 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp582 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
584 Str.get()->switchSection(AsmLabel); in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2254 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2255 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2259 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2716 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2717 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2720 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2608 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2609 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2614 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td986 def AsmLabel : InheritableAttr {