Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp34 Function *ByteCodeEmitter::compileFunc(const FunctionDecl *FuncDecl) { in compileFunc()
197 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) { in createLocal()
204 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel()
223 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset()
310 bool ByteCodeEmitter::emitOp(Opcode Op, const Tys &... Args, const SourceInfo &SI) { in emitOp()
323 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue()
327 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse()
331 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump()
335 bool ByteCodeEmitter::fallthrough(const LabelTy &Label) { in fallthrough()
H A DByteCodeEmitter.h26 class ByteCodeEmitter {
37 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter() function
39 virtual ~ByteCodeEmitter() {} in ~ByteCodeEmitter()
H A DFunction.h28 class ByteCodeEmitter; variable
234 friend class ByteCodeEmitter; variable
H A DContext.cpp32 Func = Compiler<ByteCodeEmitter>(*this, *P).compileFunc(FD); in isPotentialConstantExpr()
269 if (auto F = Compiler<ByteCodeEmitter>(*this, *P).compileFunc(FD)) in getOrCreateFunction()
H A DCompiler.h402 extern template class Compiler<ByteCodeEmitter>;
H A DCompiler.cpp5595 template class Compiler<ByteCodeEmitter>;
/freebsd/lib/clang/libclang/
H A DMakefile94 SRCS_MIN+= AST/Interp/ByteCodeEmitter.cpp