[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / lldb / utils / TableGen / LLDBTableGenBackends.h
bloba51b7bf7b60d034152bd8b64c981e1a84c663109
1 //===- LLDBTableGenBackends.h -----------------------------------*- 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 contains the declarations for all of the LLDB TableGen
10 // backends. A "TableGen backend" is just a function.
12 // See "$LLVM_ROOT/utils/TableGen/TableGenBackends.h" for more info.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLDB_UTILS_TABLEGEN_LLDBTABLEGENBACKENDS_H
17 #define LLDB_UTILS_TABLEGEN_LLDBTABLEGENBACKENDS_H
19 #include "llvm/ADT/StringRef.h"
21 namespace llvm {
22 class raw_ostream;
23 class RecordKeeper;
24 class Record;
25 } // namespace llvm
27 using llvm::raw_ostream;
28 using llvm::RecordKeeper;
30 namespace lldb_private {
32 void EmitOptionDefs(const RecordKeeper &RK, raw_ostream &OS);
33 void EmitPropertyDefs(const RecordKeeper &RK, raw_ostream &OS);
34 void EmitPropertyEnumDefs(const RecordKeeper &RK, raw_ostream &OS);
35 int EmitSBAPIDWARFEnum(int argc, char **argv);
37 } // namespace lldb_private
39 #endif