//===--- ByteCodeEmitter.h - Instruction emitter for the VM -----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Defines the instruction emitters. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_INTERP_LINKEMITTER_H #define LLVM_CLANG_AST_INTERP_LINKEMITTER_H #include "Context.h" #include "PrimType.h" #include "Program.h" #include "Source.h" namespace clang { namespace interp { enum Opcode : uint32_t; /// An emitter which links the program to bytecode for later use. class ByteCodeEmitter { … }; } // namespace interp } // namespace clang #endif