003 File Manager
Current Path:
/usr/src/contrib/llvm-project/clang/lib/AST/Interp
usr
/
src
/
contrib
/
llvm-project
/
clang
/
lib
/
AST
/
Interp
/
📁
..
📄
Boolean.h
(4.12 KB)
📄
ByteCodeEmitter.cpp
(5.38 KB)
📄
ByteCodeEmitter.h
(3.13 KB)
📄
ByteCodeExprGen.cpp
(16.6 KB)
📄
ByteCodeExprGen.h
(10.2 KB)
📄
ByteCodeGenError.cpp
(483 B)
📄
ByteCodeGenError.h
(1.36 KB)
📄
ByteCodeStmtGen.cpp
(7.21 KB)
📄
ByteCodeStmtGen.h
(2.39 KB)
📄
Context.cpp
(3.28 KB)
📄
Context.h
(2.39 KB)
📄
Descriptor.cpp
(10.31 KB)
📄
Descriptor.h
(7.82 KB)
📄
Disasm.cpp
(1.95 KB)
📄
EvalEmitter.cpp
(7.6 KB)
📄
EvalEmitter.h
(3.7 KB)
📄
Frame.cpp
(464 B)
📄
Frame.h
(1.28 KB)
📄
Function.cpp
(1.73 KB)
📄
Function.h
(4.91 KB)
📄
Integral.h
(8.38 KB)
📄
Interp.cpp
(11.54 KB)
📄
Interp.h
(30.64 KB)
📄
InterpBlock.cpp
(1.91 KB)
📄
InterpBlock.h
(4.11 KB)
📄
InterpFrame.cpp
(5.32 KB)
📄
InterpFrame.h
(4.54 KB)
📄
InterpStack.cpp
(1.81 KB)
📄
InterpStack.h
(3.43 KB)
📄
InterpState.cpp
(2.03 KB)
📄
InterpState.h
(3.29 KB)
📄
Opcode.h
(817 B)
📄
Opcodes.td
(11.02 KB)
📄
Pointer.cpp
(4.97 KB)
📄
Pointer.h
(11.08 KB)
📄
PrimType.cpp
(648 B)
📄
PrimType.h
(4.66 KB)
📄
Program.cpp
(11.29 KB)
📄
Program.h
(6.66 KB)
📄
Record.cpp
(1.54 KB)
📄
Record.h
(3.76 KB)
📄
Source.cpp
(1.15 KB)
📄
Source.h
(3.25 KB)
📄
State.cpp
(5.34 KB)
📄
State.h
(4.01 KB)
Editing: InterpFrame.h
//===--- InterpFrame.h - Call Frame implementation for the VM ---*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Defines the class storing information about stack frames in the interpreter. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_INTERP_INTERPFRAME_H #define LLVM_CLANG_AST_INTERP_INTERPFRAME_H #include "Frame.h" #include "Pointer.h" #include "Program.h" #include "State.h" #include <cstdint> #include <vector> namespace clang { namespace interp { class Function; class InterpState; /// Frame storing local variables. class InterpFrame final : public Frame { public: /// The frame of the previous function. InterpFrame *Caller; /// Creates a new frame for a method call. InterpFrame(InterpState &S, Function *Func, InterpFrame *Caller, CodePtr RetPC, Pointer &&This); /// Destroys the frame, killing all live pointers to stack slots. ~InterpFrame(); /// Invokes the destructors for a scope. void destroy(unsigned Idx); /// Pops the arguments off the stack. void popArgs(); /// Describes the frame with arguments for diagnostic purposes. void describe(llvm::raw_ostream &OS) override; /// Returns the parent frame object. Frame *getCaller() const override; /// Returns the location of the call to the frame. SourceLocation getCallLocation() const override; /// Returns the caller. const FunctionDecl *getCallee() const override; /// Returns the current function. Function *getFunction() const { return Func; } /// Returns the offset on the stack at which the frame starts. size_t getFrameOffset() const { return FrameOffset; } /// Returns the value of a local variable. template <typename T> const T &getLocal(unsigned Offset) { return localRef<T>(Offset); } /// Mutates a local variable. template <typename T> void setLocal(unsigned Offset, const T &Value) { localRef<T>(Offset) = Value; } /// Returns a pointer to a local variables. Pointer getLocalPointer(unsigned Offset); /// Returns the value of an argument. template <typename T> const T &getParam(unsigned Offset) { auto Pt = Params.find(Offset); if (Pt == Params.end()) { return stackRef<T>(Offset); } else { return Pointer(reinterpret_cast<Block *>(Pt->second.get())).deref<T>(); } } /// Mutates a local copy of a parameter. template <typename T> void setParam(unsigned Offset, const T &Value) { getParamPointer(Offset).deref<T>() = Value; } /// Returns a pointer to an argument - lazily creates a block. Pointer getParamPointer(unsigned Offset); /// Returns the 'this' pointer. const Pointer &getThis() const { return This; } /// Checks if the frame is a root frame - return should quit the interpreter. bool isRoot() const { return !Func; } /// Returns the PC of the frame's code start. CodePtr getPC() const { return Func->getCodeBegin(); } /// Returns the return address of the frame. CodePtr getRetPC() const { return RetPC; } /// Map a location to a source. virtual SourceInfo getSource(CodePtr PC) const; const Expr *getExpr(CodePtr PC) const; SourceLocation getLocation(CodePtr PC) const; private: /// Returns an original argument from the stack. template <typename T> const T &stackRef(unsigned Offset) { return *reinterpret_cast<const T *>(Args - ArgSize + Offset); } /// Returns an offset to a local. template <typename T> T &localRef(unsigned Offset) { return *reinterpret_cast<T *>(Locals.get() + Offset); } /// Returns a pointer to a local's block. void *localBlock(unsigned Offset) { return Locals.get() + Offset - sizeof(Block); } private: /// Reference to the interpreter state. InterpState &S; /// Reference to the function being executed. Function *Func; /// Current object pointer for methods. Pointer This; /// Return address. CodePtr RetPC; /// The size of all the arguments. const unsigned ArgSize; /// Pointer to the arguments in the callee's frame. char *Args = nullptr; /// Fixed, initial storage for known local variables. std::unique_ptr<char[]> Locals; /// Offset on the stack at entry. const size_t FrameOffset; /// Mapping from arg offsets to their argument blocks. llvm::DenseMap<unsigned, std::unique_ptr<char[]>> Params; }; } // namespace interp } // namespace clang #endif
Upload File
Create Folder