1 //===- TableGen.cpp - Top-Level TableGen implementation for Clang ---------===// 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 contains the declarations for all of the LLDB TableGen 10 // backends. A "TableGen backend" is just a function. See 11 // "$LLVM_ROOT/utils/TableGen/TableGenBackends.h" for more info. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H 16 #define LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H 17 18 #include <string> 19 20 namespace llvm { 21 class raw_ostream; 22 class RecordKeeper; 23 } // namespace llvm 24 25 using llvm::raw_ostream; 26 using llvm::RecordKeeper; 27 28 namespace lldb_private { 29 30 void EmitOptionDefs(RecordKeeper &RK, raw_ostream &OS); 31 32 } // namespace lldb_private 33 34 #endif 35