144 Commits

Author SHA1 Message Date
hyunghwan.chung
f3953c4754 adding Apex>>basicAt:test:put: 2019-08-17 05:28:25 +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
7b4945f231 enhanced resolve_goto_label() to check block id as well collecting block ids 2019-08-07 09:16:28 +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
55bf7e269e trying to fix some goto implementation issues 2019-08-04 16:38:09 +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
bd3fc07aaa got rid of short jump instructions(jump offset encoded in the last 2 bits of the instruction)
added jump_backward_if_false/true instruction and the like
2019-08-02 09:23:08 +00:00
hyunghwan.chung
3b6e59d98c more code to the compiler's goto handling functions 2019-08-01 16:05:04 +00:00
hyunghwan.chung
5f4133e9fd wrote a few more lines in add_label() in comp.c 2019-07-31 08:53:44 +00:00
hyunghwan.chung
5ef1c3b989 slightly more code for goto handling 2019-07-28 15:37:01 +00:00
hyunghwan.chung
299faf4a87 some code for goto handling 2019-07-26 07:40:58 +00:00
hyunghwan.chung
bd1d30360e shortened elsif to elif.
enhanced is_reserved_word() to return a token type through a non-NULL second parameter
2019-07-26 04:40:33 +00:00
hyunghwan.chung
05837aef28 more goto-label handling code 2019-07-18 15:51:55 +00:00
hyunghwan.chung
d3f1a435cb fixed a lexer bug than returned FPDECLIT where INTLIT was desired.
added more code to process jump labels
2019-07-17 17:04:27 +00:00
hyunghwan.chung
1c0b23fa97 started working on parsing labels 2019-07-17 09:52:26 +00:00
hyunghwan.chung
1533c42dbf removed code_start_loc from moo_method_data_t and added start_loc 2019-07-12 08:05:44 +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
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
c334b0af28 added the code_start_loc field to moo_method_data_t and updated emit_byte_instruction()
to get distance of the instruction being emitted
2019-07-06 09:11:25 +00:00
hyunghwan.chung
a9045a56b2 changed the moo_code_t structure a little 2019-07-02 09:48:56 +00:00
hyunghwan.chung
ea4d782c1d changed %(, %[, %{ to ##(, ##[, ##{ respectively
put back % into is_binselchar().
attempting to support a string-like byte array literal - B"XXXX"
2019-06-27 07:43:17 +00:00
hyunghwan.chung
ae20171772 the simple method cache seems working now. pending refinement 2019-06-22 14:22:58 +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
a4c13608ef fixed some inconsistency in moo_fmt_object_().
changed to handle a symbol with a c-style escape sequences enclosed in #""
2019-05-30 15:44:24 +00:00
hyunghwan.chung
5bf79fb4b5 finished refactoring fmt code in fmt.c.
removed old fmt code by deleting fmtout.c and fmtoutv.h
2019-05-29 09:20:45 +00:00
hyunghwan.chung
054313b96c renamed moo_sprintfmtfromstack() to moo_strfmtcallstack().
refactored related functions
2019-05-29 01:35:13 +00:00
hyunghwan.chung
3f274d74b7 refactored moo_seterrbfmt() and moo_seterrufmt() with moo_bfmt_outv() and moo_ufmt_outv() 2019-05-28 08:55:13 +00:00
hyunghwan.chung
57c30e4563 work in progress - refactoring fmtout 2019-05-27 17:50:24 +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
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
0805ecc76b added doWithIndex:. from:to:do: from:to:doWithIndex: to SequenceableCollection
added scale and scale: to Integer and FixedPointDecimal
added moo_truncfpdec()
2019-02-18 08:57:59 +00:00
hyunghwan.chung
623f97e2f9 removed unneeded code 2019-01-26 16:45:23 +00:00
hyunghwan.chung
c3705dd340 renamed logfmtv to fmtoutv and made related changes 2019-01-25 07:49:01 +00:00
hyunghwan.chung
7d3d21b3cf added moo_numtostr() 2019-01-10 10:01:50 +00:00
hyunghwan.chung
cd4d34c724 added some number primitives 2019-01-10 07:00:17 +00:00
hyunghwan.chung
29f7058ebf added MOO_IOTOK_FPDECLIT and some handling code 2019-01-09 09:55:27 +00:00
hyunghwan.chung
1463621bdb added some function prototypes 2019-01-01 06:44:28 +00:00
hyunghwan.chung
b13892d586 substitute more macros for the slot field access.
simplified code by getting rid of SET_ACTIVE_METHOD_CODE() and making related changes
2018-12-23 08:33:52 +00:00
hyunghwan.chung
7b7906bf09 define private prototypes of moo_sprintfmtst() and moo_sproutbfmt() 2018-12-21 16:40:20 +00:00
hyunghwan.chung
71a617b95b enhanced moo_inttostr() with 2 new flags - MOO_INTTOSTR_LOWERCASE and MOO_INTTOSTR_NONEWOBJ
redefined bigint and fpdec check macros
added the strfmt primitive to String
2018-12-21 16:25:25 +00:00
hyunghwan.chung
9a4bbcaa4c fixed wrong computation of buffer capacity for moo->inttostr.xbuf and moo->inttostr.t
updated some sample code
fixed a few flaws in ffi.c
2018-12-20 16:08:56 +00:00
hyunghwan.chung
fb7b226ea8 used more access macros 2018-12-19 16:57:16 +00:00
hyunghwan.chung
8d10b4a5fa exposed moo_lookupdic_noseterr() which doesn't set error information upon failure so as to avoid setting error information unnecessarily during method lookup(moo_findmethod(), etc) 2018-12-10 13:34:31 +00:00
hyunghwan.chung
1cffec34e8 renamed moo_allocheapmem() to moo_allocheapspace() and changed its second parameter from moo_heap_t* to moo_space_t*
added moo_space_t
changed moo_makeheap() to create a single heap and split it to multiple spaces
2018-11-30 13:37:15 +00:00