clang  19.0.0git
Source.cpp
Go to the documentation of this file.
1 //===--- Source.cpp - Source expression tracking ----------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "Source.h"
10 #include "clang/AST/Expr.h"
11 
12 using namespace clang;
13 using namespace clang::interp;
14 
16  if (const Expr *E = asExpr())
17  return E->getExprLoc();
18  if (const Stmt *S = asStmt())
19  return S->getBeginLoc();
20  if (const Decl *D = asDecl())
21  return D->getBeginLoc();
22  return SourceLocation();
23 }
24 
26  if (const Expr *E = asExpr())
27  return E->getSourceRange();
28  if (const Stmt *S = asStmt())
29  return S->getSourceRange();
30  if (const Decl *D = asDecl())
31  return D->getSourceRange();
32  return SourceRange();
33 }
34 
35 const Expr *SourceInfo::asExpr() const {
36  if (const auto *S = Source.dyn_cast<const Stmt *>())
37  return dyn_cast<Expr>(S);
38  return nullptr;
39 }
40 
41 const Expr *SourceMapper::getExpr(const Function *F, CodePtr PC) const {
42  if (const Expr *E = getSource(F, PC).asExpr())
43  return E;
44  llvm::report_fatal_error("missing source expression");
45 }
46 
48  return getSource(F, PC).getLoc();
49 }
50 
52  return getSource(F, PC).getRange();
53 }
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
This represents one expression.
Definition: Expr.h:110
Encodes a location in the source.
A trivial tuple used to represent a source range.
Stmt - This represents one statement.
Definition: Stmt.h:84
Pointer into the code segment.
Definition: Source.h:30
Bytecode function.
Definition: Function.h:77
const Expr * asExpr() const
Definition: Source.cpp:35
const Decl * asDecl() const
Definition: Source.h:82
const Stmt * asStmt() const
Definition: Source.h:81
SourceLocation getLoc() const
Definition: Source.cpp:15
SourceRange getRange() const
Definition: Source.cpp:25
virtual SourceInfo getSource(const Function *F, CodePtr PC) const =0
Returns source information for a given PC in a function.
SourceLocation getLocation(const Function *F, CodePtr PC) const
Returns the location from which an opcode originates.
Definition: Source.cpp:47
SourceRange getRange(const Function *F, CodePtr PC) const
Definition: Source.cpp:51
const Expr * getExpr(const Function *F, CodePtr PC) const
Returns the expression if an opcode belongs to one, null otherwise.
Definition: Source.cpp:41
The JSON file list parser is used to communicate input to InstallAPI.