Yukihiro "Matz" Matsumoto
d56db2296d
Merge pull request #5205 from dearblue/codedump
...
Fixed print catch handler address in codedump; ref #5200
2020-11-30 23:19:59 +09:00
dearblue
0ecb0fd97b
Fixed print catch handler address in codedump; ref #5200
...
It became 32 bits in #5200 , but only the upper 16 bits were printed.
2020-11-30 22:36:26 +09:00
Yukihiro "Matz" Matsumoto
9f5c0777f1
Merge pull request #5204 from shuujii/use-MRB_SYM-in-src-gc.c
...
Use `MRB_SYM` in `src/gc.c`
2020-11-29 20:15:48 +09:00
KOBAYASHI Shuji
82f3e4d31b
Use MRB_SYM in src/gc.c
2020-11-29 19:01:48 +09:00
Yukihiro "Matz" Matsumoto
d4439479cf
Merge pull request #5203 from komainu8/fix-heap-buffer-overflow
...
Fix heap buffer overflow when dump irep
2020-11-29 16:24:30 +09:00
Horimoto Yasuhiro
df13d418c3
Fix heap buffer overflow when dump irep
...
Currently, the size of writing in heap by write_irep_record() is
bigger than The size that is calculated by get_irep_record_size.
Therefore, irep is dumped over the size of allocating memory when we
execute dump_irep().
2020-11-29 15:57:44 +09:00
Yukihiro "Matz" Matsumoto
c6071335a1
Merge pull request #5200 from dearblue/catchhandler32
...
Change the catch handler address to 32 bits
2020-11-29 14:50:22 +09:00
dearblue
b0cea30f32
Change the catch handler address to 32 bits
...
Follow commit 7150c67539 .
2020-11-29 13:48:45 +09:00
Yukihiro "Matz" Matsumoto
6d07d9b3d7
Merge pull request #5197 from shuujii/fix-incorrect-regexp-creation-in-tasks-presym.rake
...
Fix incorrect regexp creation in `tasks/presym.rake`
2020-11-27 22:08:25 +09:00
KOBAYASHI Shuji
cb7eb202ce
Fix incorrect regexp creation in tasks/presym.rake
2020-11-27 20:07:16 +09:00
Yukihiro "Matz" Matsumoto
6059834244
Merge pull request #5196 from shuujii/fix-build-failure
...
Fix build failure; ref #5194
2020-11-27 08:57:03 +09:00
KOBAYASHI Shuji
fdce0e712b
Fix build failure; ref #5194
...
Fix the following two issues:
1. Compile failure when external gem is specified.
* https://github.com/mruby/mruby/pull/5194#issuecomment-734303442
2. When there are multiple build targets, presym parsing sometimes fails or
output result of presym is broken.
* https://github.com/mruby/mruby/pull/5194#issuecomment-734322142
The root cause of 2 is unknown, but it seems to occur when presym parsing is
performed in parallel, therefore I change them so that they are not run in
parallel.
2020-11-27 07:59:57 +09:00
Yukihiro "Matz" Matsumoto
13fc503434
Merge pull request #5195 from shuujii/add-tools-to-target-directory-for-presym-parsing
...
Add `tools/*` to target directory for presym parsing
2020-11-26 22:47:22 +09:00
KOBAYASHI Shuji
0cb3a7186c
Add tools/* to target directory for presym parsing
2020-11-26 22:05:59 +09:00
Yukihiro "Matz" Matsumoto
521c16d738
Merge pull request #5194 from shuujii/create-presym-files-for-each-build-target
...
Create presym files for each build target
2020-11-26 21:17:47 +09:00
Yukihiro "Matz" Matsumoto
7f5e257f77
Use __builtin_setjmp(), __builtin_longjmp() on MinGW; fix #5133
2020-11-26 20:48:26 +09:00
Yukihiro "Matz" Matsumoto
e0b8876640
Avoid integer overflow in rational_new.
2020-11-26 20:48:25 +09:00
KOBAYASHI Shuji
58ba883ee9
Create presym files for each build target
...
Previously, presym files were always created in `build/{presym,presym.inc}`.
However, this constraint is inconvenient because it is common to use
multiple build configurations and build targets in a single mruby tree.
Therefore, change to create presym file for each build target.
2020-11-26 19:05:07 +09:00
Yukihiro "Matz" Matsumoto
79af3f30b4
Merge pull request #5193 from shuujii/fix-loop-condition-in-mrb_sym_all_symbols
...
Fix loop condition in `mrb_sym_all_symbols`
2020-11-26 14:20:11 +09:00
KOBAYASHI Shuji
3c63d38058
Fix loop condition in mrb_sym_all_symbols
2020-11-26 13:47:45 +09:00
Yukihiro "Matz" Matsumoto
63d4e8eca2
Fix a bug in find_symbol(); fix #5192
2020-11-26 13:18:45 +09:00
Yukihiro "Matz" Matsumoto
7150c67539
Make OP_JMP* operand address to be relative.
...
Jump target address is `operand (16bit)` + `address of next instruction`.
In addition, `ilen` was made `uint32_t` so that `iseq` length limitation
of 65536 is removed. Only jump target address should be within signed
16bit (-32768 .. 32767).
2020-11-26 10:34:31 +09:00
Yukihiro "Matz" Matsumoto
6dedd6a940
Fix Symbol.all_symbols to include preallocated symbols; ref #5116
2020-11-26 10:33:15 +09:00
Yukihiro "Matz" Matsumoto
66f2e733e5
Symbols should work with MRB_USE_ALL_SYMBOLS; fix #5116
2020-11-26 10:32:19 +09:00
Yukihiro "Matz" Matsumoto
a33f9d7b65
Small refactoring regarding symbols for clarity.
2020-11-26 09:42:08 +09:00
Yukihiro "Matz" Matsumoto
50b57f6ff1
Include mruby.h instead of mrbconf.h directly.
2020-11-26 09:14:12 +09:00
Yukihiro "Matz" Matsumoto
2daf1987f9
Avoid memory leak when mrb_read_irep() fails.
2020-11-26 09:04:30 +09:00
Yukihiro "Matz" Matsumoto
71f9add1c5
Move inline iseq in array.c to array.rb.
...
There's no efficiency difference since `cdump` is implemented.
2020-11-25 23:14:38 +09:00
Yukihiro "Matz" Matsumoto
fba7874a68
Replace mere enable_debug by clearer conf.enable_debug [ci skip]
2020-11-25 21:42:10 +09:00
Yukihiro "Matz" Matsumoto
6e17122c6d
Merge pull request #5190 from shuujii/allow-compiler-name-in-build-log-to-be-customized
...
Allow compiler name in build log to be customized
2020-11-25 15:31:39 +09:00
KOBAYASHI Shuji
038bad2f41
Allow compiler name in build log to be customized
...
For example, in the case of the C++ compiler, it is output as
`CXX build/host/src/gc.cxx -> build/host/src/gc.cxx.o` (FYI, in the case
of `enable_cxx_abi`, it outputs `CC ...` because the option to compile as
C++ is added to C compiler).
2020-11-25 15:11:36 +09:00
Yukihiro "Matz" Matsumoto
6a284872ce
Merge pull request #5189 from shuujii/fix-C-source-compilation-with-MRB_USE_ALL_SYMBOLS
...
Fix C source compilation with `MRB_USE_ALL_SYMBOLS`; ref #5187
2020-11-25 14:33:03 +09:00
KOBAYASHI Shuji
a7b50be35b
Fix C source compilation with MRB_USE_ALL_SYMBOLS; ref #5187
...
However, compiling by `mrbc` fails with another issue (#5116 ).
2020-11-25 10:17:52 +09:00
Yukihiro "Matz" Matsumoto
fc98aa290f
Remove no longer used `MRB_IV_SEGMENT_SIZE; close #5188 [ci skip]
2020-11-25 08:31:10 +09:00
Yukihiro "Matz" Matsumoto
40235f3050
Use more mrb_int_value() instead of mrb_fixnum_value().
2020-11-24 20:52:25 +09:00
Yukihiro "Matz" Matsumoto
2e30c68562
Move MRB_NO_FLOAT detection in mruby-math; #5185
2020-11-24 20:43:56 +09:00
Yukihiro "Matz" Matsumoto
4d21a68d35
Add #include <mrbconf.h> at the head of fmt_fp.c; #5185
2020-11-24 20:01:24 +09:00
Yukihiro "Matz" Matsumoto
9e114fc913
Merge pull request #5186 from shuujii/optimize-presym_find
...
Optimize `presym_find`
2020-11-24 16:58:09 +09:00
Yukihiro "Matz" Matsumoto
e55abd2390
Fix compiler errors from MRB_NO_FLOAT; #5185
...
Also added `no-float.rb` target in `build_config`.
2020-11-24 16:54:39 +09:00
KOBAYASHI Shuji
db00fb238b
Optimize presym_find
...
Chang to compare string length first.
### Benchmark
#### Code
* https://github.com/shuujii/mruby-presym_find-benchmark
#### Result
```console
Previous: 10.240772M i/s (25M times in 2.441222s)
New: 16.412985M i/s (25M times in 1.523184s)
```
2020-11-24 16:30:52 +09:00
Yukihiro "Matz" Matsumoto
36e3c4404a
Should not use mrb_float if MRB_NO_FLOAT is defined; fix #5185
2020-11-24 13:50:15 +09:00
Yukihiro "Matz" Matsumoto
67f3626b5c
Merge pull request #5178 from abinoam/fix_mruby_config_setting
...
Fix #5177 by setting MRUBY_CONFIG early
2020-11-24 09:44:21 +09:00
Abinoam Praxedes Marques Junior
4803c872e2
Fix #5177 - set MRUBY_CONFIG early
2020-11-23 15:18:22 -03:00
Yukihiro "Matz" Matsumoto
e4e4eeb0c3
Merge pull request #5184 from dearblue/embedded-directive
...
Avoid warnings from clang's "-Wembedded-directive"
2020-11-23 22:07:48 +09:00
dearblue
3a92a4e3d8
Avoid warnings from clang's "-Wembedded-directive"
...
If it gives clang-11.0 `-Wembedded-directive`, a warning will be reported in `include/mruby/boxing_nan.h`.
```
include/mruby/boxing_nan.h:48:2: warning: embedding a directive within macro arguments has undefined behavior [-Wembedded-directive]
include/mruby/boxing_nan.h:52:2: warning: embedding a directive within macro arguments has undefined behavior [-Wembedded-directive]
```
The cause of this is #5117 .
ref. e993b83c50
2020-11-23 21:22:50 +09:00
Yukihiro "Matz" Matsumoto
6f53e2c059
Merge pull request #5180 from wataash/fix-unintended-variable-shadowing
...
Fix unintended variable shadowing
2020-11-23 17:05:27 +09:00
Yukihiro "Matz" Matsumoto
c6c0b796e1
Merge pull request #5181 from shuujii/raise-an-exception-instead-of-exiting-when-mrbc-fails
...
Raise an exception instead of exiting when `mrbc` fails
2020-11-23 17:02:44 +09:00
Yukihiro "Matz" Matsumoto
b1ee892818
Merge pull request #5183 from shuujii/change-output-condition-in-_pp
...
Change output condition in `_pp`
2020-11-23 17:01:59 +09:00
Yukihiro "Matz" Matsumoto
e6b06eafb3
Merge pull request #5182 from shuujii/use-local-variables-instead-of-top-level-constants-in-boxing.rb
...
Use local variables instead of top level constants in `boxing.rb` [ci skip]
2020-11-23 17:01:01 +09:00
KOBAYASHI Shuji
2f85290065
Change output condition in _pp
...
* Output even with `rake -v` (to help debugging)
* Not output when `rake -s`
2020-11-23 16:50:15 +09:00