clang 20.0.0git
Compiler.h
Go to the documentation of this file.
1//===--- Compiler.h - Code generator for expressions -----*- 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 constexpr bytecode compiler.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_AST_INTERP_BYTECODEEXPRGEN_H
14#define LLVM_CLANG_AST_INTERP_BYTECODEEXPRGEN_H
15
16#include "ByteCodeEmitter.h"
17#include "EvalEmitter.h"
18#include "Pointer.h"
19#include "PrimType.h"
20#include "Record.h"
21#include "clang/AST/Decl.h"
22#include "clang/AST/Expr.h"
25
26namespace clang {
27class QualType;
28
29namespace interp {
30
31template <class Emitter> class LocalScope;
32template <class Emitter> class DestructorScope;
33template <class Emitter> class VariableScope;
34template <class Emitter> class DeclScope;
35template <class Emitter> class InitLinkScope;
36template <class Emitter> class InitStackScope;
37template <class Emitter> class OptionScope;
38template <class Emitter> class ArrayIndexScope;
39template <class Emitter> class SourceLocScope;
40template <class Emitter> class LoopScope;
41template <class Emitter> class LabelScope;
42template <class Emitter> class SwitchScope;
43template <class Emitter> class StmtExprScope;
44
45template <class Emitter> class Compiler;
46struct InitLink {
47public:
48 enum {
49 K_This = 0,
51 K_Temp = 2,
52 K_Decl = 3,
53 K_Elem = 5,
54 K_RVO = 6,
55 K_InitList = 7
56 };
57
58 static InitLink This() { return InitLink{K_This}; }
59 static InitLink InitList() { return InitLink{K_InitList}; }
60 static InitLink RVO() { return InitLink{K_RVO}; }
61 static InitLink Field(unsigned Offset) {
62 InitLink IL{K_Field};
63 IL.Offset = Offset;
64 return IL;
65 }
66 static InitLink Temp(unsigned Offset) {
67 InitLink IL{K_Temp};
68 IL.Offset = Offset;
69 return IL;
70 }
71 static InitLink Decl(const ValueDecl *D) {
72 InitLink IL{K_Decl};
73 IL.D = D;
74 return IL;
75 }
76 static InitLink Elem(unsigned Index) {
77 InitLink IL{K_Elem};
78 IL.Offset = Index;
79 return IL;
80 }
81
82 InitLink(uint8_t Kind) : Kind(Kind) {}
83 template <class Emitter>
84 bool emit(Compiler<Emitter> *Ctx, const Expr *E) const;
85
86 uint32_t Kind;
87 union {
88 unsigned Offset;
89 const ValueDecl *D;
90 };
91};
92
93/// State encapsulating if a the variable creation has been successful,
94/// unsuccessful, or no variable has been created at all.
96 std::optional<bool> S = std::nullopt;
97 VarCreationState() = default;
98 VarCreationState(bool b) : S(b) {}
100
101 operator bool() const { return S && *S; }
102 bool notCreated() const { return !S; }
103};
104
105/// Compilation context for expressions.
106template <class Emitter>
107class Compiler : public ConstStmtVisitor<Compiler<Emitter>, bool>,
108 public Emitter {
109protected:
110 // Aliases for types defined in the emitter.
111 using LabelTy = typename Emitter::LabelTy;
112 using AddrTy = typename Emitter::AddrTy;
113 using OptLabelTy = std::optional<LabelTy>;
114 using CaseMap = llvm::DenseMap<const SwitchCase *, LabelTy>;
115
116 /// Current compilation context.
118 /// Program to link to.
120
121public:
122 /// Initializes the compiler and the backend emitter.
123 template <typename... Tys>
124 Compiler(Context &Ctx, Program &P, Tys &&...Args)
125 : Emitter(Ctx, P, Args...), Ctx(Ctx), P(P) {}
126
127 // Expressions.
128 bool VisitCastExpr(const CastExpr *E);
133 bool VisitParenExpr(const ParenExpr *E);
138 bool VisitVectorBinOp(const BinaryOperator *E);
142 bool VisitCallExpr(const CallExpr *E);
143 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinID);
147 bool VisitGNUNullExpr(const GNUNullExpr *E);
148 bool VisitCXXThisExpr(const CXXThisExpr *E);
152 bool VisitDeclRefExpr(const DeclRefExpr *E);
156 bool VisitInitListExpr(const InitListExpr *E);
158 bool VisitConstantExpr(const ConstantExpr *E);
160 bool VisitMemberExpr(const MemberExpr *E);
179 bool VisitLambdaExpr(const LambdaExpr *E);
181 bool VisitCXXThrowExpr(const CXXThrowExpr *E);
186 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
190 bool VisitChooseExpr(const ChooseExpr *E);
191 bool VisitEmbedExpr(const EmbedExpr *E);
196 bool VisitRequiresExpr(const RequiresExpr *E);
201 bool VisitRecoveryExpr(const RecoveryExpr *E);
208 bool VisitStmtExpr(const StmtExpr *E);
209 bool VisitCXXNewExpr(const CXXNewExpr *E);
211 bool VisitBlockExpr(const BlockExpr *E);
213
214 // Statements.
215 bool visitCompoundStmt(const CompoundStmt *S);
216 bool visitDeclStmt(const DeclStmt *DS);
217 bool visitReturnStmt(const ReturnStmt *RS);
218 bool visitIfStmt(const IfStmt *IS);
219 bool visitWhileStmt(const WhileStmt *S);
220 bool visitDoStmt(const DoStmt *S);
221 bool visitForStmt(const ForStmt *S);
223 bool visitBreakStmt(const BreakStmt *S);
224 bool visitContinueStmt(const ContinueStmt *S);
225 bool visitSwitchStmt(const SwitchStmt *S);
226 bool visitCaseStmt(const CaseStmt *S);
227 bool visitDefaultStmt(const DefaultStmt *S);
228 bool visitAttributedStmt(const AttributedStmt *S);
229 bool visitCXXTryStmt(const CXXTryStmt *S);
230
231protected:
232 bool visitStmt(const Stmt *S);
233 bool visitExpr(const Expr *E, bool DestroyToplevelScope) override;
234 bool visitFunc(const FunctionDecl *F) override;
235
236 bool visitDeclAndReturn(const VarDecl *VD, bool ConstantContext) override;
237
238protected:
239 /// Emits scope cleanup instructions.
240 void emitCleanup();
241
242 /// Returns a record type from a record or pointer type.
244
245 /// Returns a record from a record or pointer type.
247 Record *getRecord(const RecordDecl *RD);
248
249 /// Returns a function for the given FunctionDecl.
250 /// If the function does not exist yet, it is compiled.
251 const Function *getFunction(const FunctionDecl *FD);
252
253 std::optional<PrimType> classify(const Expr *E) const {
254 return Ctx.classify(E);
255 }
256 std::optional<PrimType> classify(QualType Ty) const {
257 return Ctx.classify(Ty);
258 }
259
260 /// Classifies a known primitive type.
262 if (auto T = classify(Ty)) {
263 return *T;
264 }
265 llvm_unreachable("not a primitive type");
266 }
267 /// Classifies a known primitive expression.
268 PrimType classifyPrim(const Expr *E) const {
269 if (auto T = classify(E))
270 return *T;
271 llvm_unreachable("not a primitive type");
272 }
273
274 /// Evaluates an expression and places the result on the stack. If the
275 /// expression is of composite type, a local variable will be created
276 /// and a pointer to said variable will be placed on the stack.
277 bool visit(const Expr *E);
278 /// Compiles an initializer. This is like visit() but it will never
279 /// create a variable and instead rely on a variable already having
280 /// been created. visitInitializer() then relies on a pointer to this
281 /// variable being on top of the stack.
282 bool visitInitializer(const Expr *E);
283 /// Evaluates an expression for side effects and discards the result.
284 bool discard(const Expr *E);
285 /// Just pass evaluation on to \p E. This leaves all the parsing flags
286 /// intact.
287 bool delegate(const Expr *E);
288 /// Creates and initializes a variable from the given decl.
289 VarCreationState visitVarDecl(const VarDecl *VD, bool Toplevel = false);
291 /// Visit an APValue.
292 bool visitAPValue(const APValue &Val, PrimType ValType, const Expr *E);
293 bool visitAPValueInitializer(const APValue &Val, const Expr *E);
294 /// Visit the given decl as if we have a reference to it.
295 bool visitDeclRef(const ValueDecl *D, const Expr *E);
296
297 /// Visits an expression and converts it to a boolean.
298 bool visitBool(const Expr *E);
299
300 bool visitInitList(ArrayRef<const Expr *> Inits, const Expr *ArrayFiller,
301 const Expr *E);
302 bool visitArrayElemInit(unsigned ElemIndex, const Expr *Init);
303
304 /// Creates a local primitive value.
305 unsigned allocateLocalPrimitive(DeclTy &&Decl, PrimType Ty, bool IsConst,
306 bool IsExtended = false);
307
308 /// Allocates a space storing a local given its type.
309 std::optional<unsigned>
311 const ValueDecl *ExtendingDecl = nullptr);
312 unsigned allocateTemporary(const Expr *E);
313
314private:
315 friend class VariableScope<Emitter>;
316 friend class LocalScope<Emitter>;
317 friend class DestructorScope<Emitter>;
318 friend class DeclScope<Emitter>;
319 friend class InitLinkScope<Emitter>;
320 friend class InitStackScope<Emitter>;
321 friend class OptionScope<Emitter>;
322 friend class ArrayIndexScope<Emitter>;
323 friend class SourceLocScope<Emitter>;
324 friend struct InitLink;
325 friend class LoopScope<Emitter>;
326 friend class LabelScope<Emitter>;
327 friend class SwitchScope<Emitter>;
328 friend class StmtExprScope<Emitter>;
329
330 /// Emits a zero initializer.
331 bool visitZeroInitializer(PrimType T, QualType QT, const Expr *E);
332 bool visitZeroRecordInitializer(const Record *R, const Expr *E);
333 bool visitZeroArrayInitializer(QualType T, const Expr *E);
334
335 /// Emits an APSInt constant.
336 bool emitConst(const llvm::APSInt &Value, PrimType Ty, const Expr *E);
337 bool emitConst(const llvm::APSInt &Value, const Expr *E);
338 bool emitConst(const llvm::APInt &Value, const Expr *E) {
339 return emitConst(static_cast<llvm::APSInt>(Value), E);
340 }
341
342 /// Emits an integer constant.
343 template <typename T> bool emitConst(T Value, PrimType Ty, const Expr *E);
344 template <typename T> bool emitConst(T Value, const Expr *E);
345
346 llvm::RoundingMode getRoundingMode(const Expr *E) const {
347 FPOptions FPO = E->getFPFeaturesInEffect(Ctx.getLangOpts());
348
349 if (FPO.getRoundingMode() == llvm::RoundingMode::Dynamic)
350 return llvm::RoundingMode::NearestTiesToEven;
351
352 return FPO.getRoundingMode();
353 }
354
355 uint32_t getFPOptions(const Expr *E) const {
356 return E->getFPFeaturesInEffect(Ctx.getLangOpts()).getAsOpaqueInt();
357 }
358
359 bool emitPrimCast(PrimType FromT, PrimType ToT, QualType ToQT, const Expr *E);
360 PrimType classifyComplexElementType(QualType T) const {
361 assert(T->isAnyComplexType());
362
363 QualType ElemType = T->getAs<ComplexType>()->getElementType();
364
365 return *this->classify(ElemType);
366 }
367
368 PrimType classifyVectorElementType(QualType T) const {
369 assert(T->isVectorType());
370 return *this->classify(T->getAs<VectorType>()->getElementType());
371 }
372
373 bool emitComplexReal(const Expr *SubExpr);
374 bool emitComplexBoolCast(const Expr *E);
375 bool emitComplexComparison(const Expr *LHS, const Expr *RHS,
376 const BinaryOperator *E);
377 bool emitRecordDestruction(const Record *R, SourceInfo Loc);
378 bool emitDestruction(const Descriptor *Desc, SourceInfo Loc);
379 bool emitDummyPtr(const DeclTy &D, const Expr *E);
380 unsigned collectBaseOffset(const QualType BaseType,
381 const QualType DerivedType);
382 bool emitLambdaStaticInvokerBody(const CXXMethodDecl *MD);
383 bool emitBuiltinBitCast(const CastExpr *E);
384 bool compileConstructor(const CXXConstructorDecl *Ctor);
385 bool compileDestructor(const CXXDestructorDecl *Dtor);
386
387 bool checkLiteralType(const Expr *E);
388
389protected:
390 /// Variable to storage mapping.
391 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
392
393 /// OpaqueValueExpr to location mapping.
394 llvm::DenseMap<const OpaqueValueExpr *, unsigned> OpaqueExprs;
395
396 /// Current scope.
398
399 /// Current argument index. Needed to emit ArrayInitIndexExpr.
400 std::optional<uint64_t> ArrayIndex;
401
402 /// DefaultInit- or DefaultArgExpr, needed for SourceLocExpr.
403 const Expr *SourceLocDefaultExpr = nullptr;
404
405 /// Flag indicating if return value is to be discarded.
406 bool DiscardResult = false;
407
408 bool InStmtExpr = false;
409
410 /// Flag inidicating if we're initializing an already created
411 /// variable. This is set in visitInitializer().
412 bool Initializing = false;
413 const ValueDecl *InitializingDecl = nullptr;
414
416 bool InitStackActive = false;
417
418 /// Type of the expression returned by the function.
419 std::optional<PrimType> ReturnType;
420
421 /// Switch case mapping.
423
424 /// Scope to cleanup until when we see a break statement.
426 /// Point to break to.
428 /// Scope to cleanup until when we see a continue statement.
430 /// Point to continue to.
432 /// Default case label.
434};
435
436extern template class Compiler<ByteCodeEmitter>;
437extern template class Compiler<EvalEmitter>;
438
439/// Scope chain managing the variable lifetimes.
440template <class Emitter> class VariableScope {
441public:
443 : Ctx(Ctx), Parent(Ctx->VarScope), ValDecl(VD) {
444 Ctx->VarScope = this;
445 }
446
447 virtual ~VariableScope() { Ctx->VarScope = this->Parent; }
448
449 void add(const Scope::Local &Local, bool IsExtended) {
450 if (IsExtended)
451 this->addExtended(Local);
452 else
453 this->addLocal(Local);
454 }
455
456 virtual void addLocal(const Scope::Local &Local) {
457 if (this->Parent)
458 this->Parent->addLocal(Local);
459 }
460
461 virtual void addExtended(const Scope::Local &Local) {
462 if (this->Parent)
463 this->Parent->addExtended(Local);
464 }
465
466 void addExtended(const Scope::Local &Local, const ValueDecl *ExtendingDecl) {
467 // Walk up the chain of scopes until we find the one for ExtendingDecl.
468 // If there is no such scope, attach it to the parent one.
469 VariableScope *P = this;
470 while (P) {
471 if (P->ValDecl == ExtendingDecl) {
472 P->addLocal(Local);
473 return;
474 }
475 P = P->Parent;
476 if (!P)
477 break;
478 }
479
480 // Use the parent scope.
481 if (this->Parent)
482 this->Parent->addLocal(Local);
483 else
484 this->addLocal(Local);
485 }
486
487 virtual void emitDestruction() {}
488 virtual bool emitDestructors(const Expr *E = nullptr) { return true; }
489 virtual bool destroyLocals(const Expr *E = nullptr) { return true; }
490 VariableScope *getParent() const { return Parent; }
491
492protected:
493 /// Compiler instance.
495 /// Link to the parent scope.
497 const ValueDecl *ValDecl = nullptr;
498};
499
500/// Generic scope for local variables.
501template <class Emitter> class LocalScope : public VariableScope<Emitter> {
502public:
505 : VariableScope<Emitter>(Ctx, VD) {}
506
507 /// Emit a Destroy op for this scope.
508 ~LocalScope() override {
509 if (!Idx)
510 return;
511 this->Ctx->emitDestroy(*Idx, SourceInfo{});
512 removeStoredOpaqueValues();
513 }
514
515 /// Overriden to support explicit destruction.
516 void emitDestruction() override {
517 if (!Idx)
518 return;
519
520 this->emitDestructors();
521 this->Ctx->emitDestroy(*Idx, SourceInfo{});
522 }
523
524 /// Explicit destruction of local variables.
525 bool destroyLocals(const Expr *E = nullptr) override {
526 if (!Idx)
527 return true;
528
529 bool Success = this->emitDestructors(E);
530 this->Ctx->emitDestroy(*Idx, E);
531 this->Idx = std::nullopt;
532 return Success;
533 }
534
535 void addLocal(const Scope::Local &Local) override {
536 if (!Idx) {
537 Idx = this->Ctx->Descriptors.size();
538 this->Ctx->Descriptors.emplace_back();
539 this->Ctx->emitInitScope(*Idx, {});
540 }
541
542 this->Ctx->Descriptors[*Idx].emplace_back(Local);
543 }
544
545 bool emitDestructors(const Expr *E = nullptr) override {
546 if (!Idx)
547 return true;
548 // Emit destructor calls for local variables of record
549 // type with a destructor.
550 for (Scope::Local &Local : llvm::reverse(this->Ctx->Descriptors[*Idx])) {
551 if (!Local.Desc->isPrimitive() && !Local.Desc->isPrimitiveArray()) {
552 if (!this->Ctx->emitGetPtrLocal(Local.Offset, E))
553 return false;
554
555 if (!this->Ctx->emitDestruction(Local.Desc, Local.Desc->getLoc()))
556 return false;
557
558 if (!this->Ctx->emitPopPtr(E))
559 return false;
560 removeIfStoredOpaqueValue(Local);
561 }
562 }
563 return true;
564 }
565
567 if (!Idx)
568 return;
569
570 for (const Scope::Local &Local : this->Ctx->Descriptors[*Idx]) {
571 removeIfStoredOpaqueValue(Local);
572 }
573 }
574
576 if (const auto *OVE =
577 llvm::dyn_cast_if_present<OpaqueValueExpr>(Local.Desc->asExpr())) {
578 if (auto It = this->Ctx->OpaqueExprs.find(OVE);
579 It != this->Ctx->OpaqueExprs.end())
580 this->Ctx->OpaqueExprs.erase(It);
581 };
582 }
583
584 /// Index of the scope in the chain.
585 std::optional<unsigned> Idx;
586};
587
588/// Scope for storage declared in a compound statement.
589template <class Emitter> class BlockScope final : public LocalScope<Emitter> {
590public:
592
593 void addExtended(const Scope::Local &Local) override {
594 // If we to this point, just add the variable as a normal local
595 // variable. It will be destroyed at the end of the block just
596 // like all others.
597 this->addLocal(Local);
598 }
599};
600
601template <class Emitter> class ArrayIndexScope final {
602public:
603 ArrayIndexScope(Compiler<Emitter> *Ctx, uint64_t Index) : Ctx(Ctx) {
604 OldArrayIndex = Ctx->ArrayIndex;
605 Ctx->ArrayIndex = Index;
606 }
607
608 ~ArrayIndexScope() { Ctx->ArrayIndex = OldArrayIndex; }
609
610private:
612 std::optional<uint64_t> OldArrayIndex;
613};
614
615template <class Emitter> class SourceLocScope final {
616public:
617 SourceLocScope(Compiler<Emitter> *Ctx, const Expr *DefaultExpr) : Ctx(Ctx) {
618 assert(DefaultExpr);
619 // We only switch if the current SourceLocDefaultExpr is null.
620 if (!Ctx->SourceLocDefaultExpr) {
621 Enabled = true;
622 Ctx->SourceLocDefaultExpr = DefaultExpr;
623 }
624 }
625
627 if (Enabled)
628 Ctx->SourceLocDefaultExpr = nullptr;
629 }
630
631private:
633 bool Enabled = false;
634};
635
636template <class Emitter> class InitLinkScope final {
637public:
639 Ctx->InitStack.push_back(std::move(Link));
640 }
641
642 ~InitLinkScope() { this->Ctx->InitStack.pop_back(); }
643
644private:
646};
647
648template <class Emitter> class InitStackScope final {
649public:
651 : Ctx(Ctx), OldValue(Ctx->InitStackActive) {
652 Ctx->InitStackActive = Active;
653 }
654
655 ~InitStackScope() { this->Ctx->InitStackActive = OldValue; }
656
657private:
659 bool OldValue;
660};
661
662} // namespace interp
663} // namespace clang
664
665#endif
NodeId Parent
Definition: ASTDiff.cpp:191
StringRef P
const Decl * D
Expr * E
llvm::MachO::Record Record
Definition: MachO.h:31
SourceLocation Loc
Definition: SemaObjC.cpp:759
__device__ __2f16 b
#define bool
Definition: amdgpuintrin.h:20
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
Definition: APValue.h:122
AbstractConditionalOperator - An abstract base class for ConditionalOperator and BinaryConditionalOpe...
Definition: Expr.h:4224
AddrLabelExpr - The GNU address of label extension, representing &&label.
Definition: Expr.h:4421
Represents the index of the current element of an array being initialized by an ArrayInitLoopExpr.
Definition: Expr.h:5805
Represents a loop initializing the elements of an array.
Definition: Expr.h:5752
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
Definition: Expr.h:2718
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
Definition: ExprCXX.h:2853
Represents an attribute applied to a statement.
Definition: Stmt.h:2107
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3909
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition: Expr.h:6414
BreakStmt - This represents a break.
Definition: Stmt.h:3007
Represents binding an expression to a temporary.
Definition: ExprCXX.h:1491
A boolean literal, per ([C++ lex.bool] Boolean literals).
Definition: ExprCXX.h:720
Represents a call to a C++ constructor.
Definition: ExprCXX.h:1546
A default argument (C++ [dcl.fct.default]).
Definition: ExprCXX.h:1268
A use of a default initializer in a constructor or in aggregate initialization.
Definition: ExprCXX.h:1375
Represents a delete expression for memory deallocation and destructor calls, e.g.
Definition: ExprCXX.h:2498
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
Definition: StmtCXX.h:135
Represents a call to an inherited base class constructor from an inheriting constructor.
Definition: ExprCXX.h:1737
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition: ExprCXX.h:2241
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
Definition: ExprCXX.h:4126
The null pointer literal (C++11 [lex.nullptr])
Definition: ExprCXX.h:765
Represents a list-initialization with parenthesis.
Definition: ExprCXX.h:4960
A C++ reinterpret_cast expression (C++ [expr.reinterpret.cast]).
Definition: ExprCXX.h:523
A rewritten comparison expression that was originally written using operator syntax.
Definition: ExprCXX.h:283
An expression "T()" which creates an rvalue of a non-class type T.
Definition: ExprCXX.h:2182
Implicit construction of a std::initializer_list<T> object from an array temporary within list-initia...
Definition: ExprCXX.h:797
Represents the this expression in C++.
Definition: ExprCXX.h:1152
A C++ throw-expression (C++ [except.throw]).
Definition: ExprCXX.h:1206
CXXTryStmt - A C++ try block, including all handlers.
Definition: StmtCXX.h:69
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
Definition: ExprCXX.h:845
A Microsoft C++ __uuidof expression, which gets the _GUID that corresponds to the supplied type or ex...
Definition: ExprCXX.h:1066
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition: Expr.h:2874
CaseStmt - Represent a case statement.
Definition: Stmt.h:1828
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
Definition: Expr.h:3547
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
Definition: Expr.h:4641
CompoundAssignOperator - For compound assignments (e.g.
Definition: Expr.h:4171
CompoundLiteralExpr - [C99 6.5.2.5].
Definition: Expr.h:3477
CompoundStmt - This represents a group of statements like { stmt stmt }.
Definition: Stmt.h:1628
Represents the specialization of a concept - evaluates to a prvalue of type bool.
Definition: ExprConcepts.h:42
ConstStmtVisitor - This class implements a simple visitor for Stmt subclasses.
Definition: StmtVisitor.h:195
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
Definition: Expr.h:1077
ContinueStmt - This represents a continue.
Definition: Stmt.h:2977
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
Definition: Expr.h:4582
A reference to a declared variable, function, enum, etc.
Definition: Expr.h:1265
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Definition: Stmt.h:1519
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
DoStmt - This represents a 'do/while' stmt.
Definition: Stmt.h:2752
Represents a reference to #emded data.
Definition: Expr.h:4916
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
Definition: ExprCXX.h:3474
This represents one expression.
Definition: Expr.h:110
An expression trait intrinsic.
Definition: ExprCXX.h:2924
ExtVectorElementExpr - This represents access to specific elements of a vector, and may occur on the ...
Definition: Expr.h:6354
RoundingMode getRoundingMode() const
Definition: LangOptions.h:912
ForStmt - This represents a 'for (init;cond;inc)' stmt.
Definition: Stmt.h:2808
Represents a function declaration or definition.
Definition: Decl.h:1935
GNUNullExpr - Implements the GNU __null extension, which is a name for a null pointer constant that h...
Definition: Expr.h:4716
Represents a C11 generic selection.
Definition: Expr.h:5966
IfStmt - This represents an if/then/else.
Definition: Stmt.h:2165
ImaginaryLiteral - We support imaginary integer and floating point literals, like "1....
Definition: Expr.h:1717
Represents an implicitly-generated value initialization of an object of a given type.
Definition: Expr.h:5841
Describes an C or C++ initializer list.
Definition: Expr.h:5088
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Definition: ExprCXX.h:1954
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Definition: ExprCXX.h:4734
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition: Expr.h:3236
ObjCBoolLiteralExpr - Objective-C Boolean Literal.
Definition: ExprObjC.h:87
ObjCBoxedExpr - used for generalized expression boxing.
Definition: ExprObjC.h:127
ObjCEncodeExpr, used for @encode in Objective-C.
Definition: ExprObjC.h:410
ObjCStringLiteral, used for Objective-C string literals i.e.
Definition: ExprObjC.h:51
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
Definition: Expr.h:2519
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition: Expr.h:1173
ParenExpr - This represents a parenthesized expression, e.g.
Definition: Expr.h:2170
[C99 6.4.2.2] - A predefined identifier such as func.
Definition: Expr.h:1991
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
Definition: Expr.h:6546
A (possibly-)qualified type.
Definition: Type.h:929
Represents a struct/union/class.
Definition: Decl.h:4162
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
Definition: Type.h:6077
Frontend produces RecoveryExprs on semantic errors that prevent creating other well-formed expression...
Definition: Expr.h:7258
C++2a [expr.prim.req]: A requires-expression provides a concise way to express requirements on templa...
Definition: ExprConcepts.h:502
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
Definition: Stmt.h:3046
ShuffleVectorExpr - clang-specific builtin-in function __builtin_shufflevector.
Definition: Expr.h:4514
Represents an expression that computes the length of a parameter pack.
Definition: ExprCXX.h:4258
Represents a function call to one of __builtin_LINE(), __builtin_COLUMN(), __builtin_FUNCTION(),...
Definition: Expr.h:4810
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
Definition: Expr.h:4466
Stmt - This represents one statement.
Definition: Stmt.h:84
StringLiteral - This represents a string literal expression, e.g.
Definition: Expr.h:1778
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition: ExprCXX.h:4490
SwitchStmt - This represents a 'switch' stmt.
Definition: Stmt.h:2415
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
Definition: ExprCXX.h:2768
bool isAnyComplexType() const
Definition: Type.h:8299
bool isVectorType() const
Definition: Type.h:8303
const T * getAs() const
Member-template getAs<specific type>'.
Definition: Type.h:8736
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
Definition: Expr.h:2622
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition: Expr.h:2232
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition: Decl.h:671
Represents a variable declaration or definition.
Definition: Decl.h:882
WhileStmt - This represents a 'while' stmt.
Definition: Stmt.h:2611
ArrayIndexScope(Compiler< Emitter > *Ctx, uint64_t Index)
Definition: Compiler.h:603
Scope for storage declared in a compound statement.
Definition: Compiler.h:589
BlockScope(Compiler< Emitter > *Ctx)
Definition: Compiler.h:591
void addExtended(const Scope::Local &Local) override
Definition: Compiler.h:593
Compilation context for expressions.
Definition: Compiler.h:108
std::optional< PrimType > classify(const Expr *E) const
Definition: Compiler.h:253
llvm::SmallVector< InitLink > InitStack
Definition: Compiler.h:415
OptLabelTy BreakLabel
Point to break to.
Definition: Compiler.h:427
bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E)
Definition: Compiler.cpp:2204
bool VisitCXXDeleteExpr(const CXXDeleteExpr *E)
Definition: Compiler.cpp:3408
bool VisitOffsetOfExpr(const OffsetOfExpr *E)
Definition: Compiler.cpp:3127
bool visitContinueStmt(const ContinueStmt *S)
Definition: Compiler.cpp:5273
bool VisitCharacterLiteral(const CharacterLiteral *E)
Definition: Compiler.cpp:2421
PrimType classifyPrim(const Expr *E) const
Classifies a known primitive expression.
Definition: Compiler.h:268
bool VisitCXXParenListInitExpr(const CXXParenListInitExpr *E)
Definition: Compiler.cpp:1994
bool VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E)
Definition: Compiler.cpp:3518
bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E)
Definition: Compiler.cpp:2754
bool visitBool(const Expr *E)
Visits an expression and converts it to a boolean.
Definition: Compiler.cpp:3843
bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E)
Definition: Compiler.cpp:4798
bool visitDeclAndReturn(const VarDecl *VD, bool ConstantContext) override
Toplevel visitDeclAndReturn().
Definition: Compiler.cpp:4286
PrimType classifyPrim(QualType Ty) const
Classifies a known primitive type.
Definition: Compiler.h:261
bool VisitTypeTraitExpr(const TypeTraitExpr *E)
Definition: Compiler.cpp:2819
bool VisitLambdaExpr(const LambdaExpr *E)
Definition: Compiler.cpp:2835
bool VisitMemberExpr(const MemberExpr *E)
Definition: Compiler.cpp:2148
llvm::DenseMap< const OpaqueValueExpr *, unsigned > OpaqueExprs
OpaqueValueExpr to location mapping.
Definition: Compiler.h:394
bool VisitBinaryOperator(const BinaryOperator *E)
Definition: Compiler.cpp:793
bool visitAttributedStmt(const AttributedStmt *S)
Definition: Compiler.cpp:5368
bool VisitPackIndexingExpr(const PackIndexingExpr *E)
Definition: Compiler.cpp:3557
bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E)
Definition: Compiler.cpp:1692
bool VisitCallExpr(const CallExpr *E)
Definition: Compiler.cpp:4597
std::optional< uint64_t > ArrayIndex
Current argument index. Needed to emit ArrayInitIndexExpr.
Definition: Compiler.h:400
bool VisitPseudoObjectExpr(const PseudoObjectExpr *E)
Definition: Compiler.cpp:3533
bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E)
Definition: Compiler.cpp:2895
const Function * getFunction(const FunctionDecl *FD)
Returns a function for the given FunctionDecl.
Definition: Compiler.cpp:4201
void emitCleanup()
Emits scope cleanup instructions.
Definition: Compiler.cpp:6244
bool VisitFixedPointBinOp(const BinaryOperator *E)
Definition: Compiler.cpp:1522
bool VisitCastExpr(const CastExpr *E)
Definition: Compiler.cpp:195
bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E)
Definition: Compiler.cpp:2386
bool VisitFixedPointUnaryOperator(const UnaryOperator *E)
Definition: Compiler.cpp:1609
bool VisitComplexUnaryOperator(const UnaryOperator *E)
Definition: Compiler.cpp:5894
std::optional< PrimType > classify(QualType Ty) const
Definition: Compiler.h:256
llvm::DenseMap< const SwitchCase *, LabelTy > CaseMap
Definition: Compiler.h:114
bool visitDeclStmt(const DeclStmt *DS)
Definition: Compiler.cpp:4970
bool VisitBlockExpr(const BlockExpr *E)
Definition: Compiler.cpp:3424
bool visitAPValue(const APValue &Val, PrimType ValType, const Expr *E)
Visit an APValue.
Definition: Compiler.cpp:4458
bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E)
Definition: Compiler.cpp:3162
bool VisitLogicalBinOp(const BinaryOperator *E)
Definition: Compiler.cpp:1054
bool visitCompoundStmt(const CompoundStmt *S)
Definition: Compiler.cpp:4961
std::optional< PrimType > ReturnType
Type of the expression returned by the function.
Definition: Compiler.h:419
Context & Ctx
Current compilation context.
Definition: Compiler.h:117
bool visitDeclRef(const ValueDecl *D, const Expr *E)
Visit the given decl as if we have a reference to it.
Definition: Compiler.cpp:6108
bool visitBreakStmt(const BreakStmt *S)
Definition: Compiler.cpp:5262
bool visitExpr(const Expr *E, bool DestroyToplevelScope) override
Definition: Compiler.cpp:4206
bool visitForStmt(const ForStmt *S)
Definition: Compiler.cpp:5155
bool VisitDeclRefExpr(const DeclRefExpr *E)
Definition: Compiler.cpp:6239
bool VisitOpaqueValueExpr(const OpaqueValueExpr *E)
Definition: Compiler.cpp:2243
bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E)
Definition: Compiler.cpp:2213
OptLabelTy DefaultLabel
Default case label.
Definition: Compiler.h:433
bool VisitStmtExpr(const StmtExpr *E)
Definition: Compiler.cpp:3772
std::optional< unsigned > allocateLocal(DeclTy &&Decl, QualType Ty=QualType(), const ValueDecl *ExtendingDecl=nullptr)
Allocates a space storing a local given its type.
Definition: Compiler.cpp:4120
bool VisitFixedPointLiteral(const FixedPointLiteral *E)
Definition: Compiler.cpp:775
bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E)
Definition: Compiler.cpp:4817
VariableScope< Emitter > * VarScope
Current scope.
Definition: Compiler.h:397
VariableScope< Emitter > * ContinueVarScope
Scope to cleanup until when we see a continue statement.
Definition: Compiler.h:429
bool VisitCXXNewExpr(const CXXNewExpr *E)
Definition: Compiler.cpp:3276
const ValueDecl * InitializingDecl
Definition: Compiler.h:413
bool VisitCompoundAssignOperator(const CompoundAssignOperator *E)
Definition: Compiler.cpp:2538
bool visitArrayElemInit(unsigned ElemIndex, const Expr *Init)
Pointer to the array(not the element!) must be on the stack when calling this.
Definition: Compiler.cpp:1967
bool delegate(const Expr *E)
Just pass evaluation on to E.
Definition: Compiler.cpp:3800
bool discard(const Expr *E)
Evaluates an expression for side effects and discards the result.
Definition: Compiler.cpp:3794
bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E)
Definition: Compiler.cpp:4805
CaseMap CaseLabels
Switch case mapping.
Definition: Compiler.h:422
Record * getRecord(QualType Ty)
Returns a record from a record or pointer type.
Definition: Compiler.cpp:4189
bool visit(const Expr *E)
Evaluates an expression and places the result on the stack.
Definition: Compiler.cpp:3807
const RecordType * getRecordTy(QualType Ty)
Returns a record type from a record or pointer type.
Definition: Compiler.cpp:4183
bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E)
Definition: Compiler.cpp:3733
bool visitInitList(ArrayRef< const Expr * > Inits, const Expr *ArrayFiller, const Expr *E)
Definition: Compiler.cpp:1722
bool VisitSizeOfPackExpr(const SizeOfPackExpr *E)
Definition: Compiler.cpp:3221
bool VisitPredefinedExpr(const PredefinedExpr *E)
Definition: Compiler.cpp:2874
bool VisitSourceLocExpr(const SourceLocExpr *E)
Definition: Compiler.cpp:3071
Compiler(Context &Ctx, Program &P, Tys &&...Args)
Initializes the compiler and the backend emitter.
Definition: Compiler.h:124
bool VisitExtVectorElementExpr(const ExtVectorElementExpr *E)
Definition: Compiler.cpp:3658
bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
Definition: Compiler.cpp:2379
bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E)
Definition: Compiler.cpp:2828
bool visitInitializer(const Expr *E)
Compiles an initializer.
Definition: Compiler.cpp:3835
const Expr * SourceLocDefaultExpr
DefaultInit- or DefaultArgExpr, needed for SourceLocExpr.
Definition: Compiler.h:403
bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E)
Definition: Compiler.cpp:2748
bool VisitPointerArithBinOp(const BinaryOperator *E)
Perform addition/subtraction of a pointer and an integer or subtraction of two pointers.
Definition: Compiler.cpp:977
bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E)
Definition: Compiler.cpp:3237
bool visitDefaultStmt(const DefaultStmt *S)
Definition: Compiler.cpp:5362
typename Emitter::LabelTy LabelTy
Definition: Compiler.h:111
VarCreationState visitDecl(const VarDecl *VD)
Definition: Compiler.cpp:4258
bool visitStmt(const Stmt *S)
Definition: Compiler.cpp:4911
bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E)
Definition: Compiler.cpp:3470
bool visitAPValueInitializer(const APValue &Val, const Expr *E)
Definition: Compiler.cpp:4485
bool VisitVectorUnaryOperator(const UnaryOperator *E)
Definition: Compiler.cpp:6001
bool VisitCXXConstructExpr(const CXXConstructExpr *E)
Definition: Compiler.cpp:2951
bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E)
Definition: Compiler.cpp:4825
bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E)
Definition: Compiler.cpp:3720
bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E)
Definition: Compiler.cpp:3245
bool VisitRecoveryExpr(const RecoveryExpr *E)
Definition: Compiler.cpp:3562
bool VisitRequiresExpr(const RequiresExpr *E)
Definition: Compiler.cpp:3510
bool Initializing
Flag inidicating if we're initializing an already created variable.
Definition: Compiler.h:412
bool visitReturnStmt(const ReturnStmt *RS)
Definition: Compiler.cpp:4987
bool VisitCXXThrowExpr(const CXXThrowExpr *E)
Definition: Compiler.cpp:2887
bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
Definition: Compiler.cpp:2000
bool VisitChooseExpr(const ChooseExpr *E)
Definition: Compiler.cpp:3232
bool visitFunc(const FunctionDecl *F) override
Definition: Compiler.cpp:5637
bool visitCXXForRangeStmt(const CXXForRangeStmt *S)
Definition: Compiler.cpp:5206
bool visitCaseStmt(const CaseStmt *S)
Definition: Compiler.cpp:5356
bool VisitComplexBinOp(const BinaryOperator *E)
Definition: Compiler.cpp:1115
llvm::DenseMap< const ValueDecl *, Scope::Local > Locals
Variable to storage mapping.
Definition: Compiler.h:391
bool VisitAbstractConditionalOperator(const AbstractConditionalOperator *E)
Definition: Compiler.cpp:2279
bool VisitCXXTypeidExpr(const CXXTypeidExpr *E)
Definition: Compiler.cpp:3438
bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinID)
Definition: Compiler.cpp:4548
OptLabelTy ContinueLabel
Point to continue to.
Definition: Compiler.h:431
bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E)
Definition: Compiler.cpp:1628
typename Emitter::AddrTy AddrTy
Definition: Compiler.h:112
bool VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *E)
Definition: Compiler.cpp:3527
bool VisitUnaryOperator(const UnaryOperator *E)
Definition: Compiler.cpp:5663
bool VisitFloatCompoundAssignOperator(const CompoundAssignOperator *E)
Definition: Compiler.cpp:2428
bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
Definition: Compiler.cpp:3226
bool visitDoStmt(const DoStmt *S)
Definition: Compiler.cpp:5122
bool VisitIntegerLiteral(const IntegerLiteral *E)
Definition: Compiler.cpp:737
bool VisitInitListExpr(const InitListExpr *E)
Definition: Compiler.cpp:1989
bool VisitVectorBinOp(const BinaryOperator *E)
Definition: Compiler.cpp:1338
bool VisitStringLiteral(const StringLiteral *E)
Definition: Compiler.cpp:2322
bool VisitParenExpr(const ParenExpr *E)
Definition: Compiler.cpp:788
bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E)
Definition: Compiler.cpp:2942
bool VisitShuffleVectorExpr(const ShuffleVectorExpr *E)
Definition: Compiler.cpp:3615
bool VisitPointerCompoundAssignOperator(const CompoundAssignOperator *E)
Definition: Compiler.cpp:2501
VariableScope< Emitter > * BreakVarScope
Scope to cleanup until when we see a break statement.
Definition: Compiler.h:425
std::optional< LabelTy > OptLabelTy
Definition: Compiler.h:113
bool DiscardResult
Flag indicating if return value is to be discarded.
Definition: Compiler.h:406
bool VisitEmbedExpr(const EmbedExpr *E)
Definition: Compiler.cpp:2022
bool VisitConvertVectorExpr(const ConvertVectorExpr *E)
Definition: Compiler.cpp:3577
bool VisitCXXThisExpr(const CXXThisExpr *E)
Definition: Compiler.cpp:4846
bool VisitConstantExpr(const ConstantExpr *E)
Definition: Compiler.cpp:2006
unsigned allocateTemporary(const Expr *E)
Definition: Compiler.cpp:4162
bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E)
Definition: Compiler.cpp:2051
bool visitSwitchStmt(const SwitchStmt *S)
Definition: Compiler.cpp:5284
bool VisitCXXUuidofExpr(const CXXUuidofExpr *E)
Definition: Compiler.cpp:3476
unsigned allocateLocalPrimitive(DeclTy &&Decl, PrimType Ty, bool IsConst, bool IsExtended=false)
Creates a local primitive value.
Definition: Compiler.cpp:4095
bool VisitExprWithCleanups(const ExprWithCleanups *E)
Definition: Compiler.cpp:2661
bool visitWhileStmt(const WhileStmt *S)
Definition: Compiler.cpp:5086
bool visitIfStmt(const IfStmt *IS)
Definition: Compiler.cpp:5022
bool VisitAddrLabelExpr(const AddrLabelExpr *E)
Definition: Compiler.cpp:3567
bool VisitFloatingLiteral(const FloatingLiteral *E)
Definition: Compiler.cpp:745
Program & P
Program to link to.
Definition: Compiler.h:119
bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E)
Definition: Compiler.cpp:2669
bool VisitGNUNullExpr(const GNUNullExpr *E)
Definition: Compiler.cpp:4835
bool VisitImaginaryLiteral(const ImaginaryLiteral *E)
Definition: Compiler.cpp:753
bool VisitSYCLUniqueStableNameExpr(const SYCLUniqueStableNameExpr *E)
Definition: Compiler.cpp:2397
VarCreationState visitVarDecl(const VarDecl *VD, bool Toplevel=false)
Creates and initializes a variable from the given decl.
Definition: Compiler.cpp:4347
bool visitCXXTryStmt(const CXXTryStmt *S)
Definition: Compiler.cpp:5399
Holds all information required to evaluate constexpr code in a module.
Definition: Context.h:40
const LangOptions & getLangOpts() const
Returns the language options.
Definition: Context.cpp:133
std::optional< PrimType > classify(QualType T) const
Classifies a type.
Definition: Context.cpp:135
Scope used to handle temporaries in toplevel variable declarations.
Definition: Compiler.cpp:29
Bytecode function.
Definition: Function.h:81
InitLinkScope(Compiler< Emitter > *Ctx, InitLink &&Link)
Definition: Compiler.h:638
InitStackScope(Compiler< Emitter > *Ctx, bool Active)
Definition: Compiler.h:650
Scope managing label targets.
Definition: Compiler.cpp:104
Generic scope for local variables.
Definition: Compiler.h:501
LocalScope(Compiler< Emitter > *Ctx)
Definition: Compiler.h:503
~LocalScope() override
Emit a Destroy op for this scope.
Definition: Compiler.h:508
bool destroyLocals(const Expr *E=nullptr) override
Explicit destruction of local variables.
Definition: Compiler.h:525
LocalScope(Compiler< Emitter > *Ctx, const ValueDecl *VD)
Definition: Compiler.h:504
bool emitDestructors(const Expr *E=nullptr) override
Definition: Compiler.h:545
void emitDestruction() override
Overriden to support explicit destruction.
Definition: Compiler.h:516
void removeIfStoredOpaqueValue(const Scope::Local &Local)
Definition: Compiler.h:575
void addLocal(const Scope::Local &Local) override
Definition: Compiler.h:535
std::optional< unsigned > Idx
Index of the scope in the chain.
Definition: Compiler.h:585
Sets the context for break/continue statements.
Definition: Compiler.cpp:115
Scope used to handle initialization methods.
Definition: Compiler.cpp:53
The program contains and links the bytecode for all functions.
Definition: Program.h:39
Structure/Class descriptor.
Definition: Record.h:25
Describes the statement/declaration an opcode was generated from.
Definition: Source.h:77
SourceLocScope(Compiler< Emitter > *Ctx, const Expr *DefaultExpr)
Definition: Compiler.h:617
Scope chain managing the variable lifetimes.
Definition: Compiler.h:440
virtual void addExtended(const Scope::Local &Local)
Definition: Compiler.h:461
void addExtended(const Scope::Local &Local, const ValueDecl *ExtendingDecl)
Definition: Compiler.h:466
void add(const Scope::Local &Local, bool IsExtended)
Definition: Compiler.h:449
Compiler< Emitter > * Ctx
Compiler instance.
Definition: Compiler.h:494
virtual bool emitDestructors(const Expr *E=nullptr)
Definition: Compiler.h:488
virtual bool destroyLocals(const Expr *E=nullptr)
Definition: Compiler.h:489
VariableScope * Parent
Link to the parent scope.
Definition: Compiler.h:496
virtual void addLocal(const Scope::Local &Local)
Definition: Compiler.h:456
VariableScope * getParent() const
Definition: Compiler.h:490
VariableScope(Compiler< Emitter > *Ctx, const ValueDecl *VD)
Definition: Compiler.h:442
virtual void emitDestruction()
Definition: Compiler.h:487
Defines the clang::TargetInfo interface.
PrimType
Enumeration of the primitive types of the VM.
Definition: PrimType.h:34
llvm::PointerUnion< const Decl *, const Expr * > DeclTy
Definition: Descriptor.h:29
The JSON file list parser is used to communicate input to InstallAPI.
@ Link
'link' clause, allowed on 'declare' construct.
const FunctionProtoType * T
@ Success
Template argument deduction was successful.
Information about a local's storage.
Definition: Function.h:39
State encapsulating if a the variable creation has been successful, unsuccessful, or no variable has ...
Definition: Compiler.h:95
static VarCreationState NotCreated()
Definition: Compiler.h:99
std::optional< bool > S
Definition: Compiler.h:96