1 //===- VarLenCodeEmitterGen.h - CEG for variable-length insts ---*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file declare the CodeEmitterGen component for variable-length
10 // instructions. See the .cpp file for more details.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_UTILS_TABLEGEN_VARLENCODEEMITTERGEN_H
15 #define LLVM_UTILS_TABLEGEN_VARLENCODEEMITTERGEN_H
16 
17 namespace llvm {
18 
19 class RecordKeeper;
20 class raw_ostream;
21 
22 void emitVarLenCodeEmitter(RecordKeeper &R, raw_ostream &OS);
23 
24 } // end namespace llvm
25 #endif
26