clang 20.0.0git
InterpFrame.h
Go to the documentation of this file.
1//===--- InterpFrame.h - Call Frame implementation for the VM ---*- 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// Defines the class storing information about stack frames in the interpreter.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_AST_INTERP_INTERPFRAME_H
14#define LLVM_CLANG_AST_INTERP_INTERPFRAME_H
15
16#include "Frame.h"
17#include "Program.h"
18
19namespace clang {
20namespace interp {
21class Function;
22class InterpState;
23class Pointer;
24
25/// Frame storing local variables.
26class InterpFrame final : public Frame {
27public:
28 /// The frame of the previous function.
30
31 /// Creates a new frame for a method call.
33 CodePtr RetPC, unsigned ArgSize);
34
35 /// Creates a new frame with the values that make sense.
36 /// I.e., the caller is the current frame of S,
37 /// the This() pointer is the current Pointer on the top of S's stack,
38 /// and the RVO pointer is before that.
39 InterpFrame(InterpState &S, const Function *Func, CodePtr RetPC,
40 unsigned VarArgSize = 0);
41
42 /// Destroys the frame, killing all live pointers to stack slots.
44
45 /// Invokes the destructors for a scope.
46 void destroy(unsigned Idx);
47
48 /// Pops the arguments off the stack.
49 void popArgs();
50
51 /// Describes the frame with arguments for diagnostic purposes.
52 void describe(llvm::raw_ostream &OS) const override;
53
54 /// Returns the parent frame object.
55 Frame *getCaller() const override;
56
57 /// Returns the location of the call to the frame.
58 SourceRange getCallRange() const override;
59
60 /// Returns the caller.
61 const FunctionDecl *getCallee() const override;
62
63 /// Returns the current function.
64 const Function *getFunction() const { return Func; }
65
66 /// Returns the offset on the stack at which the frame starts.
67 size_t getFrameOffset() const { return FrameOffset; }
68
69 /// Returns the value of a local variable.
70 template <typename T> const T &getLocal(unsigned Offset) const {
71 return localRef<T>(Offset);
72 }
73
74 /// Mutates a local variable.
75 template <typename T> void setLocal(unsigned Offset, const T &Value) {
76 localRef<T>(Offset) = Value;
77 localInlineDesc(Offset)->IsInitialized = true;
78 }
79
80 /// Returns a pointer to a local variables.
81 Pointer getLocalPointer(unsigned Offset) const;
82
83 /// Returns the value of an argument.
84 template <typename T> const T &getParam(unsigned Offset) const {
85 auto Pt = Params.find(Offset);
86 if (Pt == Params.end())
87 return stackRef<T>(Offset);
88 return Pointer(reinterpret_cast<Block *>(Pt->second.get())).deref<T>();
89 }
90
91 /// Mutates a local copy of a parameter.
92 template <typename T> void setParam(unsigned Offset, const T &Value) {
93 getParamPointer(Offset).deref<T>() = Value;
94 }
95
96 /// Returns a pointer to an argument - lazily creates a block.
97 Pointer getParamPointer(unsigned Offset);
98
99 /// Returns the 'this' pointer.
100 const Pointer &getThis() const { return This; }
101
102 /// Returns the RVO pointer, if the Function has one.
103 const Pointer &getRVOPtr() const { return RVOPtr; }
104
105 /// Checks if the frame is a root frame - return should quit the interpreter.
106 bool isRoot() const { return !Func; }
107
108 /// Returns the PC of the frame's code start.
109 CodePtr getPC() const { return Func->getCodeBegin(); }
110
111 /// Returns the return address of the frame.
112 CodePtr getRetPC() const { return RetPC; }
113
114 /// Map a location to a source.
115 virtual SourceInfo getSource(CodePtr PC) const;
116 const Expr *getExpr(CodePtr PC) const;
118 SourceRange getRange(CodePtr PC) const;
119
120 unsigned getDepth() const { return Depth; }
121
122 void dump() const { dump(llvm::errs(), 0); }
123 void dump(llvm::raw_ostream &OS, unsigned Indent = 0) const;
124
125private:
126 /// Returns an original argument from the stack.
127 template <typename T> const T &stackRef(unsigned Offset) const {
128 assert(Args);
129 return *reinterpret_cast<const T *>(Args - ArgSize + Offset);
130 }
131
132 /// Returns an offset to a local.
133 template <typename T> T &localRef(unsigned Offset) const {
134 return getLocalPointer(Offset).deref<T>();
135 }
136
137 /// Returns a pointer to a local's block.
138 Block *localBlock(unsigned Offset) const {
139 return reinterpret_cast<Block *>(Locals.get() + Offset - sizeof(Block));
140 }
141
142 /// Returns the inline descriptor of the local.
143 InlineDescriptor *localInlineDesc(unsigned Offset) const {
144 return reinterpret_cast<InlineDescriptor *>(Locals.get() + Offset);
145 }
146
147private:
148 /// Reference to the interpreter state.
149 InterpState &S;
150 /// Depth of this frame.
151 unsigned Depth;
152 /// Reference to the function being executed.
153 const Function *Func;
154 /// Current object pointer for methods.
155 Pointer This;
156 /// Pointer the non-primitive return value gets constructed in.
157 Pointer RVOPtr;
158 /// Return address.
159 CodePtr RetPC;
160 /// The size of all the arguments.
161 const unsigned ArgSize;
162 /// Pointer to the arguments in the callee's frame.
163 char *Args = nullptr;
164 /// Fixed, initial storage for known local variables.
165 std::unique_ptr<char[]> Locals;
166 /// Offset on the stack at entry.
167 const size_t FrameOffset;
168 /// Mapping from arg offsets to their argument blocks.
169 llvm::DenseMap<unsigned, std::unique_ptr<char[]>> Params;
170};
171
172} // namespace interp
173} // namespace clang
174
175#endif
const CFGBlock * Block
Definition: HTMLLogger.cpp:153
This represents one expression.
Definition: Expr.h:110
Represents a function declaration or definition.
Definition: Decl.h:1932
Encodes a location in the source.
A trivial tuple used to represent a source range.
A memory block, either on the stack or in the heap.
Definition: InterpBlock.h:49
Pointer into the code segment.
Definition: Source.h:30
Base class for stack frames, shared between VM and walker.
Definition: Frame.h:25
Bytecode function.
Definition: Function.h:77
CodePtr getCodeBegin() const
Returns a pointer to the start of the code.
Definition: Function.h:87
Frame storing local variables.
Definition: InterpFrame.h:26
void popArgs()
Pops the arguments off the stack.
Definition: InterpFrame.cpp:92
const Expr * getExpr(CodePtr PC) const
InterpFrame * Caller
The frame of the previous function.
Definition: InterpFrame.h:29
virtual SourceInfo getSource(CodePtr PC) const
Map a location to a source.
CodePtr getRetPC() const
Returns the return address of the frame.
Definition: InterpFrame.h:112
CodePtr getPC() const
Returns the PC of the frame's code start.
Definition: InterpFrame.h:109
SourceLocation getLocation(CodePtr PC) const
~InterpFrame()
Destroys the frame, killing all live pointers to stack slots.
Definition: InterpFrame.cpp:68
const Pointer & getThis() const
Returns the 'this' pointer.
Definition: InterpFrame.h:100
const Function * getFunction() const
Returns the current function.
Definition: InterpFrame.h:64
size_t getFrameOffset() const
Returns the offset on the stack at which the frame starts.
Definition: InterpFrame.h:67
SourceRange getRange(CodePtr PC) const
void setLocal(unsigned Offset, const T &Value)
Mutates a local variable.
Definition: InterpFrame.h:75
const T & getParam(unsigned Offset) const
Returns the value of an argument.
Definition: InterpFrame.h:84
bool isRoot() const
Checks if the frame is a root frame - return should quit the interpreter.
Definition: InterpFrame.h:106
Pointer getLocalPointer(unsigned Offset) const
Returns a pointer to a local variables.
unsigned getDepth() const
Definition: InterpFrame.h:120
Frame * getCaller() const override
Returns the parent frame object.
void setParam(unsigned Offset, const T &Value)
Mutates a local copy of a parameter.
Definition: InterpFrame.h:92
void destroy(unsigned Idx)
Invokes the destructors for a scope.
Definition: InterpFrame.cpp:86
const Pointer & getRVOPtr() const
Returns the RVO pointer, if the Function has one.
Definition: InterpFrame.h:103
Pointer getParamPointer(unsigned Offset)
Returns a pointer to an argument - lazily creates a block.
const FunctionDecl * getCallee() const override
Returns the caller.
const T & getLocal(unsigned Offset) const
Returns the value of a local variable.
Definition: InterpFrame.h:70
SourceRange getCallRange() const override
Returns the location of the call to the frame.
void describe(llvm::raw_ostream &OS) const override
Describes the frame with arguments for diagnostic purposes.
Interpreter context.
Definition: InterpState.h:36
A pointer to a memory block, live or dead.
Definition: Pointer.h:80
T & deref() const
Dereferences the pointer, if it's live.
Definition: Pointer.h:609
Describes the statement/declaration an opcode was generated from.
Definition: Source.h:72
The JSON file list parser is used to communicate input to InstallAPI.
const FunctionProtoType * T
unsigned IsInitialized
For primitive fields, it indicates if the field was initialized.
Definition: Descriptor.h:82