[PATCH] D156858: Add Documentation for Execution Results Handling in Clang-REPL

QuillPusher via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat Aug 5 11:55:53 PDT 2023


QuillPusher requested changes to this revision.
QuillPusher added a comment.
This revision now requires changes to proceed.

Thanks @junaire for the clarification, following is the updated document structure:

1. Capture Execution Results
  - How the Feature works
  - more details
  - Implementation Details

2. Dump Captured Execution ResultsĀ¶
  - How- the Feature works
  - more details
  - Implementation Details

@Krishna-13-cyber Please use the attached file named ExecutionResultsHandling.rst as the latest doc, so Jun can review the updated document.

F28589747: ExecutionResultsHandling.rst <https://reviews.llvm.org/F28589747>



================
Comment at: clang/docs/ClangRepl.rst:217-232
 
+Execution Results Handling in Clang-Repl
+========================================
+
+:doc:`ExecutionResultsHandling` features discussed below help extend the Clang-REPL 
+functionality by creating an interface between the execution results of a 
+program and the compiled program.
----------------
Execution Results Handling in Clang-Repl
===========================

:doc:`ExecutionResultsHandling` helps extend the Clang-REPL functionality by 
creating an interface between the execution results of a program and the compiled 
program. Following are its main components:

1 - **Capture Execution Results**: This feature helps capture the execution results 
of a program and bring them back to the compiled program.

2 - **Dump Captured Execution Results**: This feature helps create a temporary dump 
for Value Printing/Automatic Printf, that is, to display the value and type of 
the captured data.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156858/new/

https://reviews.llvm.org/D156858



More information about the cfe-commits mailing list