Home
last modified time | relevance | path

Searched refs:REPL (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp25 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 DCMakeLists.txt13 REPL.cpp
/llvm-project-15.0.7/lldb/test/Shell/REPL/
H A DBasic.test1 // 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 DREPL.h21 class REPL : public IOHandlerDelegate {
28 REPL(LLVMCastKind kind, Target &target);
30 ~REPL() override;
/llvm-project-15.0.7/lldb/docs/man/
H A Dlldb.rst211 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 DTestRepl.test4 # CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL
H A DTestHelp.test55 CHECK: REPL
/llvm-project-15.0.7/llvm/docs/tutorial/
H A DBuildingAJIT1.rst50 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 DBuildingAJIT2.rst239 not focused on when compilation happens. Our current REPL optimizes and
/llvm-project-15.0.7/lldb/tools/driver/
H A DOptions.td65 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 DBUILD.gn36 "REPL.cpp",
/llvm-project-15.0.7/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.h17 class ClangREPL : public REPL {
H A DClangREPL.cpp19 : REPL(eKindClang, target), m_language(language), in LLDB_PLUGIN_DEFINE()
/llvm-project-15.0.7/lldb/source/Plugins/
H A DCMakeLists.txt17 add_subdirectory(REPL)
/llvm-project-15.0.7/llvm/test/Transforms/Scalarizer/
H A Dconstant-insertelement.ll18 ; ALL-NEXT: [[VAL2_I3:%.*]] = shl i32 4, [[REPL:%.*]]
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DInterpreterProperties.td26 Desc<"If true, blank lines will be printed between between REPL submissions.">;
/llvm-project-15.0.7/lldb/source/Core/
H A DCoreProperties.td72 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 DPluginManager.cpp1317 #pragma mark REPL
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-forward.h173 class REPL; variable
371 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
H A Dmodule.modulemap101 exclude header "Expression/REPL.h"
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Plugins/
H A DBUILD.gn144 "//lldb/source/Plugins/REPL/Clang",
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h435 friend class REPL; variable
H A DIOHandler.h54 REPL, enumerator
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp575 IOHandler::Type::REPL)) { in DoExecute()
/llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl04.rst406 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

12