Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DByteCodeEmitter.cpp23 void ByteCodeEmitter::compileFunc(const FunctionDecl *FuncDecl, in compileFunc()
95 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) { in createLocal()
102 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel()
120 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset()
213 bool ByteCodeEmitter::emitOp(Opcode Op, const Tys &...Args, in emitOp()
227 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue()
231 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse()
235 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump()
239 bool ByteCodeEmitter::fallthrough(const LabelTy &Label) { in fallthrough()
244 bool ByteCodeEmitter::speculate(const CallExpr *E, const LabelTy &EndLabel) { in speculate()
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.h29 class ByteCodeEmitter; variable
255 friend class ByteCodeEmitter; variable
H A DContext.cpp44 Compiler<ByteCodeEmitter>(*this, *P).compileFunc( in isPotentialConstantExpr()
H A DCompiler.h455 extern template class Compiler<ByteCodeEmitter>;
H A DInterp.cpp1417 Compiler<ByteCodeEmitter>(S.getContext(), S.P) in compileFunction()
H A DCompiler.cpp7103 template class Compiler<ByteCodeEmitter>;
/freebsd/lib/clang/libclang/
H A DMakefile64 SRCS_MIN+= AST/ByteCode/ByteCodeEmitter.cpp