| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | REPL.cpp | 25 REPL::REPL(LLVMCastKind kind, Target &target) : m_target(target), m_kind(kind) { in REPL() function in REPL 34 REPL::~REPL() = default; 57 std::string REPL::GetSourcePath() { in GetSourcePath() 71 lldb::IOHandlerSP REPL::GetIOHandler() { in GetIOHandler() 75 debugger, IOHandler::Type::REPL, in GetIOHandler() 114 const char *REPL::IOHandlerGetFixIndentationCharacters() { in IOHandlerGetFixIndentationCharacters() 118 ConstString REPL::IOHandlerGetControlSequence(char ch) { in IOHandlerGetControlSequence() 126 const char *REPL::IOHandlerGetHelpPrologue() { in IOHandlerGetHelpPrologue() 165 int REPL::IOHandlerFixIndentation(IOHandler &io_handler, in IOHandlerFixIndentation() 491 void REPL::IOHandlerComplete(IOHandler &io_handler, in IOHandlerComplete() [all …]
|
| H A D | CMakeLists.txt | 13 REPL.cpp
|
| /llvm-project-15.0.7/lldb/test/Shell/REPL/ |
| H A D | Basic.test | 1 // Basic sanity checking of the REPL. 4 // CPP: error: must have a target to create a REPL 7 // PYTHON: error: couldn't find a REPL for python
|
| /llvm-project-15.0.7/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 21 class REPL : public IOHandlerDelegate { 28 REPL(LLVMCastKind kind, Target &target); 30 ~REPL() override;
|
| /llvm-project-15.0.7/lldb/docs/man/ |
| H A D | lldb.rst | 211 REPL chapter 220 Chooses the language for the REPL. 224 Runs lldb in REPL mode with a stub process with the given flags. 275 Passing --repl starts :program:`lldb` in REPL mode. 291 Note: In REPL mode no file is loaded, so commands specified to run after 317 If launched with a `REPL`_ option, it will first look for a REPL configuration 318 file, specific to the REPL language. The init file should be named as follow: 320 exist, or :program:`lldb` wasn't launch with `REPL`_, meaning there is neither 321 a REPL init file nor an application specific init file, ``lldb`` will fallback to
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/ |
| H A D | TestRepl.test | 4 # CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL …
|
| H A D | TestHelp.test | 55 CHECK: REPL
|
| /llvm-project-15.0.7/llvm/docs/tutorial/ |
| H A D | BuildingAJIT1.rst | 50 Kaleidoscope REPL from `Chapter 7 <LangImpl07.html>`_ of the "Implementing a 95 the REPL code from `Chapter 7 <LangImpl07.html>`_ of that tutorial to supply the 96 input for our JIT: Each time the user enters an expression the REPL will add a 98 expression is a top-level expression like '1+1' or 'sin(x)', the REPL will also 100 expression. In later chapters of this tutorial we will modify the REPL to enable 181 REPL process as well. We do this by attaching a 217 managed by the JIT (especially the LLVMContext) available to the REPL code that 290 impossible to re-define symbols in the REPL, but will make our symbol
|
| H A D | BuildingAJIT2.rst | 239 not focused on when compilation happens. Our current REPL optimizes and
|
| /llvm-project-15.0.7/lldb/tools/driver/ |
| H A D | Options.td | 65 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">; 68 HelpText<"Runs lldb in REPL mode with a stub process.">, 76 HelpText<"Runs lldb in REPL mode with a stub process with the given flags.">, 86 HelpText<"Chooses the language for the REPL.">,
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Expression/ |
| H A D | BUILD.gn | 36 "REPL.cpp",
|
| /llvm-project-15.0.7/lldb/source/Plugins/REPL/Clang/ |
| H A D | ClangREPL.h | 17 class ClangREPL : public REPL {
|
| H A D | ClangREPL.cpp | 19 : REPL(eKindClang, target), m_language(language), in LLDB_PLUGIN_DEFINE()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ |
| H A D | CMakeLists.txt | 17 add_subdirectory(REPL)
|
| /llvm-project-15.0.7/llvm/test/Transforms/Scalarizer/ |
| H A D | constant-insertelement.ll | 18 ; ALL-NEXT: [[VAL2_I3:%.*]] = shl i32 4, [[REPL:%.*]]
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | InterpreterProperties.td | 26 Desc<"If true, blank lines will be printed between between REPL submissions.">;
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | CoreProperties.td | 72 Desc<"The language to use for the REPL.">; 161 …Desc<"If true, LLDB will auto indent/outdent code. Currently only supported in the REPL (default: … 165 …es of variables declared in an expression. Currently only supported in the REPL (default: true).">;
|
| H A D | PluginManager.cpp | 1317 #pragma mark REPL
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-forward.h | 173 class REPL; variable 371 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
|
| H A D | module.modulemap | 101 exclude header "Expression/REPL.h"
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Plugins/ |
| H A D | BUILD.gn | 144 "//lldb/source/Plugins/REPL/Clang",
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | Debugger.h | 435 friend class REPL; variable
|
| H A D | IOHandler.h | 54 REPL, enumerator
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 575 IOHandler::Type::REPL)) { in DoExecute()
|
| /llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl04.rst | 406 that will make our environment more REPL-like: Functions can be added to the 525 With these changes made, let's try our REPL again (I removed the dump of the
|