Changeset 09ab0a9a in mainline for uspace/app/sbi
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/app/sbi/src
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/bigint.c
rb2aaaa0 r09ab0a9a 646 646 } 647 647 648 649 648 /** Allocate bigint of the given length. 650 649 * -
uspace/app/sbi/src/builtin/bi_textfile.c
rb2aaaa0 r09ab0a9a 219 219 } 220 220 221 222 221 /** Read one line from a text file. 223 222 * -
uspace/app/sbi/src/p_type.c
rb2aaaa0 r09ab0a9a 256 256 } 257 257 258 259 258 /** Parse primitive type expression. 260 259 * -
uspace/app/sbi/src/parse.c
rb2aaaa0 r09ab0a9a 972 972 } 973 973 974 975 974 /** Parse member property setter. 976 975 * … … 1030 1029 } 1031 1030 } 1032 1033 1031 1034 1032 /* Create setter procedure */ -
uspace/app/sbi/src/rdata.c
rb2aaaa0 r09ab0a9a 736 736 } 737 737 738 739 738 /** Copy boolean. 740 739 * -
uspace/app/sbi/src/rdata_t.h
rb2aaaa0 r09ab0a9a 28 28 29 29 /** @file Run-time data representation. */ 30 31 30 32 31 #ifndef RDATA_T_H_ -
uspace/app/sbi/src/run.c
rb2aaaa0 r09ab0a9a 809 809 } 810 810 811 812 811 /** Check for unhandled exception. 813 812 * … … 1171 1170 run_proc_ar_delete(proc_ar); 1172 1171 } 1173 1174 1172 1175 1173 /** Fill arguments in a procedure AR. -
uspace/app/sbi/src/run.h
rb2aaaa0 r09ab0a9a 86 86 void run_block_ar_destroy(run_t *run, run_block_ar_t *block_ar); 87 87 88 89 88 #endif -
uspace/app/sbi/src/run_expr.c
rb2aaaa0 r09ab0a9a 1356 1356 } 1357 1357 1358 1359 1358 /** Evaluate @c new operation. 1360 1359 * -
uspace/app/sbi/src/run_expr.h
rb2aaaa0 r09ab0a9a 42 42 bool_t run_item_boolean_value(run_t *run, rdata_item_t *item); 43 43 44 45 44 #endif -
uspace/app/sbi/src/run_t.h
rb2aaaa0 r09ab0a9a 43 43 intmap_t vars; /* of rdata_var_t */ 44 44 } run_block_ar_t; 45 46 45 47 46 /** Procedure activation record -
uspace/app/sbi/src/stype.c
rb2aaaa0 r09ab0a9a 1688 1688 } 1689 1689 1690 1691 1690 /** Convert expression of variable type to variable type. 1692 1691 * … … 1976 1975 } 1977 1976 1978 1979 1977 /** Determine if two type signatures are equal. 1980 1978 * -
uspace/app/sbi/src/stype_expr.c
rb2aaaa0 r09ab0a9a 130 130 static void stype_box(stype_t *stype, stree_box_t *box, tdata_item_t **rtitem); 131 131 132 133 132 /** Type expression 134 133 * … … 1392 1391 } 1393 1392 1394 1395 1393 /** Type a call operation. 1396 1394 * -
uspace/app/sbi/src/symbol.c
rb2aaaa0 r09ab0a9a 506 506 } 507 507 508 509 508 /** Convert symbol to function (base to derived). 510 509 * … … 610 609 } 611 610 612 613 611 /** Convert property to symbol (derived to base). 614 612 * -
uspace/app/sbi/src/tdata.c
rb2aaaa0 r09ab0a9a 450 450 } 451 451 452 453 452 /** Print type item. 454 453 *
Note:
See TracChangeset
for help on using the changeset viewer.