World: r3wp
[!REBOL3]
older newer | first last |
Kaj 21-May-2011 [8818] | Indeed |
Geomol 21-May-2011 [8819] | to lit-words! also put it in system/words in R2. |
Kaj 21-May-2011 [8820x2] | That's probably one of the things optimised away in R3 |
It's such a shame it's stalled | |
onetom 21-May-2011 [8822] | I think, Carl will return soon and he will open source R3. He must have a hard time doing that other job, but probably he will experience the bright side of the open collaboration too. Im expecting him to realize that he can actually help the world effectively if he can unleash the power us, the long time fans of rebol. |
Kaj 21-May-2011 [8823x2] | Don't hold your breath |
John, to keep your mind on the edge of the cliff, did you know about the global series table? :-) | |
Geomol 21-May-2011 [8825] | Not sure, what's that? |
Kaj 21-May-2011 [8826x5] | Quite similar to the global symbols table, the existence of a global series table can be deduced, from the R3 extensions interface |
A series value does not include an index. Only a reference does. So that's one indirection, from a value slot (with an index) to a series value | |
But there must be another indirection, from the series value to the actual storage location of its item slots, because the item storage can't be counted on to stay at the same memory address over garbage collection and callbacks or multitasking, but it must be deduced that the series value can be counted on to stay at the same memory address | |
So there must be a table of series descriptors apart from the actual series content | |
Maybe it doesn't really need to be a global table, but it seems very convenient for the garbage collector | |
Geomol 21-May-2011 [8831] | No, haven't heard of that. |
BrianH 21-May-2011 [8832] | It wouldn't need to be a global table, it could be a heap space dedicated to series descriptors (a typed array in memory). Same purpose, more likely implementation. Precise collectors are often implemented with type-specific heap spaces, since it reduces fragmentation when you don't have a copying or compacting collector - REBOL's collector doesn't move values, supposedly. REBOL could get away with heap spaces for block data, string/binary data, and descriptors (maybe both object and series in the same heap space); there might be more, but adding more can make the memory management more complicated. |
Kaj 21-May-2011 [8833] | I'm not sure how that differs from my description |
BrianH 21-May-2011 [8834] | can't be counted on to stay at the same memory address over garbage collection - as far as I know this has never been demonstrated. The performance characteristics of REBOL's garbage collection are more consistent with mark-and-sweep, and there hasn't been any indication that it compacts or copies. Series reallocation on expansion does copy though. Plus, there is a bunch of indication that R3 isn't yet task-safe and that callbacks can choke on shared data too. Aside from that, your argument's good, and your conclusion more so. |
Kaj 21-May-2011 [8835] | Well, I wouldn't count on it, but indeed, what the extensions documentation specifies is that series can move when they are changed. It's all very vague, but if the collector doesn't compact as you say, it would be restricted to expanding series beyond the internally allocated memory region |
Ladislav 21-May-2011 [8836x5] | time-block? u mean delta-time? I mean TIME-BLOCK: http://www.fm.tul.cz/~ladislav/rebol/timblk.r |
could two different words be equal in REBOL? - in my opinion, that would be a bug | |
(unless intended, using aliasing) | |
heap spaces for block data, string/binary data, - there is absolutely no reason to have different spaces for strings and blocks | |
aha, maybe there is | |
BrianH 22-May-2011 [8841x2] | If you allocate strings only in multiples of 128 bits and aligned the same as blocks, fragmentation wouldn't be a problem if they are allocated in the same space. It would be a waste of resources for strings though, as even a single-char string would take 16 bytes of space. |
Some memory management systems segregate the values by the size, with objects of similar sizes allocated from the same space, to cut down on fragmentation. Large enough objects are sometimes allocated on their own, in a seperate chunk of memory allocated from the OS. I haven't seen any indications that REBOL's memory management does this though. | |
Jerry 24-May-2011 [8843] | Why does SKIP accept LOGIC! and PAIR! as its OFFSET parameter? Thanks. |
Geomol 24-May-2011 [8844] | pair! is for images, I think. |
Jerry 24-May-2011 [8845] | I have the same guess. Geomol |
Geomol 24-May-2011 [8846] | About logic, I guess, it's related to a wish to use PICK with logic argument. It works like this for SKIP: >> skip [a b] true == [a b] >> skip [a b] false == [b] and you can use PICK instead of EITHER sometimes like: value: pick [1 2] b > 1 instead of value: either b > 1 [1] [2] |
Jerry 24-May-2011 [8847] | SKIP with TRUE as its 2nd argument, which made me think it DID skip. SKIP with FALSE as its 2nd argument, which made me think it DIDN'T skip. With your PICK example, now I understand. |
Geomol 24-May-2011 [8848x2] | Yes, the initial imagined behaviour is turned around with logic. :) The PICK method is also faster than the EITHER method, if it's simple values to pick. If you have to reduce the block, the EITHER method is faster, as EITHER already reduce its blocks. |
In R2, you can pick from functions, like: >> pick :to-integer 1 == [value] and it works with true too, but not with false: >> pick :to-integer true == [value] >> pick :to-integer false ** Script Error: Out of range or past end In R3, you can't pick functions like this. | |
Endo 24-May-2011 [8850] | SKIP with LOGIC value seems reverse, because it doesn't convert logic to integer before use it: >> to-integer true == 1 |
Geomol 24-May-2011 [8851] | See Core group! |
Endo 24-May-2011 [8852] | Yep, I saw it. |
Jerry 24-May-2011 [8853] | LENGTH? 'WORD is 4, LENGTH? /WORD is 5 ... not 4. Why? is the heading #"/" in refinement counted? |
Endo 24-May-2011 [8854x2] | I guess it counts / as part of it: >> to-string /WORD == "/WORD" >> to-string 'WORD == "WORD" |
But I don't know if it is a bug or not. | |
Geomol 24-May-2011 [8856x2] | To be able to type a word of datatype word!, we need lit-word!. Else the word would be evaluated to it's value. So when you write length? 'word , it's the same as length? first [word] To get what you want: length? first ['word] or length? quote 'word |
It's kinda interesting, that you can take the length of words in R3. You can't do that in R2. | |
Endo 24-May-2011 [8858x2] | thats right, same for refinement also. |
and above code gives different result in R2: >> to-string 'word == "word" >> to-string /word == "word" both 4 chars lenght. | |
Geomol 24-May-2011 [8860x3] | Funny! These different words are all part of the typeset any-word!. In R3, you can see, what datatypes are part of a typeset with: ? any-word! It's interesting, issue! is also an any-word! in R3. It's not in R2. But issues have different syntactic rules than words: >> #1a == 1a >> '1a ** Syntax Error: Invalid word-lit -- '1a |
Correction: >> #1a == #1a | |
Same can be said with refinements: >> /1a == /1a which looks to me like an error. | |
Endo 24-May-2011 [8863] | it is because of lit-words cannot start with a number but refinements and issues can. |
Geomol 24-May-2011 [8864] | Yes, but what benefit do you have from refinements starting with a number? |
Endo 24-May-2011 [8865] | actually nothing :) it is useless because you can create a function like below, but you cannot use it: >> f: func [/1a] [] >> f/1a ** Syntax Error: Invalid integer -- 1a |
Maxim 24-May-2011 [8866] | IIRC it was discussed that numeral refinements should be removed from R3. |
Jerry 25-May-2011 [8867] | in the source code of load-module, the first line is ASSERT/TYPE [LOCAL NONE!] ... Why? |
older newer | first last |