[Vm-dev] something fishy with genPrimitiveStringReplace

Nicolas Cellier nicolas.cellier.aka.nice at gmail.com
Sun Nov 26 23:12:59 UTC 2017


2017-11-26 23:30 GMT+01:00 Nicolas Cellier <
nicolas.cellier.aka.nice at gmail.com>:

> Ah thanks!
>
> But I think that there is another bug in replacement size test...
>
> (1 to: 20) reject: [:n |
>   a := String new: n.
>   b := String new: n-1.
>   ([a replaceFrom: 1 to: n with: b startingAt: 1] ifError: [nil]) isNil.
> ]
> -> #(2 4 6 8 10 12 14 16 18 20)
>
> I'd expect they all fail, thus an empty #()
>

OK, I corrected it, the replArray size was not correct
(VMMaker.oscog-nice.2283)
The variable holding replArray format was already overwritten.
So I choosed to store replArray format into repStartReg and that works OK.


> 2017-11-26 23:09 GMT+01:00 Clément Bera <bera.clement at gmail.com>:
>
>>
>> Ok fixed in 2282 ! Thanks for reporting
>>
>> On Sun, Nov 26, 2017 at 11:04 PM, Clément Bera <bera.clement at gmail.com>
>> wrote:
>>
>>> This is correct: (lessOrEqual instead of less):
>>>
>>>         "0 >= start, fail"
>>> cogit CmpCq: (objectMemory integerObjectOf: 0) R: startReg.
>>> jumpOutOfBounds1 := cogit JumpLessOrEqual: 0.
>>> "0 >= replStart, fail"
>>> cogit CmpCq: (objectMemory integerObjectOf: 0) R: repStartReg.
>>> jumpOutOfBounds2 := cogit JumpLessOrEqual: 0.
>>>
>>> I can't commit right now (my image has many changes I need to commit and
>>> I cannot branch easily on monticello...) Will do tomorrow. Thanks for
>>> reporting.
>>>
>>>
>>> On Sun, Nov 26, 2017 at 10:58 PM, Clément Bera <bera.clement at gmail.com>
>>> wrote:
>>>
>>>> I think those lines are the problem:
>>>>
>>>>         "0 >= start, fail"
>>>> cogit CmpCq: (objectMemory integerObjectOf: 0) R: startReg.
>>>> jumpOutOfBounds1 := cogit JumpLess: 0.
>>>> "0 >= replStart, fail"
>>>> cogit CmpCq: (objectMemory integerObjectOf: 0) R: repStartReg.
>>>> jumpOutOfBounds2 := cogit JumpLess: 0.
>>>>
>>>> If this is equal if should jump out of bounds.
>>>>
>>>>
>>>>
>>>> On Sun, Nov 26, 2017 at 9:53 PM, Clément Bera <bera.clement at gmail.com>
>>>> wrote:
>>>>
>>>>> Bug seems to be with underflow access on replacement array:
>>>>>
>>>>> (1 to: 10) collect: [:i| ['123456789' replaceFrom: 1 to: 4 with:
>>>>> 'abcdefgh' startingAt: 0] on: Error do: ['error']]
>>>>> #('error' ' abc56789' ' abc56789' ' abc56789' ' abc56789' ' abc56789'
>>>>> ' abc56789' ' abc56789' ' abc56789' ' abc56789').
>>>>>
>>>>> Same thing on arrays since this is common code...
>>>>>
>>>>> Generated code looks ok... I need to look again I may have inverted
>>>>> some branches.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On Sun, Nov 26, 2017 at 9:37 PM, Clément Bera <bera.clement at gmail.com>
>>>>> wrote:
>>>>>
>>>>>> Ok I have a look.
>>>>>>
>>>>>> This is on byte objects...
>>>>>>
>>>>>> On Sun, Nov 26, 2017 at 9:07 PM, Nicolas Cellier <
>>>>>> nicolas.cellier.aka.nice at gmail.com> wrote:
>>>>>>
>>>>>>>
>>>>>>> Like reported on travis
>>>>>>> https://travis-ci.org/OpenSmalltalk/opensmalltalk-vm/jobs/307544570
>>>>>>>
>>>>>>> the testTextReplacement3 now fails randomly.
>>>>>>> It sometimes omit to signal an Error...
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Clément Béra
>>>>>> Pharo consortium engineer
>>>>>> https://clementbera.wordpress.com/
>>>>>> Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Clément Béra
>>>>> Pharo consortium engineer
>>>>> https://clementbera.wordpress.com/
>>>>> Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Clément Béra
>>>> Pharo consortium engineer
>>>> https://clementbera.wordpress.com/
>>>> Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq
>>>>
>>>
>>>
>>>
>>> --
>>> Clément Béra
>>> Pharo consortium engineer
>>> https://clementbera.wordpress.com/
>>> Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq
>>>
>>
>>
>>
>> --
>> Clément Béra
>> Pharo consortium engineer
>> https://clementbera.wordpress.com/
>> Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20171127/0ca26995/attachment-0001.html>


More information about the Vm-dev mailing list