Skip to content

Commit

Permalink
doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Jun 10, 2024
1 parent b952b9f commit 97493e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ History
* 2021
- Integrated AOT and JIT compilation support
- `Embedded C syntax <https://github.com/dibyendumajumdar/ravi-compiler/wiki/Embedding-C>`_
* Future
* Current Priorities
- Improve Embedded C support with more validation
- Improve tests and documentation overall
- Ensure new compiler is production grade (i.e. always generates correct code)
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/ravi-overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ History
* 2021
- Integrated AOT and JIT compilation support
- `Embedded C syntax <https://github.com/dibyendumajumdar/ravi-compiler/wiki/Embedding-C>`_
* Future
* Current Priorities
- Improve Embedded C support with more validation
- Improve tests and documentation overall
- Ensure new compiler is production grade (i.e. always generates correct code)
Expand Down
7 changes: 4 additions & 3 deletions src/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ Ravi uses Doug Lea's malloc implementation. The implementation is in:

Some backends use C as the intermediate language. The common C code generator is in:

* ravi_jitshared.c - this is the C code generator for a given Ravi / Lua function
* ravi_jitshared.c - this is the C code generator for a given Ravi / Lua function - converts bytecode to C
* See folder ../ravicomp for the new source to C compiler

The MIR JIT implementation is in:

* ravi_mirjit.c - defines the driver functions. The MIR backend has its own C preprocessor, parser and code generator.

* ravi_mirjit.c - defines the driver functions. The MIR backend has its own C preprocessor, parser and code generator
* ravi_complib.c - interfaces with new compiler module (see ../ravicomp) that generates C code from Ravi source file

0 comments on commit 97493e5

Please sign in to comment.