Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp469 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssembler() local
471 Str.get()->SwitchSection(AsmLabel); in ExecuteAssembler()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1816 Expr *AsmLabel; variable
1847 Attrs(ds.getAttributePool().getFactory()), AsmLabel(nullptr) {} in Declarator()
1927 AsmLabel = nullptr; in clear()
2430 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2431 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp1831 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXCondition() local
1832 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
1836 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2292 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2293 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2296 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2115 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseAsmAttributesAfterDeclarator() local
2116 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2121 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td700 def AsmLabel : InheritableAttr {