|
clang 22.0.0git
|
Interface for classes which map locations to sources. More...
#include "/work/as-worker-4/publish-doxygen-docs/llvm-project/clang/lib/AST/ByteCode/Source.h"
Public Member Functions | |
| virtual | ~SourceMapper () |
| virtual SourceInfo | getSource (const Function *F, CodePtr PC) const =0 |
| Returns source information for a given PC in a function. | |
| const Expr * | getExpr (const Function *F, CodePtr PC) const |
| Returns the expression if an opcode belongs to one, null otherwise. | |
| SourceLocation | getLocation (const Function *F, CodePtr PC) const |
| Returns the location from which an opcode originates. | |
| SourceRange | getRange (const Function *F, CodePtr PC) const |
|
inlinevirtual |
Returns the expression if an opcode belongs to one, null otherwise.
Definition at line 41 of file Source.cpp.
References getSource().
| SourceLocation SourceMapper::getLocation | ( | const Function * | F, |
| CodePtr | PC ) const |
Returns the location from which an opcode originates.
Definition at line 47 of file Source.cpp.
References clang::interp::SourceInfo::getLoc(), and getSource().
| SourceRange SourceMapper::getRange | ( | const Function * | F, |
| CodePtr | PC ) const |
Definition at line 51 of file Source.cpp.
References clang::interp::SourceInfo::getRange(), and getSource().
|
pure virtual |
Returns source information for a given PC in a function.
Implemented in clang::interp::EvalEmitter, and clang::interp::InterpState.
Referenced by getExpr(), getLocation(), and getRange().