[X86] Fix aliasing check between TargetFrameIndex and FrameIndex
[llvm-project.git] / lldb / tools / lldb-vscode / VSCodeForward.h
blob92eb5757d18038f2ad7052b4420b61b6eb511348
1 //===-- VSCodeForward.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_TOOLS_LLDB_VSCODE_VSCODEFORWARD_H
10 #define LLDB_TOOLS_LLDB_VSCODE_VSCODEFORWARD_H
12 namespace lldb_vscode {
13 struct BreakpointBase;
14 struct ExceptionBreakpoint;
15 struct FunctionBreakpoint;
16 struct SourceBreakpoint;
17 } // namespace lldb_vscode
19 namespace lldb {
20 class SBAttachInfo;
21 class SBBreakpoint;
22 class SBBreakpointLocation;
23 class SBCommandInterpreter;
24 class SBCommandReturnObject;
25 class SBCommunication;
26 class SBDebugger;
27 class SBEvent;
28 class SBFrame;
29 class SBHostOS;
30 class SBInstruction;
31 class SBInstructionList;
32 class SBLanguageRuntime;
33 class SBLaunchInfo;
34 class SBLineEntry;
35 class SBListener;
36 class SBProcess;
37 class SBStream;
38 class SBStringList;
39 class SBTarget;
40 class SBThread;
41 class SBValue;
42 } // namespace lldb
44 #endif