clang 24.0.0git
Function.h
Go to the documentation of this file.
1//===--- Function.h - Bytecode function 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 Function class which holds all bytecode function-specific data.
10//
11// The scope class which describes local variables is also defined here.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_AST_INTERP_FUNCTION_H
16#define LLVM_CLANG_AST_INTERP_FUNCTION_H
17
18#include "Descriptor.h"
19#include "Source.h"
20#include "clang/AST/Attr.h"
21#include "clang/AST/Decl.h"
22#include "clang/AST/DeclCXX.h"
23#include "llvm/ADT/PointerUnion.h"
24#include "llvm/Support/raw_ostream.h"
25
26namespace clang {
27namespace interp {
28class ByteCodeEmitter;
29class Pointer;
30enum PrimType : uint8_t;
31
32/// Describes a scope block.
33///
34/// The block gathers all the descriptors of the locals defined in this block.
35class Scope final {
36public:
37 /// Information about a local's storage.
38 struct Local {
39 /// Descriptor of the local.
41 /// Offset of the local in frame.
42 unsigned Offset;
43 /// If the cleanup for this local should be emitted.
44 bool EnabledByDefault = true;
45 };
46
48
49 Scope(LocalVectorTy &&Descriptors) : Descriptors(std::move(Descriptors)) {}
50
51 llvm::iterator_range<LocalVectorTy::const_iterator> locals() const {
52 return llvm::make_range(Descriptors.begin(), Descriptors.end());
53 }
54
55 llvm::iterator_range<LocalVectorTy::const_reverse_iterator>
57 return llvm::reverse(Descriptors);
58 }
59
60private:
61 /// Object descriptors in this block.
62 LocalVectorTy Descriptors;
63};
64
66 llvm::PointerUnion<const FunctionDecl *, const BlockExpr *>;
67
68/// Bytecode function.
69///
70/// Contains links to the bytecode of the function, as well as metadata
71/// describing all arguments and stack-local variables.
72///
73/// # Calling Convention
74///
75/// When calling a function, all argument values must be on the stack.
76///
77/// If the function has a This pointer (i.e. hasThisPointer() returns true,
78/// the argument values need to be preceeded by a Pointer for the This object.
79///
80/// If the function uses Return Value Optimization, the arguments (and
81/// potentially the This pointer) need to be preceeded by a Pointer pointing
82/// to the location to construct the returned value.
83///
84/// After the function has been called, it will remove all arguments,
85/// including RVO and This pointer, from the stack.
86///
87/// The parameters saved in a clang::intepr::Function include both the
88/// instance pointer as well as the RVO pointer.
89///
90/// \verbatim
91/// Stack position when calling ─────┐
92/// this Function │
93/// ▼
94/// ┌─────┬──────┬────────┬────────┬─────┬────────────────────┐
95/// │ RVO │ This │ Param1 │ Param2 │ ... │ │
96/// └─────┴──────┴────────┴────────┴─────┴────────────────────┘
97/// \endverbatim
98class Function final {
99public:
109
112 /// Offset on the stack.
113 unsigned Offset;
114 /// Offset in the InterpFrame.
115 unsigned BlockOffset;
120 };
121
122 /// Returns the size of the function's local stack.
123 unsigned getFrameSize() const { return FrameSize; }
124 /// Returns the size of the argument stack.
125 unsigned getArgSize() const { return ArgSize; }
126
127 /// Returns a pointer to the start of the code.
128 CodePtr getCodeBegin() const { return Code.data(); }
129 /// Returns a pointer to the end of the code.
130 CodePtr getCodeEnd() const { return Code.data() + Code.size(); }
131
132 /// Returns the original FunctionDecl.
133 const FunctionDecl *getDecl() const {
134 return dyn_cast<const FunctionDecl *>(Source);
135 }
136 const BlockExpr *getExpr() const {
137 return dyn_cast<const BlockExpr *>(Source);
138 }
139
140 /// Returns the name of the function decl this code
141 /// was generated for.
142 std::string getName() const {
143 if (!Source || !getDecl())
144 return "<<expr>>";
145
147 }
148
149 /// Returns a parameter descriptor.
150 const ParamDescriptor &getParamDescriptor(unsigned Index) const {
151 return ParamDescriptors[Index];
152 }
153
154 /// Checks if the first argument is a RVO pointer.
155 bool hasRVO() const { return HasRVO; }
156
157 bool hasNonNullAttr() const { return getDecl()->hasAttr<NonNullAttr>(); }
158
159 /// Range over the scope blocks.
160 llvm::iterator_range<llvm::SmallVector<Scope, 2>::const_iterator>
161 scopes() const {
162 return llvm::make_range(Scopes.begin(), Scopes.end());
163 }
164
165 /// Range over argument types.
168 llvm::iterator_range<arg_reverse_iterator> args_reverse() const {
169 return llvm::reverse(ParamDescriptors);
170 }
171
172 /// Returns a specific scope.
173 Scope &getScope(unsigned Idx) { return Scopes[Idx]; }
174 const Scope &getScope(unsigned Idx) const { return Scopes[Idx]; }
175
176 /// Returns the source information at a given PC.
177 SourceInfo getSource(CodePtr PC) const;
178
179 /// Checks if the function is valid to call.
180 bool isValid() const { return IsValid; }
181
182 /// Checks if the function is virtual.
183 bool isVirtual() const { return Virtual; };
184 bool isImmediate() const { return Immediate; }
185 bool isConstexpr() const { return Constexpr; }
186
187 /// Checks if the function is a constructor.
188 bool isConstructor() const {
189 return Kind == FunctionKind::Ctor || Kind == FunctionKind::CopyOrMoveCtor;
190 }
192 return Kind == FunctionKind::CopyOrMoveCtor;
193 }
194
195 /// Checks if the function is a destructor.
196 bool isDestructor() const { return Kind == FunctionKind::Dtor; }
197 /// Checks if the function is copy or move operator.
198 bool isCopyOrMoveOperator() const {
200 }
201
202 /// Returns whether this function is a lambda static invoker,
203 /// which we generate custom byte code for.
206 }
207
208 /// Returns whether this function is the call operator
209 /// of a lambda record decl.
210 bool isLambdaCallOperator() const {
212 }
213
214 /// Returns the parent record decl, if any.
216 if (const auto *MD = dyn_cast_if_present<CXXMethodDecl>(
217 dyn_cast<const FunctionDecl *>(Source)))
218 return MD->getParent();
219 return nullptr;
220 }
221
222 /// Checks if the function is fully done compiling.
223 bool isFullyCompiled() const { return IsFullyCompiled; }
224
225 bool hasThisPointer() const { return HasThisPointer; }
227 return HasThisPointer && ExplicitThisPointer;
228 }
230 return HasThisPointer && !ExplicitThisPointer;
231 }
232
233 /// Checks if the function already has a body attached.
234 bool hasBody() const { return HasBody; }
235
236 /// Checks if the function is defined.
237 bool isDefined() const { return Defined; }
238
239 bool isVariadic() const { return Variadic; }
240 /// Returs the full number of parameters, including implicit instance and RVO
241 /// pointers.
242 unsigned getNumParams() const {
243 return ParamDescriptors.size() + hasThisPointer() + hasRVO();
244 }
245
246 /// Returns the number of parameter this function takes when it's called,
247 /// i.e excluding the instance pointer and the RVO pointer.
248 unsigned getNumWrittenParams() const {
249 assert(getNumParams() >= (unsigned)(hasThisPointer() + hasRVO()));
250 return ParamDescriptors.size();
251 }
252 unsigned getWrittenArgSize() const {
253 return ArgSize - (align(primSize(PT_Ptr)) * (hasThisPointer() + hasRVO()));
254 }
255
256private:
257 /// Construct a function representing an actual function.
258 Function(FunctionDeclTy Source, unsigned ArgSize,
260 bool HasThisPointer, bool HasRVO, bool IsLambdaStaticInvoker);
261
262 /// Sets the code of a function.
263 void setCode(FunctionDeclTy Source, unsigned NewFrameSize,
264 llvm::SmallVector<std::byte> &&NewCode, SourceMap &&NewSrcMap,
265 llvm::SmallVector<Scope, 2> &&NewScopes, bool NewHasBody,
266 bool NewIsValid) {
267 this->Source = Source;
268 FrameSize = NewFrameSize;
269 Code = std::move(NewCode);
270 SrcMap = std::move(NewSrcMap);
271 Scopes = std::move(NewScopes);
272 IsValid = NewIsValid;
273 HasBody = NewHasBody;
274 }
275
276 void setIsFullyCompiled(bool FC) { IsFullyCompiled = FC; }
277 void setDefined(bool D) { Defined = D; }
278
279private:
280 friend class Program;
281 friend class ByteCodeEmitter;
282 friend class Context;
283
284 /// Declaration this function was compiled from.
285 FunctionDeclTy Source;
286 /// Program code.
288 /// Opcode-to-expression mapping.
289 SourceMap SrcMap;
290 /// List of block descriptors.
292 /// List of all parameters, excluding RVO and instance pointer.
293 llvm::SmallVector<ParamDescriptor> ParamDescriptors;
294 /// Local area size: storage + metadata.
295 unsigned FrameSize = 0;
296 /// Size of the argument stack.
297 unsigned ArgSize;
298 /// Function Kind.
299 FunctionKind Kind;
300 /// Flag to indicate if the function is valid.
301 LLVM_PREFERRED_TYPE(bool)
302 unsigned IsValid : 1;
303 /// Flag to indicate if the function is done being
304 /// compiled to bytecode.
305 LLVM_PREFERRED_TYPE(bool)
306 unsigned IsFullyCompiled : 1;
307 /// Flag indicating if this function takes the this pointer
308 /// as the first implicit argument
309 LLVM_PREFERRED_TYPE(bool)
310 unsigned HasThisPointer : 1;
311 LLVM_PREFERRED_TYPE(bool)
312 unsigned ExplicitThisPointer : 1;
313 /// Whether this function has Return Value Optimization, i.e.
314 /// the return value is constructed in the caller's stack frame.
315 /// This is done for functions that return non-primive values.
316 LLVM_PREFERRED_TYPE(bool)
317 unsigned HasRVO : 1;
318 /// If we've already compiled the function's body.
319 LLVM_PREFERRED_TYPE(bool)
320 unsigned HasBody : 1;
321 LLVM_PREFERRED_TYPE(bool)
322 unsigned Defined : 1;
323 LLVM_PREFERRED_TYPE(bool)
324 unsigned Variadic : 1;
325 LLVM_PREFERRED_TYPE(bool)
326 unsigned Virtual : 1;
327 LLVM_PREFERRED_TYPE(bool)
328 unsigned Immediate : 1;
329 LLVM_PREFERRED_TYPE(bool)
330 unsigned Constexpr : 1;
331
332public:
333 /// Dumps the disassembled bytecode to \c llvm::errs().
334 void dump() const { dump({}); }
335 void dump(CodePtr PC) const;
336 void dump(llvm::raw_ostream &OS, CodePtr PC = {}) const;
337};
338
339} // namespace interp
340} // namespace clang
341
342#endif
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition Expr.h:6722
Represents a C++ struct/union/class.
Definition DeclCXX.h:258
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Definition DeclBase.h:2126
bool hasAttr() const
Definition DeclBase.h:585
Represents a function declaration or definition.
Definition Decl.h:2059
std::string getQualifiedNameAsString() const
Definition Decl.cpp:1684
An emitter which links the program to bytecode for later use.
Pointer into the code segment.
Definition Source.h:31
bool hasExplicitThisPointer() const
Definition Function.h:226
friend class Program
Definition Function.h:280
Scope & getScope(unsigned Idx)
Returns a specific scope.
Definition Function.h:173
CodePtr getCodeBegin() const
Returns a pointer to the start of the code.
Definition Function.h:128
bool isDestructor() const
Checks if the function is a destructor.
Definition Function.h:196
CodePtr getCodeEnd() const
Returns a pointer to the end of the code.
Definition Function.h:130
friend class ByteCodeEmitter
Definition Function.h:281
std::string getName() const
Returns the name of the function decl this code was generated for.
Definition Function.h:142
bool isVirtual() const
Checks if the function is virtual.
Definition Function.h:183
unsigned getNumParams() const
Returs the full number of parameters, including implicit instance and RVO pointers.
Definition Function.h:242
bool isDefined() const
Checks if the function is defined.
Definition Function.h:237
bool hasNonNullAttr() const
Definition Function.h:157
const CXXRecordDecl * getParentDecl() const
Returns the parent record decl, if any.
Definition Function.h:215
unsigned getFrameSize() const
Returns the size of the function's local stack.
Definition Function.h:123
bool isLambdaCallOperator() const
Returns whether this function is the call operator of a lambda record decl.
Definition Function.h:210
const BlockExpr * getExpr() const
Definition Function.h:136
bool isFullyCompiled() const
Checks if the function is fully done compiling.
Definition Function.h:223
bool isConstructor() const
Checks if the function is a constructor.
Definition Function.h:188
bool hasImplicitThisPointer() const
Definition Function.h:229
const FunctionDecl * getDecl() const
Returns the original FunctionDecl.
Definition Function.h:133
bool hasBody() const
Checks if the function already has a body attached.
Definition Function.h:234
bool hasThisPointer() const
Definition Function.h:225
void dump(llvm::raw_ostream &OS, CodePtr PC={}) const
llvm::iterator_range< arg_reverse_iterator > args_reverse() const
Definition Function.h:168
bool isConstexpr() const
Definition Function.h:185
const Scope & getScope(unsigned Idx) const
Definition Function.h:174
unsigned getNumWrittenParams() const
Returns the number of parameter this function takes when it's called, i.e excluding the instance poin...
Definition Function.h:248
friend class Context
Definition Function.h:282
unsigned getWrittenArgSize() const
Definition Function.h:252
unsigned getArgSize() const
Returns the size of the argument stack.
Definition Function.h:125
bool isLambdaStaticInvoker() const
Returns whether this function is a lambda static invoker, which we generate custom byte code for.
Definition Function.h:204
bool isVariadic() const
Definition Function.h:239
SourceInfo getSource(CodePtr PC) const
Returns the source information at a given PC.
Definition Function.cpp:62
bool isValid() const
Checks if the function is valid to call.
Definition Function.h:180
const ParamDescriptor & getParamDescriptor(unsigned Index) const
Returns a parameter descriptor.
Definition Function.h:150
void dump() const
Dumps the disassembled bytecode to llvm::errs().
Definition Function.h:334
bool isImmediate() const
Definition Function.h:184
bool isCopyOrMoveConstructor() const
Definition Function.h:191
bool isCopyOrMoveOperator() const
Checks if the function is copy or move operator.
Definition Function.h:198
llvm::iterator_range< llvm::SmallVector< Scope, 2 >::const_iterator > scopes() const
Range over the scope blocks.
Definition Function.h:161
bool hasRVO() const
Checks if the first argument is a RVO pointer.
Definition Function.h:155
SmallVectorImpl< ParamDescriptor >::const_reverse_iterator arg_reverse_iterator
Range over argument types.
Definition Function.h:166
A pointer to a memory block, live or dead.
Definition Pointer.h:427
Describes a scope block.
Definition Function.h:35
llvm::SmallVector< Local, 8 > LocalVectorTy
Definition Function.h:47
llvm::iterator_range< LocalVectorTy::const_iterator > locals() const
Definition Function.h:51
Scope(LocalVectorTy &&Descriptors)
Definition Function.h:49
llvm::iterator_range< LocalVectorTy::const_reverse_iterator > locals_reverse() const
Definition Function.h:56
Describes the statement/declaration an opcode was generated from.
Definition Source.h:77
constexpr size_t align(size_t Size)
Aligns a size to the pointer alignment.
Definition PrimType.h:213
llvm::PointerUnion< const FunctionDecl *, const BlockExpr * > FunctionDeclTy
Definition Function.h:65
PrimType
Enumeration of the primitive types of the VM.
Definition PrimType.h:34
size_t primSize(PrimType Type)
Returns the size of a primitive type in bytes.
Definition PrimType.cpp:24
Top level wrappers for InstallAPI frontend operations.
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 uint8_t
Describes a memory block created by an allocation site.
Definition Descriptor.h:122
unsigned BlockOffset
Offset in the InterpFrame.
Definition Function.h:115
unsigned Offset
Offset on the stack.
Definition Function.h:113
ParamDescriptor(const Descriptor *Desc, unsigned Offset, unsigned BlockOffset, PrimType T)
Definition Function.h:117
Information about a local's storage.
Definition Function.h:38
unsigned Offset
Offset of the local in frame.
Definition Function.h:42
bool EnabledByDefault
If the cleanup for this local should be emitted.
Definition Function.h:44
const Descriptor * Desc
Descriptor of the local.
Definition Function.h:40