15#ifndef LLVM_CLANG_AST_INTERP_FUNCTION_H
16#define LLVM_CLANG_AST_INTERP_FUNCTION_H
23#include "llvm/ADT/PointerUnion.h"
24#include "llvm/Support/raw_ostream.h"
51 llvm::iterator_range<LocalVectorTy::const_iterator>
locals()
const {
52 return llvm::make_range(Descriptors.begin(), Descriptors.end());
55 llvm::iterator_range<LocalVectorTy::const_reverse_iterator>
57 return llvm::reverse(Descriptors);
66 llvm::PointerUnion<const FunctionDecl *, const BlockExpr *>;
134 return dyn_cast<const FunctionDecl *>(Source);
137 return dyn_cast<const BlockExpr *>(Source);
151 return ParamDescriptors[Index];
160 llvm::iterator_range<llvm::SmallVector<Scope, 2>::const_iterator>
162 return llvm::make_range(Scopes.begin(), Scopes.end());
169 return llvm::reverse(ParamDescriptors);
216 if (
const auto *MD = dyn_cast_if_present<CXXMethodDecl>(
217 dyn_cast<const FunctionDecl *>(Source)))
227 return HasThisPointer && ExplicitThisPointer;
230 return HasThisPointer && !ExplicitThisPointer;
250 return ParamDescriptors.size();
260 bool HasThisPointer,
bool HasRVO,
bool IsLambdaStaticInvoker);
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;
276 void setIsFullyCompiled(
bool FC) { IsFullyCompiled = FC; }
277 void setDefined(
bool D) { Defined = D; }
295 unsigned FrameSize = 0;
301 LLVM_PREFERRED_TYPE(
bool)
302 unsigned IsValid : 1;
305 LLVM_PREFERRED_TYPE(
bool)
306 unsigned IsFullyCompiled : 1;
309 LLVM_PREFERRED_TYPE(
bool)
310 unsigned HasThisPointer : 1;
311 LLVM_PREFERRED_TYPE(
bool)
312 unsigned ExplicitThisPointer : 1;
316 LLVM_PREFERRED_TYPE(
bool)
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;
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Represents a C++ struct/union/class.
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Represents a function declaration or definition.
std::string getQualifiedNameAsString() const
An emitter which links the program to bytecode for later use.
Pointer into the code segment.
bool hasExplicitThisPointer() const
Scope & getScope(unsigned Idx)
Returns a specific scope.
CodePtr getCodeBegin() const
Returns a pointer to the start of the code.
bool isDestructor() const
Checks if the function is a destructor.
CodePtr getCodeEnd() const
Returns a pointer to the end of the code.
friend class ByteCodeEmitter
std::string getName() const
Returns the name of the function decl this code was generated for.
bool isVirtual() const
Checks if the function is virtual.
unsigned getNumParams() const
Returs the full number of parameters, including implicit instance and RVO pointers.
bool isDefined() const
Checks if the function is defined.
bool hasNonNullAttr() const
const CXXRecordDecl * getParentDecl() const
Returns the parent record decl, if any.
unsigned getFrameSize() const
Returns the size of the function's local stack.
bool isLambdaCallOperator() const
Returns whether this function is the call operator of a lambda record decl.
const BlockExpr * getExpr() const
bool isFullyCompiled() const
Checks if the function is fully done compiling.
bool isConstructor() const
Checks if the function is a constructor.
bool hasImplicitThisPointer() const
const FunctionDecl * getDecl() const
Returns the original FunctionDecl.
bool hasBody() const
Checks if the function already has a body attached.
bool hasThisPointer() const
void dump(llvm::raw_ostream &OS, CodePtr PC={}) const
llvm::iterator_range< arg_reverse_iterator > args_reverse() const
const Scope & getScope(unsigned Idx) const
unsigned getNumWrittenParams() const
Returns the number of parameter this function takes when it's called, i.e excluding the instance poin...
unsigned getWrittenArgSize() const
unsigned getArgSize() const
Returns the size of the argument stack.
bool isLambdaStaticInvoker() const
Returns whether this function is a lambda static invoker, which we generate custom byte code for.
SourceInfo getSource(CodePtr PC) const
Returns the source information at a given PC.
bool isValid() const
Checks if the function is valid to call.
const ParamDescriptor & getParamDescriptor(unsigned Index) const
Returns a parameter descriptor.
void dump() const
Dumps the disassembled bytecode to llvm::errs().
bool isCopyOrMoveConstructor() const
bool isCopyOrMoveOperator() const
Checks if the function is copy or move operator.
llvm::iterator_range< llvm::SmallVector< Scope, 2 >::const_iterator > scopes() const
Range over the scope blocks.
bool hasRVO() const
Checks if the first argument is a RVO pointer.
SmallVectorImpl< ParamDescriptor >::const_reverse_iterator arg_reverse_iterator
Range over argument types.
A pointer to a memory block, live or dead.
llvm::SmallVector< Local, 8 > LocalVectorTy
llvm::iterator_range< LocalVectorTy::const_iterator > locals() const
Scope(LocalVectorTy &&Descriptors)
llvm::iterator_range< LocalVectorTy::const_reverse_iterator > locals_reverse() const
Describes the statement/declaration an opcode was generated from.
constexpr size_t align(size_t Size)
Aligns a size to the pointer alignment.
llvm::PointerUnion< const FunctionDecl *, const BlockExpr * > FunctionDeclTy
PrimType
Enumeration of the primitive types of the VM.
size_t primSize(PrimType Type)
Returns the size of a primitive type in bytes.
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.
unsigned BlockOffset
Offset in the InterpFrame.
unsigned Offset
Offset on the stack.
ParamDescriptor(const Descriptor *Desc, unsigned Offset, unsigned BlockOffset, PrimType T)
Information about a local's storage.
unsigned Offset
Offset of the local in frame.
bool EnabledByDefault
If the cleanup for this local should be emitted.
const Descriptor * Desc
Descriptor of the local.