30 return BuiltinID == Builtin::BI__builtin_classify_type ||
31 BuiltinID == Builtin::BI__builtin_os_log_format_buffer_size ||
32 BuiltinID == Builtin::BI__builtin_constant_p;
42 bool IsLambdaStaticInvoker =
false;
43 if (
const auto *MD = dyn_cast<CXXMethodDecl>(FuncDecl);
44 MD && MD->isLambdaStaticInvoker()) {
50 IsLambdaStaticInvoker =
true;
56 assert(MD->isFunctionTemplateSpecialization() &&
57 "A generic lambda's static-invoker function must be a "
58 "template specialization");
62 void *InsertPos =
nullptr;
65 assert(CorrespondingCallOpSpecialization);
66 FuncDecl = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
74 llvm::DenseMap<unsigned, Function::ParamDescriptor> ParamDescriptors;
83 ParamTypes.push_back(
PT_Ptr);
91 bool HasThisPointer =
false;
92 if (
const auto *MD = dyn_cast<CXXMethodDecl>(FuncDecl)) {
93 if (!IsLambdaStaticInvoker) {
94 HasThisPointer = MD->isInstance();
95 if (MD->isImplicitObjectMemberFunction()) {
96 ParamTypes.push_back(
PT_Ptr);
106 if (!MD->getParent()->isCompleteDefinition())
110 llvm::DenseMap<const ValueDecl *, FieldDecl *> LC;
113 MD->
getParent()->getCaptureFields(LC, LTC);
115 for (
auto Cap : LC) {
123 Offset, Cap.second->getType()->isReferenceType()};
137 std::optional<PrimType>
T = Ctx.
classify(PD->getType());
140 ParamDescriptors.insert({
ParamOffset, {PT, Desc}});
144 ParamTypes.push_back(PT);
150 bool IsUnevaluatedBuiltin =
false;
156 std::move(ParamDescriptors), std::move(ParamOffsets),
157 HasThisPointer, HasRVO, IsUnevaluatedBuiltin);
165 Func->setDefined(
false);
169 Func->setDefined(
true);
172 bool IsEligibleForCompilation =
false;
173 if (
const auto *MD = dyn_cast<CXXMethodDecl>(FuncDecl))
174 IsEligibleForCompilation = MD->isLambdaStaticInvoker();
175 if (!IsEligibleForCompilation)
176 IsEligibleForCompilation =
180 if (!IsEligibleForCompilation || !
visitFunc(FuncDecl)) {
181 Func->setIsFullyCompiled(
true);
188 Scopes.emplace_back(std::move(DS));
192 Func->setCode(NextLocalOffset, std::move(Code), std::move(SrcMap),
193 std::move(Scopes), FuncDecl->
hasBody());
194 Func->setIsFullyCompiled(
true);
208 llvm::DenseMap<unsigned, Function::ParamDescriptor> ParamDescriptors;
213 std::optional<PrimType>
T = Ctx.
classify(PD->getType());
216 ParamDescriptors.insert({
ParamOffset, {PT, Desc}});
220 ParamTypes.push_back(PT);
229 std::move(ParamDescriptors), std::move(ParamOffsets),
234 Func->setDefined(
true);
236 Func->setIsFullyCompiled(
true);
241 NextLocalOffset +=
sizeof(
Block);
242 unsigned Location = NextLocalOffset;
243 NextLocalOffset +=
align(
D->getAllocSize());
244 return {Location,
D};
248 const size_t Target = Code.size();
251 if (
auto It = LabelRelocs.find(
Label); It != LabelRelocs.end()) {
252 for (
unsigned Reloc : It->second) {
253 using namespace llvm::support;
256 void *Location = Code.data() + Reloc -
align(
sizeof(int32_t));
258 const int32_t Offset =
Target -
static_cast<int64_t
>(Reloc);
259 endian::write<int32_t, llvm::endianness::native>(Location, Offset);
261 LabelRelocs.erase(It);
265int32_t ByteCodeEmitter::getOffset(LabelTy
Label) {
267 const int64_t Position =
272 if (
auto It = LabelOffsets.find(
Label); It != LabelOffsets.end())
273 return It->second - Position;
276 LabelRelocs[
Label].push_back(Position);
287 if constexpr (std::is_pointer_v<T>)
288 Size =
sizeof(uint32_t);
292 if (Code.size() + Size > std::numeric_limits<unsigned>::max()) {
298 size_t ValPos =
align(Code.size());
300 assert(
aligned(ValPos + Size));
301 Code.resize(ValPos + Size);
303 if constexpr (!std::is_pointer_v<T>) {
304 new (Code.data() + ValPos)
T(Val);
306 uint32_t ID =
P.getOrCreateNativePointer(Val);
307 new (Code.data() + ValPos) uint32_t(ID);
316 size_t Size = Val.bytesToSerialize();
318 if (Code.size() + Size > std::numeric_limits<unsigned>::max()) {
324 size_t ValPos =
align(Code.size());
326 assert(
aligned(ValPos + Size));
327 Code.resize(ValPos + Size);
329 Val.serialize(Code.data() + ValPos);
350template <
typename... Tys>
351bool ByteCodeEmitter::emitOp(
Opcode Op,
const Tys &...Args,
359 SrcMap.emplace_back(Code.size(), SI);
387#include "Opcodes.inc"
This file provides some common utility functions for processing Lambda related AST Constructs.
Defines enum values for all the target-independent builtin functions.
static bool isUnevaluatedBuiltin(unsigned BuiltinID)
Unevaluated builtins don't get their arguments put on the stack automatically.
static void emit(Program &P, std::vector< std::byte > &Code, const T &Val, bool &Success)
Helper to write bytecode and bail out if 32-bit offsets become invalid.
static void emitSerialized(std::vector< std::byte > &Code, const T &Val, bool &Success)
Emits a serializable value.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
llvm::MachO::Target Target
Represents a block literal declaration, which is like an unnamed FunctionDecl.
bool hasCaptures() const
True if this block (or its nested blocks) captures anything of local storage from its enclosing scope...
ArrayRef< ParmVarDecl * > parameters() const
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
const BlockDecl * getBlockDecl() const
Represents a static or instance method of a struct/union/class.
Represents a C++ struct/union/class.
bool isGenericLambda() const
Determine whether this class describes a generic lambda function object (i.e.
capture_const_iterator captures_end() const
capture_const_iterator captures_begin() const
CXXMethodDecl * getLambdaCallOperator() const
Retrieve the lambda call operator of the closure type if this is a closure type.
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Represents a member of a struct/union/class.
const RecordDecl * getParent() const
Returns the parent of this field declaration, which is the struct in which this field is defined.
Represents a function declaration or definition.
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
unsigned getBuiltinID(bool ConsiderWrapperFunctions=false) const
Returns a value indicating whether this function corresponds to a builtin function.
QualType getReturnType() const
ArrayRef< ParmVarDecl * > parameters() const
param_iterator param_begin()
bool isConstexpr() const
Whether this is a (C++11) constexpr function or constexpr constructor.
bool hasBody(const FunctionDecl *&Definition) const
Returns true if the function has a body.
bool isDefined(const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const
Returns true if the function has a definition that does not need to be instantiated.
bool willHaveBody() const
True if this function will eventually have a body, once it's fully parsed.
Declaration of a template function.
FunctionDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
Represents a parameter to a function.
A (possibly-)qualified type.
A template argument list.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
bool isPointerType() const
bool isReferenceType() const
A memory block, either on the stack or in the heap.
bool jump(const LabelTy &Label)
void emitLabel(LabelTy Label)
Define a label.
ParamOffset LambdaThisCapture
Offset of the This parameter in a lambda record.
llvm::DenseMap< const ParmVarDecl *, ParamOffset > Params
Parameter indices.
llvm::DenseMap< const ValueDecl *, ParamOffset > LambdaCaptures
Lambda captures.
bool fallthrough(const LabelTy &Label)
Local createLocal(Descriptor *D)
Callback for local registration.
Function * compileFunc(const FunctionDecl *FuncDecl)
Compiles the function into the module.
Function * compileObjCBlock(const BlockExpr *BE)
Compile an ObjC block, i.e.
virtual bool visitFunc(const FunctionDecl *E)=0
Methods implemented by the compiler.
bool jumpTrue(const LabelTy &Label)
Emits jumps.
bool jumpFalse(const LabelTy &Label)
llvm::SmallVector< SmallVector< Local, 8 >, 2 > Descriptors
Local descriptors.
std::optional< PrimType > classify(QualType T) const
Classifies a type.
The program contains and links the bytecode for all functions.
Function * getFunction(const FunctionDecl *F)
Returns a function.
Descriptor * createDescriptor(const DeclTy &D, PrimType Type, Descriptor::MetadataSize MDSize=std::nullopt, bool IsConst=false, bool IsTemporary=false, bool IsMutable=false)
Creates a descriptor for a primitive type.
Function * createFunction(const FunctionDecl *Def, Ts &&...Args)
Creates a new function from a code range.
Record * getOrCreateRecord(const RecordDecl *RD)
Returns a record or creates one if it does not exist.
Structure/Class descriptor.
const Field * getField(const FieldDecl *FD) const
Returns a field.
Describes the statement/declaration an opcode was generated from.
constexpr bool aligned(uintptr_t Value)
constexpr size_t align(size_t Size)
Aligns a size to the pointer alignment.
PrimType
Enumeration of the primitive types of the VM.
size_t primSize(PrimType Type)
Returns the size of a primitive type in bytes.
The JSON file list parser is used to communicate input to InstallAPI.
bool isLambdaCallOperator(const CXXMethodDecl *MD)
const FunctionProtoType * T
@ Success
Template argument deduction was successful.
Describes a memory block created by an allocation site.
Information about a local's storage.