217 Commits

Author SHA1 Message Date
hyunghwan.chung
d9df6694cf added the halting event callback 2019-09-02 16:23:03 +00:00
hyunghwan.chung
10cf217b7b more semaphore debugging 2019-08-30 15:48:39 +00:00
hyunghwan.chung
652f13246f moved gcfin_should_exit from Processor to System 2019-08-26 14:43:41 +00:00
hyunghwan.chung
f51fbd1a33 added the vm_setsig vm primitive function to improve os signal handler
changed System>>__os_signal_handelr and System>>startup for improved os signal handling
2019-08-16 15:29:36 +00:00
hyunghwan.chung
f23a5bd22c added two new vm primitives - vm_getsigfd and vm_getsig - to support os signal handling more promptly 2019-08-15 15:55:06 +00:00
hyunghwan.chung
3253b8fe0a enhancing VM to handle OS signals properly. work in progress 2019-08-14 16:24:39 +00:00
hyunghwan.chung
2cd60cbed8 added moo_uintmaxtoint() 2019-08-12 02:32:04 +00:00
hyunghwan.chung
32341c1773 enhanded make_bigint_with_ooi() to handle MOO_TYPE_MIN(moo_ooi_t) 2019-08-11 16:15:55 +00:00
hyunghwan.chung
3f2e39cf44 added moo_inttouintmax and moo_inttointmax 2019-08-10 16:20:44 +00:00
hyunghwan.chung
3e1aded8a8 enhanced compile_if_expression() not to eliminate blocks containing one or more labels 2019-08-07 05:33:35 +00:00
hyunghwan.chung
ea69bb8d45 changing how to emit code for square bracked block to solve goto related issues. work still in progress 2019-08-05 09:08:03 +00:00
hyunghwan.chung
763d7f965e renumbered some jump byte codes for easy conversion between forward jump and backward jump 2019-08-02 15:59:19 +00:00
hyunghwan.chung
299faf4a87 some code for goto handling 2019-07-26 07:40:58 +00:00
hyunghwan.chung
3e506cbcfb added System>>backtrace 2019-07-12 07:24:37 +00:00
hyunghwan.chung
8e5e5234cb simplified source line and source text representation of a methond in dbgi 2019-07-12 03:38:45 +00:00
hyunghwan.chung
fcf6d3ffc1 touched up pf_method_get_source_file() and pf_method_get_ip_source_line() 2019-07-11 15:58:16 +00:00
hyunghwan.chung
d5475d79b6 added pf_method_get_ip_source_line() and defined CompiledMethod::ipSourceLine 2019-07-11 06:43:47 +00:00
hyunghwan.chung
4afe4b459d renamed clear_io_names() to moo_clearcionames().
attempting to write a fucntion that gives a source line for an instruction pointer
2019-07-10 15:30:08 +00:00
hyunghwan.chung
b3eb804f87 reorganized moo_duputobcstr(), moo_dupbtoucstr(), moo_dupbtouchars(), moo_duputobchars().
renamed add_io_name() to moo_addcioname().
changed input_handler in std.c to set arg->name when opening a file with moo_addcioname().
shortened dbginfo to dbgi.
enhanced the compiler to record the class location in dbgi
2019-07-10 09:19:38 +00:00
hyunghwan.chung
b4c6e6a9de added CompiledMethod>>sourceFile, CompiledMethod>>sourceLine.
added pf_method_get_source_file().
enhanced moo_addmethodtodbginfo().
enhanced the compiler to call moo_addfiletodbginfo(), moo_addmethodtodbginfo()
2019-07-09 15:56:34 +00:00
hyunghwan.chung
8820c3db16 changed dbginfo functions and structures a bit 2019-07-09 09:59:38 +00:00
hyunghwan.chung
e6d7cbd767 some more code to handle dbginfo 2019-07-08 15:41:57 +00:00
hyunghwan.chung
b88900eda2 writing some debug information tracking functions 2019-07-08 07:51:53 +00:00
hyunghwan.chung
fba3c3213c attempting to store the source location information collected while compiling into the moo_dbginfo_t data structure 2019-07-07 15:24:27 +00:00
hyunghwan.chung
81a1785c35 changed the compiler to set source_file and source_line into moo_method_t 2019-07-06 09:44:29 +00:00
hyunghwan.chung
7f835ea120 added moo_ischildclassof().
filled pf_context_find_exception_handler() to speed up exception handling a bit
2019-07-05 08:12:42 +00:00
hyunghwan.chung
92093dd23f added two more fields into CompiledMethod. no implementation change has been made yet 2019-06-29 10:46:28 +00:00
hyunghwan.chung
613e33d186 macro reordering in lib/moo.h. nothing meaningful 2019-06-24 08:37:19 +00:00
hyunghwan.chung
07b4364654 late commit for uncommited changes in the previous commit. 2019-06-23 14:53:01 +00:00
hyunghwan.chung
3419097054 removed send_message_with_str(), find_method_with_str()
registered some commonly used method names as symbols - doesNotUnderstand:, unwindTo:return:, primitiveFailed
invocation of the above methods doesn't need send_message_with_str()
changed startup method invocation to look up for a symbol first instead of using the above functions removed
2019-06-23 04:49:38 +00:00
hyunghwan.chung
ae20171772 the simple method cache seems working now. pending refinement 2019-06-22 14:22:58 +00:00
hyunghwan.chung
b33e0744d2 work in progress. implementing method lookup cache 2019-06-22 05:58:55 +00:00
hyunghwan.chung
e6747b21b8 attempting to implement a simple method lookup cache. work in progress 2019-06-22 02:02:59 +00:00
hyunghwan.chung
2cbfdfd6dd added the _instsize field to moo_t.
changed moo_getxtn() to utilize this new field.
remove moo_getxtnstd() as it's not needed any more for the added field
2019-06-21 07:21:58 +00:00
hyunghwan.chung
1222c2bf78 added moo_logbfmtv() and moo_logufmtv() 2019-05-31 10:43:27 +00:00
hyunghwan.chung
57c30e4563 work in progress - refactoring fmtout 2019-05-27 17:50:24 +00:00
hyunghwan.chung
8e4b175579 encoding experiment with cmgr 2019-05-14 15:54:16 +00:00
hyunghwan.chung
2b2ffb5521 added moo_get_cmgr_by_id(), moo_get_cmgr_by_name(), and other similar functions
changed the default source input handler to take the @postfix as the encoding specifier
2019-05-14 10:22:37 +00:00
hyunghwan.chung
bbf0f6acd1 migrated moo_isint() to moo-prv.h as a static inline function
renamed is_bigint() to moo_isbigint()
2019-05-04 17:53:16 +00:00
hyunghwan.chung
eba44fc039 migrated msb postionting function to moo-utl.h 2019-05-04 04:27:27 +00:00
hyunghwan.chung
12ebc336a0 added typecasting to some moo_xxxx() macros 2019-04-13 01:02:30 +00:00
hyunghwan.chung
4435124b32 added --enable-full-liw to configure.ac 2019-04-08 17:41:27 +00:00
hyunghwan.chung
e7ccbc36b4 debugging bigint division 2019-04-04 09:30:24 +00:00
hyunghwan.chung
e93da317e3 touched up hash macros and functions 2019-03-06 01:58:51 +00:00
hyunghwan.chung
313077f70f added moo_copyoochartosbuf()
changed string_to_fpdec to use sbuf
2019-02-20 09:08:10 +00:00
hyunghwan.chung
d384801eec added moo_fill_uchars()/moo_fill_bchars()
implemented the new fixed-point decimal prescale notation like 9p10.1 to indicate 10.100000000
2019-02-18 17:13:33 +00:00
hyunghwan.chung
fcdd6981b9 added comments to error codes 2019-01-30 10:17:31 +00:00
hyunghwan.chung
29f7058ebf added MOO_IOTOK_FPDECLIT and some handling code 2019-01-09 09:55:27 +00:00
hyunghwan.chung
5dd67859d7 change the ngc bit to the proc bit to determine the process object.
added temporary work around the faulty gc
2018-12-29 15:16:58 +00:00
hyunghwan.chung
fc3a725bb8 renamed moo_pushtmp()/poptmp()/poptmps() to moo_pushvolat()/popvolat()/popvolats() 2018-12-28 08:29:27 +00:00