1 //===-- ClangExpressionSourceCode.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 #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGEXPRESSIONSOURCECODE_H 10 #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGEXPRESSIONSOURCECODE_H 11 12 #include "lldb/Expression/Expression.h" 13 #include "lldb/Expression/ExpressionSourceCode.h" 14 #include "lldb/lldb-enumerations.h" 15 #include "llvm/ADT/ArrayRef.h" 16 #include "llvm/ADT/StringRef.h" 17 18 #include <string> 19 20 namespace lldb_private { 21 22 class ExecutionContext; 23 24 class ClangExpressionSourceCode : public ExpressionSourceCode { 25 public: 26 /// The file name we use for the wrapper code that we inject before 27 /// the user expression. 28 static const llvm::StringRef g_prefix_file_name; 29 static const char *g_expression_prefix; 30 static const char *g_expression_suffix; 31 32 /// The possible ways an expression can be wrapped. 33 enum class WrapKind { 34 /// Wrapped in a non-static member function of a C++ class. 35 CppMemberFunction, 36 /// Wrapped in an instance Objective-C method. 37 ObjCInstanceMethod, 38 /// Wrapped in a static Objective-C method. 39 ObjCStaticMethod, 40 /// Wrapped in a non-member function. 41 /// Note that this is also used for static member functions of a C++ class. 42 Function 43 }; 44 45 static ClangExpressionSourceCode *CreateWrapped(llvm::StringRef filename, 46 llvm::StringRef prefix, 47 llvm::StringRef body, 48 WrapKind wrap_kind) { 49 return new ClangExpressionSourceCode(filename, "$__lldb_expr", prefix, body, 50 Wrap, wrap_kind); 51 } 52 53 /// Generates the source code that will evaluate the expression. 54 /// 55 /// \param text output parameter containing the source code string. 56 /// \param exe_ctx The execution context in which the expression will be 57 /// evaluated. 58 /// \param add_locals True iff local variables should be injected into the 59 /// expression source code. 60 /// \param force_add_all_locals True iff all local variables should be 61 /// injected even if they are not used in the expression. 62 /// \param modules A list of (C++) modules that the expression should import. 63 /// 64 /// \return true iff the source code was successfully generated. 65 bool GetText(std::string &text, ExecutionContext &exe_ctx, bool add_locals, 66 bool force_add_all_locals, 67 llvm::ArrayRef<std::string> modules) const; 68 69 // Given a string returned by GetText, find the beginning and end of the body 70 // passed to CreateWrapped. Return true if the bounds could be found. This 71 // will also work on text with FixItHints applied. 72 bool GetOriginalBodyBounds(std::string transformed_text, 73 size_t &start_loc, size_t &end_loc); 74 75 protected: 76 ClangExpressionSourceCode(llvm::StringRef filename, llvm::StringRef name, 77 llvm::StringRef prefix, llvm::StringRef body, 78 Wrapping wrap, WrapKind wrap_kind); 79 80 private: 81 void AddLocalVariableDecls(const lldb::VariableListSP &var_list_sp, 82 StreamString &stream, 83 const std::string &expr) const; 84 85 /// String marking the start of the user expression. 86 std::string m_start_marker; 87 /// String marking the end of the user expression. 88 std::string m_end_marker; 89 /// How the expression has been wrapped. 90 const WrapKind m_wrap_kind; 91 }; 92 93 } // namespace lldb_private 94 95 #endif 96