| /openbsd-src/gnu/llvm/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; 36 lldb::REPLSP REPL::Create(Status &err, lldb::LanguageType language, in Create() 57 std::string REPL::GetSourcePath() { in GetSourcePath() 71 lldb::IOHandlerSP REPL::GetIOHandler() { in GetIOHandler() 75 debugger, IOHandler::Type::REPL, in GetIOHandler() 100 void REPL::IOHandlerActivated(IOHandler &io_handler, bool interactive) { in IOHandlerActivated() 109 bool REPL::IOHandlerInterrupt(IOHandler &io_handler) { return false; } in IOHandlerInterrupt() 111 void REPL::IOHandlerInputInterrupted(IOHandler &io_handler, std::string &line) { in IOHandlerInputInterrupted() 114 const char *REPL::IOHandlerGetFixIndentationCharacters() { in IOHandlerGetFixIndentationCharacters() [all …]
|
| H A D | CMakeLists.txt | 13 REPL.cpp
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 21 class REPL : public IOHandlerDelegate { 28 REPL(LLVMCastKind kind, Target &target); 30 ~REPL() override;
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/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.">,
|
| /openbsd-src/gnu/usr.bin/clang/liblldbExpression/ |
| H A D | Makefile | 20 REPL.cpp \
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Expression/ |
| H A D | BUILD.gn | 36 "REPL.cpp",
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | ClangRepl.rst | 7 read-evaluate-print-loop (REPL) style. It uses Clang as a library to compile the 80 `Moving (parts of) the Cling REPL in Clang <https://lists.llvm.org/pipermail/llvm-dev/2020-July/143…
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ |
| H A D | CMakeLists.txt | 17 add_subdirectory(REPL)
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | InterpreterProperties.td | 30 Desc<"If true, blank lines will be printed between between REPL submissions.">;
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | CoreProperties.td | 76 Desc<"The language to use for the REPL.">; 165 …Desc<"If true, LLDB will auto indent/outdent code. Currently only supported in the REPL (default: … 169 …es of variables declared in an expression. Currently only supported in the REPL (default: true).">;
|
| H A D | PluginManager.cpp | 1331 #pragma mark REPL
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | lldb-forward.h | 174 class REPL; variable 377 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
|
| H A D | module.modulemap | 101 exclude header "Expression/REPL.h"
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Plugins/ |
| H A D | BUILD.gn | 144 "//lldb/source/Plugins/REPL/Clang",
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Debugger.h | 455 friend class REPL; variable
|
| H A D | IOHandler.h | 52 REPL, enumerator
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 582 IOHandler::Type::REPL)) { in DoExecute()
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlrebackslash.pod | 722 used in a substitution. This lets you write C<s/PAT1 \K PAT2/REPL/x> 723 instead of C<s/(PAT1) PAT2/${1}REPL/x> or C<s/(?<=PAT1) PAT2/REPL/x>.
|
| /openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl04.rst | 406 that will make our environment more REPL-like: Functions can be added to the 530 With these changes made, let's try our REPL again (I removed the dump of the
|
| /openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/ |
| H A D | perlfaq3.pod | 160 You can also use L<Devel::REPL> which is an interactive shell for Perl, 161 commonly known as a REPL - Read, Evaluate, Print, Loop. It provides
|