Home
last modified time | relevance | path

Searched refs:LabelLoc (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp488 SMLoc LabelLoc = getTok().getLoc(); in ParseDirectiveEndProc() local
490 return Error(LabelLoc, "expected identifier for procedure end"); in ParseDirectiveEndProc()
495 return Error(LabelLoc, "endp does not match current procedure '" + in ParseDirectiveEndProc()
H A DAsmParser.cpp6240 SMLoc LabelLoc = LabelTok.getLoc(); in parseAsHLASMLabel() local
6244 return Error(LabelLoc, "The HLASM Label has to be an Identifier"); in parseAsHLASMLabel()
6258 return Error(LabelLoc, in parseAsHLASMLabel()
6266 getTargetParser().doBeforeLabelEmit(Sym, LabelLoc); in parseAsHLASMLabel()
6269 Out.emitLabel(Sym, LabelLoc); in parseAsHLASMLabel()
6275 LabelLoc); in parseAsHLASMLabel()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h2651 SourceLocation LabelLoc; variable
2655 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { in GotoStmt()
2667 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
2668 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
H A DExpr.h4312 SourceLocation AmpAmpLoc, LabelLoc; variable
4318 LabelLoc(LLoc), Label(L) { in AddrLabelExpr()
4328 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
4329 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
4332 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1143 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
1154 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
1163 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp3283 SourceLocation LabelLoc, in ActOnGotoStmt() argument
3287 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
H A DTreeTransform.h1435 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1437 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
2954 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
2955 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5143 SourceLocation LabelLoc,