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 "DeclOrExpr.h"
18#include "EvalEmitter.h"
19#include "Pointer.h"
20#include "PrimType.h"
21#include "Record.h"
22#include "clang/AST/Decl.h"
23#include "clang/AST/Expr.h"
24#include "clang/AST/StmtVisitor.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;
44template <class Emitter> class LocOverrideScope;
45
46template <class Emitter> class Compiler;
47struct InitLink {
48public:
49 enum {
50 K_This = 0,
51 K_Field = 1,
52 K_Base = 2,
53 K_Temp = 3,
54 K_Decl = 4,
55 K_Elem = 6,
56 K_RVO = 7,
57 K_InitList = 8,
58 K_DIE = 9,
59 };
60
61 static InitLink This() { return InitLink{K_This}; }
62 static InitLink InitList() { return InitLink{K_InitList}; }
63 static InitLink RVO() { return InitLink{K_RVO}; }
64 static InitLink DIE() { return InitLink{K_DIE}; }
65 static InitLink Field(unsigned Offset) {
66 InitLink IL{K_Field};
67 IL.Offset = Offset;
68 return IL;
69 }
70 static InitLink Base(unsigned Offset) {
71 InitLink IL{K_Base};
72 IL.Offset = Offset;
73 return IL;
74 }
75 static InitLink Temp(unsigned Offset) {
76 InitLink IL{K_Temp};
77 IL.Offset = Offset;
78 return IL;
79 }
80 static InitLink Decl(const ValueDecl *D) {
81 InitLink IL{K_Decl};
82 IL.D = D;
83 return IL;
84 }
85 static InitLink Elem(unsigned Index) {
86 InitLink IL{K_Elem};
87 IL.Offset = Index;
88 return IL;
89 }
90
91 InitLink(uint8_t Kind) : Kind(Kind) {}
92 template <class Emitter>
93 bool emit(Compiler<Emitter> *Ctx, const Expr *E) const;
94
95 uint32_t Kind;
96 union {
97 unsigned Offset;
98 const ValueDecl *D;
99 };
100};
101
102/// State encapsulating if a the variable creation has been successful,
103/// unsuccessful, or no variable has been created at all.
104struct VarCreationState {
105 std::optional<bool> S = std::nullopt;
106 VarCreationState() = default;
107 VarCreationState(bool b) : S(b) {}
108 static VarCreationState NotCreated() { return VarCreationState(); }
109
110 operator bool() const { return S && *S; }
111 bool notCreated() const { return !S; }
112};
113
114enum class ScopeKind { Block, FullExpression, Call };
115
116/// Compilation context for expressions.
117template <class Emitter>
118class Compiler final : public ConstStmtVisitor<Compiler<Emitter>, bool>,
119 public Emitter {
120protected:
121 // Aliases for types defined in the emitter.
122 using LabelTy = typename Emitter::LabelTy;
123 using AddrTy = typename Emitter::AddrTy;
124 using OptLabelTy = UnsignedOrNone;
125 using CaseMap = llvm::DenseMap<const SwitchCase *, LabelTy>;
126
127 struct LabelInfo {
128 const Stmt *Name;
129 const VariableScope<Emitter> *BreakOrContinueScope;
130 OptLabelTy BreakLabel;
131 OptLabelTy ContinueLabel;
132 OptLabelTy DefaultLabel;
133 LabelInfo(const Stmt *Name, OptLabelTy BreakLabel, OptLabelTy ContinueLabel,
134 OptLabelTy DefaultLabel,
135 const VariableScope<Emitter> *BreakOrContinueScope)
136 : Name(Name), BreakOrContinueScope(BreakOrContinueScope),
137 BreakLabel(BreakLabel), ContinueLabel(ContinueLabel),
138 DefaultLabel(DefaultLabel) {}
139 };
140
141 /// Current compilation context.
142 Context &Ctx;
143 /// Program to link to.
144 Program &P;
145
146public:
147 /// Initializes the compiler and the backend emitter.
148 template <typename... Tys>
149 Compiler(Context &Ctx, Program &P, Tys &&...Args)
150 : Emitter(Ctx, P, Args...), Ctx(Ctx), P(P) {}
151
152 // Expressions.
153 bool VisitCastExpr(const CastExpr *E);
154 bool VisitBuiltinBitCastExpr(const BuiltinBitCastExpr *E);
155 bool VisitIntegerLiteral(const IntegerLiteral *E);
156 bool VisitFloatingLiteral(const FloatingLiteral *E);
157 bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
158 bool VisitFixedPointLiteral(const FixedPointLiteral *E);
159 bool VisitParenExpr(const ParenExpr *E);
160 bool VisitBinaryOperator(const BinaryOperator *E);
161 bool VisitLogicalBinOp(const BinaryOperator *E);
162 bool VisitPointerArithBinOp(const BinaryOperator *E);
163 bool VisitComplexBinOp(const BinaryOperator *E);
164 bool VisitVectorBinOp(const BinaryOperator *E);
165 bool VisitFixedPointBinOp(const BinaryOperator *E);
166 bool VisitFixedPointUnaryOperator(const UnaryOperator *E);
167 bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E);
168 bool VisitCallExpr(const CallExpr *E);
169 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinID);
170 bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E);
171 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E);
172 bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E);
173 bool VisitGNUNullExpr(const GNUNullExpr *E);
174 bool VisitCXXThisExpr(const CXXThisExpr *E);
175 bool VisitUnaryOperator(const UnaryOperator *E);
176 bool VisitVectorUnaryOperator(const UnaryOperator *E);
177 bool VisitComplexUnaryOperator(const UnaryOperator *E);
178 bool VisitDeclRefExpr(const DeclRefExpr *E);
179 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E);
180 bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E);
181 bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
182 bool VisitInitListExpr(const InitListExpr *E);
183 bool VisitCXXParenListInitExpr(const CXXParenListInitExpr *E);
184 bool VisitConstantExpr(const ConstantExpr *E);
185 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
186 bool VisitMemberExpr(const MemberExpr *E);
187 bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E);
188 bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
189 bool VisitOpaqueValueExpr(const OpaqueValueExpr *E);
190 bool VisitAbstractConditionalOperator(const AbstractConditionalOperator *E);
191 bool VisitStringLiteral(const StringLiteral *E);
192 bool VisitObjCStringLiteral(const ObjCStringLiteral *E);
193 bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E);
194 bool VisitSYCLUniqueStableNameExpr(const SYCLUniqueStableNameExpr *E);
195 bool VisitCharacterLiteral(const CharacterLiteral *E);
196 bool VisitCompoundAssignOperator(const CompoundAssignOperator *E);
197 bool VisitFloatCompoundAssignOperator(const CompoundAssignOperator *E);
198 bool VisitPointerCompoundAssignOperator(const CompoundAssignOperator *E);
199 bool VisitExprWithCleanups(const ExprWithCleanups *E);
200 bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
201 bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E);
202 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
203 bool VisitTypeTraitExpr(const TypeTraitExpr *E);
204 bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E);
205 bool VisitLambdaExpr(const LambdaExpr *E);
206 bool VisitPredefinedExpr(const PredefinedExpr *E);
207 bool VisitCXXThrowExpr(const CXXThrowExpr *E);
208 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E);
209 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E);
210 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
211 bool VisitCXXConstructExpr(const CXXConstructExpr *E);
212 bool VisitSourceLocExpr(const SourceLocExpr *E);
213 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
214 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E);
215 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
216 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E);
217 bool VisitChooseExpr(const ChooseExpr *E);
218 bool VisitEmbedExpr(const EmbedExpr *E);
219 bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E);
220 bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
221 bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E);
222 bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
223 bool VisitRequiresExpr(const RequiresExpr *E);
224 bool VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E);
225 bool VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *E);
226 bool VisitPseudoObjectExpr(const PseudoObjectExpr *E);
227 bool VisitPackIndexingExpr(const PackIndexingExpr *E);
228 bool VisitRecoveryExpr(const RecoveryExpr *E);
229 bool VisitAddrLabelExpr(const AddrLabelExpr *E);
230 bool VisitConvertVectorExpr(const ConvertVectorExpr *E);
231 bool VisitShuffleVectorExpr(const ShuffleVectorExpr *E);
232 bool VisitExtVectorElementExpr(const ExtVectorElementExpr *E);
233 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E);
234 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
235 bool VisitStmtExpr(const StmtExpr *E);
236 bool VisitCXXNewExpr(const CXXNewExpr *E);
237 bool VisitCXXDeleteExpr(const CXXDeleteExpr *E);
238 bool VisitBlockExpr(const BlockExpr *E);
239 bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
240 bool VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
241 bool VisitObjCArrayLiteral(const ObjCArrayLiteral *E);
242 bool VisitDesignatedInitUpdateExpr(const DesignatedInitUpdateExpr *E);
243
244 // Statements.
245 bool visitCompoundStmt(const CompoundStmt *S);
246 bool visitDeclStmt(const DeclStmt *DS, bool EvaluateConditionDecl = false);
247 bool visitReturnStmt(const ReturnStmt *RS);
248 bool visitIfStmt(const IfStmt *IS);
249 bool visitWhileStmt(const WhileStmt *S);
250 bool visitDoStmt(const DoStmt *S);
251 bool visitForStmt(const ForStmt *S);
252 bool visitCXXForRangeStmt(const CXXForRangeStmt *S);
253 bool visitBreakStmt(const BreakStmt *S);
254 bool visitContinueStmt(const ContinueStmt *S);
255 bool visitSwitchStmt(const SwitchStmt *S);
256 bool visitCaseStmt(const CaseStmt *S);
257 bool visitDefaultStmt(const DefaultStmt *S);
258 bool visitAttributedStmt(const AttributedStmt *S);
259 bool visitCXXTryStmt(const CXXTryStmt *S);
260 bool
261 visitCXXExpansionStmtInstantiation(const CXXExpansionStmtInstantiation *S);
262
263protected:
264 bool visitStmt(const Stmt *S);
265 bool visitExpr(const Expr *E, bool DestroyToplevelScope) override;
266 bool visitLValueExpr(const Expr *E, bool DestroyToplevelScope) override;
267 bool visitFunc(const FunctionDecl *F) override;
268
269 bool visitDeclAndReturn(const VarDecl *VD, const Expr *Init,
270 bool ConstantContext) override;
271 bool visitDtorCall(const VarDecl *VD, const APValue &Value) override;
272 bool visitWithSubstitutions(const FunctionDecl *Callee,
273 ArrayRef<const Expr *> Args, const Expr *This,
274 const Expr *Condition) override;
275
276protected:
277 /// Emits scope cleanup instructions.
278 bool emitCleanup();
279
280 /// Returns a record type from a record or pointer type.
281 const RecordType *getRecordTy(QualType Ty);
282
283 /// Returns a record from a record or pointer type.
284 Record *getRecord(QualType Ty);
285 Record *getRecord(const RecordDecl *RD);
286
287 /// Returns a function for the given FunctionDecl.
288 /// If the function does not exist yet, it is compiled.
289 const Function *getFunction(const FunctionDecl *FD);
290
291 OptPrimType classify(const Expr *E) const { return Ctx.classify(E); }
292 OptPrimType classify(QualType Ty) const { return Ctx.classify(T: Ty); }
293 bool canClassify(const Expr *E) const { return Ctx.canClassify(E); }
294 bool canClassify(QualType T) const { return Ctx.canClassify(T); }
295
296 /// Classifies a known primitive type.
297 PrimType classifyPrim(QualType Ty) const {
298 if (auto T = classify(Ty)) {
299 return *T;
300 }
301 llvm_unreachable("not a primitive type");
302 }
303 /// Classifies a known primitive expression.
304 PrimType classifyPrim(const Expr *E) const {
305 if (auto T = classify(E))
306 return *T;
307 llvm_unreachable("not a primitive type");
308 }
309
310 /// Evaluates an expression and places the result on the stack. If the
311 /// expression is of composite type, a local variable will be created
312 /// and a pointer to said variable will be placed on the stack.
313 bool visit(const Expr *E) override;
314 /// Compiles an initializer. This is like visit() but it will never
315 /// create a variable and instead rely on a variable already having
316 /// been created. visitInitializer() then relies on a pointer to this
317 /// variable being on top of the stack.
318 bool visitInitializer(const Expr *E);
319 /// Similar, but will also pop the pointer.
320 bool visitInitializerPop(const Expr *E);
321 bool visitAsLValue(const Expr *E);
322 /// Evaluates an expression for side effects and discards the result.
323 bool discard(const Expr *E);
324 /// Just pass evaluation on to \p E. This leaves all the parsing flags
325 /// intact.
326 bool delegate(const Expr *E);
327 /// Creates and initializes a variable from the given decl.
328 VarCreationState visitVarDecl(const VarDecl *VD, const Expr *Init,
329 bool Toplevel = false);
330 VarCreationState visitDecl(const VarDecl *VD);
331 /// Visit an APValue.
332 bool visitAPValue(const APValue &Val, PrimType ValType, SourceInfo Info);
333 bool visitAPValueInitializer(const APValue &Val, SourceInfo Info, QualType T,
334 bool IsCompleteClass = true);
335 /// Visit the given decl as if we have a reference to it.
336 bool visitDeclRef(const ValueDecl *D, const Expr *E);
337
338 /// Visits an expression and converts it to a boolean.
339 bool visitBool(const Expr *E);
340
341 bool visitInitList(ArrayRef<const Expr *> Inits, const Expr *ArrayFiller,
342 const Expr *E);
343 bool visitArrayElemInit(unsigned ElemIndex, const Expr *Init,
344 OptPrimType InitT);
345 bool visitCallArgs(ArrayRef<const Expr *> Args, const FunctionDecl *FuncDecl,
346 bool Activate, bool IsOperatorCall);
347
348 /// Creates a local primitive value.
349 unsigned allocateLocalPrimitive(DeclOrExpr Decl, PrimType Ty, bool IsConst,
350 bool IsVolatile = false,
351 ScopeKind SC = ScopeKind::Block);
352
353 /// Allocates a space storing a local given its type.
354 UnsignedOrNone allocateLocal(DeclOrExpr Decl, QualType Ty = QualType(),
355 ScopeKind = ScopeKind::Block);
356 UnsignedOrNone allocateTemporary(const Expr *E);
357
358private:
359 friend class VariableScope<Emitter>;
360 friend class LocalScope<Emitter>;
361 friend class DestructorScope<Emitter>;
362 friend class DeclScope<Emitter>;
363 friend class InitLinkScope<Emitter>;
364 friend class InitStackScope<Emitter>;
365 friend class OptionScope<Emitter>;
366 friend class ArrayIndexScope<Emitter>;
367 friend class SourceLocScope<Emitter>;
368 friend struct InitLink;
369 friend class LoopScope<Emitter>;
370 friend class LabelScope<Emitter>;
371 friend class SwitchScope<Emitter>;
372 friend class StmtExprScope<Emitter>;
373 friend class LocOverrideScope<Emitter>;
374
375 /// Emits a zero initializer.
376 bool visitZeroInitializer(PrimType T, QualType QT, const Expr *E);
377 bool visitZeroRecordInitializer(const Record *R, const Expr *E,
378 bool IsCompleteClass = true);
379 bool visitZeroArrayInitializer(QualType T, const Expr *E);
380 bool visitAssignment(const Expr *LHS, const Expr *RHS, const Expr *E);
381
382 /// Emits an APSInt constant.
383 bool emitConst(const llvm::APSInt &Value, PrimType Ty, SourceInfo Info);
384 bool emitConst(const llvm::APInt &Value, PrimType Ty, SourceInfo Info);
385 bool emitConst(const llvm::APSInt &Value, const Expr *E);
386 bool emitConst(const llvm::APInt &Value, const Expr *E) {
387 return emitConst(Value, classifyPrim(E), E);
388 }
389
390 /// Emits an integer constant.
391 template <typename T> bool emitConst(T Value, PrimType Ty, SourceInfo Info);
392 template <typename T> bool emitConst(T Value, const Expr *E);
393 bool emitBool(bool V, const Expr *E) override {
394 return this->emitConst(V, E);
395 }
396
397 llvm::RoundingMode getRoundingMode(const Expr *E) const {
398 FPOptions FPO = E->getFPFeaturesInEffect(LO: Ctx.getLangOpts());
399
400 if (FPO.getRoundingMode() == llvm::RoundingMode::Dynamic)
401 return llvm::RoundingMode::NearestTiesToEven;
402
403 return FPO.getRoundingMode();
404 }
405
406 uint32_t getFPOptions(const Expr *E) const {
407 return E->getFPFeaturesInEffect(LO: Ctx.getLangOpts()).getAsOpaqueInt();
408 }
409
410 bool emitPrimCast(PrimType FromT, PrimType ToT, QualType ToQT, const Expr *E);
411 bool emitIntegralCast(PrimType FromT, PrimType ToT, QualType ToQT,
412 const Expr *E);
413 PrimType classifyComplexElementType(QualType T) const {
414 assert(T->isAnyComplexType());
415
416 QualType ElemType = T->getAs<ComplexType>()->getElementType();
417
418 return *this->classify(ElemType);
419 }
420
421 PrimType classifyVectorElementType(QualType T) const {
422 assert(T->isVectorType());
423 return *this->classify(T->getAs<VectorType>()->getElementType());
424 }
425
426 PrimType classifyMatrixElementType(QualType T) const {
427 assert(T->isMatrixType());
428 return *this->classify(T->getAs<MatrixType>()->getElementType());
429 }
430
431 bool emitComplexReal(const Expr *SubExpr);
432 bool emitComplexBoolCast(const Expr *E);
433 bool emitComplexComparison(const Expr *LHS, const Expr *RHS,
434 const BinaryOperator *E);
435 bool emitRecordDestructionPop(const Record *R, SourceInfo Loc);
436 bool emitDestructionPop(const Descriptor *Desc, SourceInfo Loc);
437 bool emitDummyPtr(DeclOrExpr D, const Expr *E, bool CU = false);
438 bool emitFloat(const APFloat &F, SourceInfo Info);
439 unsigned collectBaseOffset(const QualType BaseType,
440 const QualType DerivedType);
441 bool emitLambdaStaticInvokerBody(const CXXMethodDecl *MD);
442 bool emitBuiltinBitCast(const CastExpr *E);
443
444 bool emitHLSLAggregateSplat(PrimType SrcT, unsigned SrcOffset,
445 QualType DestType, const Expr *E);
446 bool emitVectorConversion(const Expr *Src, const Expr *E);
447
448 /// A scalar element extracted during HLSL aggregate flattening.
449 struct HLSLFlatElement {
450 unsigned LocalOffset;
451 PrimType Type;
452 };
453 unsigned countHLSLFlatElements(QualType Ty);
454 bool emitHLSLFlattenAggregate(QualType SrcType, unsigned SrcPtrOffset,
455 SmallVectorImpl<HLSLFlatElement> &Elements,
456 unsigned MaxElements, const Expr *E);
457 bool emitHLSLConstructAggregate(QualType DestType,
458 ArrayRef<HLSLFlatElement> Elements,
459 unsigned &ElemIdx, const Expr *E);
460 bool emitHLSLConstructAggregate(QualType DestType,
461 ArrayRef<HLSLFlatElement> Elements,
462 const Expr *E) {
463 unsigned ElemIdx = 0;
464 return emitHLSLConstructAggregate(DestType, Elements, ElemIdx, E);
465 }
466
467 bool compileConstructor(const CXXConstructorDecl *Ctor);
468 bool compileDestructor(const CXXDestructorDecl *Dtor);
469 bool compileUnionAssignmentOperator(const CXXMethodDecl *MD);
470
471 bool checkLiteralType(const Expr *E);
472 bool maybeEmitDeferredVarInit(const VarDecl *VD);
473
474 bool refersToUnion(const Expr *E);
475
476protected:
477 /// Variable to storage mapping.
478 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
479
480 /// OpaqueValueExpr to location mapping.
481 llvm::DenseMap<const OpaqueValueExpr *, unsigned> OpaqueExprs;
482
483 /// Current scope.
484 VariableScope<Emitter> *VarScope = nullptr;
485
486 /// Current argument index. Needed to emit ArrayInitIndexExpr.
487 std::optional<uint64_t> ArrayIndex;
488
489 /// DefaultInit- or DefaultArgExpr, needed for SourceLocExpr.
490 const Expr *SourceLocDefaultExpr = nullptr;
491
492 /// Flag indicating if return value is to be discarded.
493 bool DiscardResult = false;
494
495 bool SwitchInStmtExpr = false;
496 bool InStmtExpr = false;
497 bool ToLValue = false;
498
499 bool VariablesAreConstexprUnknown = false;
500
501 /// Flag inidicating if we're initializing an already created
502 /// variable. This is set in visitInitializer().
503 bool Initializing = false;
504 const VarDecl *InitializingDecl = nullptr;
505
506 llvm::SmallVector<InitLink> InitStack;
507 bool InitStackActive = false;
508
509 /// Type of the expression returned by the function.
510 OptPrimType ReturnType;
511
512 /// Switch case mapping.
513 CaseMap CaseLabels;
514 /// Stack of label information for loops and switch statements.
515 llvm::SmallVector<LabelInfo> LabelInfoStack;
516
517 const FunctionDecl *CompilingFunction = nullptr;
518};
519
520extern template class Compiler<ByteCodeEmitter>;
521extern template class Compiler<EvalEmitter>;
522
523} // namespace interp
524} // namespace clang
525
526#endif
527