-
-
Notifications
You must be signed in to change notification settings - Fork 68
Useful Links for Research
Στέφανος edited this page Sep 25, 2021
·
7 revisions
Various videos that can help you understand, for example, how Lua works behind the scenes.
Name | URL |
---|---|
CppCon 2014: Mike Acton "Data-Oriented Design and C++" | https://www.youtube.com/watch?v=rX0ItVEVjHc |
Garbage Collection in Lua, Roberto Ierusalimschy, PUC-Rio: LiM'19 talk 7 | https://www.youtube.com/watch?v=wGizKsOJQuE |
Functions in Lua, Roberto Ierusalimshy, PUC-Rio: LIM'17 talk 1 | https://www.youtube.com/watch?v=wdRGOE1N-FA |
How much does it cost - Roberto Ierusalimschy | https://www.youtube.com/watch?v=EUvgoxBm7uc |
Relative Pointers - Jonathan Blow | https://www.youtube.com/watch?v=Z0tsNFZLxSU |
Various articles, research papers, etc (for PDF files, please right-click on them and save them locally):
- Memory Allocation Strategies by GingerBill
- Pointers and Memory (PDF)
- The Lost Art of Structure Packing
- Centralized Memory Management
- Handles are the better pointers
- Compiler Design in C (PDF)
- Concurrent Cycle Collection in Reference Counted Systems (PDF)
- Crafting Interpreters
- A Surprisingly Simple Lua Compiler (PDF)
- A Parsing Machine for PEGs (PDF)
- Converting regexes to Parsing Expression Grammars (PDF)
- Evaluating Optimizations for a High-Level Language (PDF)
- First-Class Functions in an Imperative World (PDF)