//===-- LLVMUserExpression.h ------------------------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef LLDB_EXPRESSION_LLVMUSEREXPRESSION_H #define LLDB_EXPRESSION_LLVMUSEREXPRESSION_H #include <map> #include <string> #include <vector> #include "llvm/IR/LegacyPassManager.h" #include "lldb/Expression/UserExpression.h" namespace lldb_private { /// \class LLVMUserExpression LLVMUserExpression.h /// "lldb/Expression/LLVMUserExpression.h" Encapsulates a one-time expression /// for use in lldb. /// /// LLDB uses expressions for various purposes, notably to call functions /// and as a backend for the expr command. LLVMUserExpression is a virtual /// base class that encapsulates the objects needed to parse and JIT an /// expression. The actual parsing part will be provided by the specific /// implementations of LLVMUserExpression - which will be vended through the /// appropriate TypeSystem. class LLVMUserExpression : public UserExpression { … }; } // namespace lldb_private #endif