Lines Matching refs:ByteCodeExprGen
40 class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, bool>,
44 using NullaryFn = bool (ByteCodeExprGen::*)(const SourceInfo &);
45 using UnaryFn = bool (ByteCodeExprGen::*)(PrimType, const SourceInfo &);
46 using BinaryFn = bool (ByteCodeExprGen::*)(PrimType, PrimType,
64 ByteCodeExprGen(Context &Ctx, Program &P, Tys &&... Args) in ByteCodeExprGen() function
235 extern template class ByteCodeExprGen<ByteCodeEmitter>;
236 extern template class ByteCodeExprGen<EvalEmitter>;
265 VariableScope(ByteCodeExprGen<Emitter> *Ctx) in VariableScope()
271 ByteCodeExprGen<Emitter> *Ctx;
282 LocalScope(ByteCodeExprGen<Emitter> *Ctx) : VariableScope<Emitter>(Ctx) {} in LocalScope()
309 BlockScope(ByteCodeExprGen<Emitter> *Ctx) : LocalScope<Emitter>(Ctx) {} in BlockScope()
320 ExprScope(ByteCodeExprGen<Emitter> *Ctx) : LocalScope<Emitter>(Ctx) {} in ExprScope()