Searched refs:LabelLoc (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 488 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 D | AsmParser.cpp | 6254 SMLoc LabelLoc = LabelTok.getLoc(); in parseAsHLASMLabel() local 6258 return Error(LabelLoc, "The HLASM Label has to be an Identifier"); in parseAsHLASMLabel() 6272 return Error(LabelLoc, in parseAsHLASMLabel() 6280 getTargetParser().doBeforeLabelEmit(Sym, LabelLoc); in parseAsHLASMLabel() 6283 Out.emitLabel(Sym, LabelLoc); in parseAsHLASMLabel() 6289 LabelLoc); in parseAsHLASMLabel()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 2862 SourceLocation LabelLoc; variable 2866 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { in GotoStmt() 2878 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 2879 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
|
| H A D | Expr.h | 4310 SourceLocation AmpAmpLoc, LabelLoc; variable 4316 LabelLoc(LLoc), Label(L) { in AddrLabelExpr() 4326 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 4327 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 4330 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1193 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 1204 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 1213 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 3293 SourceLocation LabelLoc, in ActOnGotoStmt() argument 3297 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1460 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1462 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 3026 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 3027 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 5269 SourceLocation LabelLoc,
|