Searched refs:ByteCodeEmitter (Results 1 – 8 of 8) sorted by relevance
23 Function *ByteCodeEmitter::compileFunc(const FunctionDecl *FuncDecl) { in compileFunc()139 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) { in createLocal()146 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel()165 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset()232 bool ByteCodeEmitter::emitOp(Opcode Op, const Tys &... Args, const SourceInfo &SI) { in emitOp()248 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue()252 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse()256 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump()260 bool ByteCodeEmitter::fallthrough(const LabelTy &Label) { in fallthrough()
26 class ByteCodeEmitter {37 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter() function39 virtual ~ByteCodeEmitter() {} in ~ByteCodeEmitter()
27 class ByteCodeEmitter; variable215 friend class ByteCodeEmitter; variable
34 Func = ByteCodeStmtGen<ByteCodeEmitter>(*this, *P).compileFunc(FD); in isPotentialConstantExpr()281 if (auto F = ByteCodeStmtGen<ByteCodeEmitter>(*this, *P).compileFunc(FD)) in getOrCreateFunction()
326 extern template class ByteCodeExprGen<ByteCodeEmitter>;
677 template class ByteCodeStmtGen<ByteCodeEmitter>;
3084 template class ByteCodeExprGen<ByteCodeEmitter>;
94 SRCS_MIN+= AST/Interp/ByteCodeEmitter.cpp