rubyx/lib/mom/builtin
2019-09-11 19:23:56 +03:00
..
comparison.rb Integer macros tests and defs 2019-09-11 19:23:56 +03:00
div4.rb Integer macros tests and defs 2019-09-11 19:23:56 +03:00
div10.rb Integer macros tests and defs 2019-09-11 19:23:56 +03:00
exit.rb macro tests for all object mom instructions 2019-09-11 18:43:20 +03:00
get_internal_byte.rb tests for word macros 2019-09-11 18:53:20 +03:00
get_internal_word.rb starting to move builtin into parfait 2019-09-10 20:40:41 +03:00
init.rb macro tests for all object mom instructions 2019-09-11 18:43:20 +03:00
integer.rb Integer macros tests and defs 2019-09-11 19:23:56 +03:00
method_missing.rb macro tests for all object mom instructions 2019-09-11 18:43:20 +03:00
object.rb last fixes for cc 2019-08-23 19:22:27 +03:00
operator.rb Integer macros tests and defs 2019-09-11 19:23:56 +03:00
putstring.rb tests for word macros 2019-09-11 18:53:20 +03:00
README.md Move builtin wholesale to Mom 2019-08-12 12:38:29 +03:00
set_internal_byte.rb tests for word macros 2019-09-11 18:53:20 +03:00
set_internal_word.rb tests for word macros 2019-09-11 18:53:20 +03:00
space.rb Move builtin wholesale to Mom 2019-08-12 12:38:29 +03:00
word.rb Extracting the mom instruction from builtin modules 2019-08-12 13:16:15 +03:00

Builtin module

The Builtin module contains functions that can not be coded in ruby. It is the other side of the parfait coin, part of the runtime.

The functions are organised by their respective classes and get loaded in boot_classes! , right at the start. (see register/boot.rb)

These functions return their code, ie a Parfait::CallableMethod with a MethodSource object, which can then be called by ruby code as if it were a "normal" function.

A normal ruby function is one that is parsed and transformed to code. But not all functionality can be written in ruby, one of those chicken and egg things. C uses Assembler in this situation, we use Builtin functions.

Slightly more here : http://ruby-x.org/2014/06/10/more-clarity.html (then still called Kernel)

The Builtin module is scattered into several files, but that is just so the file doesn't get too long.