Searched refs:ByteCodeEmitter (Results 1 – 11 of 11) sorted by relevance
22 Expected<Function *> ByteCodeEmitter::compileFunc(const FunctionDecl *F) { in compileFunc()81 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) { in createLocal()88 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel()105 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset()120 bool ByteCodeEmitter::bail(const SourceLocation &Loc) { in bail()156 bool ByteCodeEmitter::emitOp(Opcode Op, const Tys &... Args, const SourceInfo &SI) { in emitOp()172 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue()176 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse()180 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump()184 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; variable129 friend class ByteCodeEmitter; variable
32 if (auto R = ByteCodeStmtGen<ByteCodeEmitter>(*this, *P).compileFunc(FD)) { in isPotentialConstantExpr()
266 template class ByteCodeStmtGen<ByteCodeEmitter>;
235 extern template class ByteCodeExprGen<ByteCodeEmitter>;
216 return ByteCodeStmtGen<ByteCodeEmitter>(Ctx, *this).compileFunc(FD); in getOrCreateFunction()
576 template class ByteCodeExprGen<ByteCodeEmitter>;
65 Interp/ByteCodeEmitter.cpp
93 "Interp/ByteCodeEmitter.cpp",
23 backends: one to generate bytecode for functions (``ByteCodeEmitter``) and