Home
last modified time | relevance | path

Searched refs:ByteCodeEmitter (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp22 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()
H A DByteCodeEmitter.h32 class ByteCodeEmitter {
43 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter() function
45 virtual ~ByteCodeEmitter() {} in ~ByteCodeEmitter()
H A DFunction.h26 class ByteCodeEmitter; variable
129 friend class ByteCodeEmitter; variable
H A DContext.cpp32 if (auto R = ByteCodeStmtGen<ByteCodeEmitter>(*this, *P).compileFunc(FD)) { in isPotentialConstantExpr()
H A DByteCodeStmtGen.cpp266 template class ByteCodeStmtGen<ByteCodeEmitter>;
H A DByteCodeExprGen.h235 extern template class ByteCodeExprGen<ByteCodeEmitter>;
H A DProgram.cpp216 return ByteCodeStmtGen<ByteCodeEmitter>(Ctx, *this).compileFunc(FD); in getOrCreateFunction()
H A DByteCodeExprGen.cpp576 template class ByteCodeExprGen<ByteCodeEmitter>;
/llvm-project-15.0.7/clang/lib/AST/
H A DCMakeLists.txt65 Interp/ByteCodeEmitter.cpp
/llvm-project-15.0.7/llvm/utils/gn/secondary/clang/lib/AST/
H A DBUILD.gn93 "Interp/ByteCodeEmitter.cpp",
/llvm-project-15.0.7/clang/docs/
H A DConstantInterpreter.rst23 backends: one to generate bytecode for functions (``ByteCodeEmitter``) and