Searched refs:ByteCodeEmitter (Results 1 – 11 of 11) sorted by relevance
23 ByteCodeEmitter::compileFunc(const FunctionDecl *FuncDecl) { in compileFunc()103 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) { in createLocal()110 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel()128 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset()145 bool ByteCodeEmitter::bail(const SourceLocation &Loc) { in bail()183 bool ByteCodeEmitter::emitOp(Opcode Op, const Tys &... Args, const SourceInfo &SI) { in emitOp()199 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue()203 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse()207 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump()211 bool ByteCodeEmitter::fallthrough(const LabelTy &Label) { in fallthrough()
32 class ByteCodeEmitter {43 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter() function45 virtual ~ByteCodeEmitter() {} in ~ByteCodeEmitter()
26 class ByteCodeEmitter; variable165 friend class ByteCodeEmitter; variable
33 if (auto R = ByteCodeStmtGen<ByteCodeEmitter>(*this, *P).compileFunc(FD)) { in isPotentialConstantExpr()
397 template class ByteCodeStmtGen<ByteCodeEmitter>;
253 extern template class ByteCodeExprGen<ByteCodeEmitter>;
1094 if (auto R = ByteCodeStmtGen<ByteCodeEmitter>(Ctx, P).compileFunc(FD)) in getFunction()1428 template class ByteCodeExprGen<ByteCodeEmitter>;
66 Interp/ByteCodeEmitter.cpp
97 SRCS+= ByteCodeEmitter.cpp \
94 "Interp/ByteCodeEmitter.cpp",
23 backends: one to generate bytecode for functions (``ByteCodeEmitter``) and