Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp485 SMLoc LabelLoc = getTok().getLoc(); in parseDirectiveEndProc() local
487 return Error(LabelLoc, "expected identifier for procedure end"); in parseDirectiveEndProc()
492 return Error(LabelLoc, "endp does not match current procedure '" + in parseDirectiveEndProc()
H A DAsmParser.cpp6195 SMLoc LabelLoc = LabelTok.getLoc(); in parseAsHLASMLabel() local
6199 return Error(LabelLoc, "The HLASM Label has to be an Identifier"); in parseAsHLASMLabel()
6213 return Error(LabelLoc, in parseAsHLASMLabel()
6220 Out.emitLabel(Sym, LabelLoc); in parseAsHLASMLabel()
6226 LabelLoc); in parseAsHLASMLabel()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1117 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
1128 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
1137 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2974 SourceLocation LabelLoc;
2978 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) {
2990 SourceLocation getLabelLoc() const { return LabelLoc; }
2991 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
H A DExpr.h4479 SourceLocation AmpAmpLoc, LabelLoc; variable
4485 LabelLoc(LLoc), Label(L) { in AddrLabelExpr()
4495 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
4496 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
4499 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp3234 SourceLocation LabelLoc, in ActOnGotoStmt() argument
3244 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
H A DTreeTransform.h1475 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1477 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
3119 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
3120 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11018 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,