Hi all!
Something ugly of OOP programation is big size of binaries because all Object code is included in binaries, even if never used.
A basic Object is just an structure in memory. There is a couple of pages about objects in Assembly from Randy Hyde in 1989 or so, but I can't find now (If somebody have at hand, I will preciate that).
More usefull Object store addresses of related procedures. Then procedure code must be in binary.
The idea of this elemental system is to have related procedures but not to store that addresses, instead macros must to know Structure-Procedure relation.
Because initially this is thought like an auxiliary system, I can name things like object, method, etc. If there are better non-conflicting names for that, also I will preciate :biggrin: :
Block prueba
Def_item dato1, dword, 10
Def_item dato2, dword, 20
BlockEnd
Brick print1, xsi
SaveRegs
SetBlock xsi
conout str$(dword ptr [xsi].prueba.dato1),lf,lf
RestoreRegs
BrickEnd
Obviously, Block is the object and Brick is the method (a procedure writed "Brick name, uses, pointer, arguments).
Main point of objects is to build a new object from a previous one:
Block pocomas, prueba
Def_item dato3, dword, 55
BlockEnd
Brick print3, xdi
SaveRegs
SetBlock xdi
conout str$(dword ptr [xdi].pocomas.dato3),lf,lf
RestoreRegs
BrickEnd
This Block have to be loaded to memory like any object, and referenced by addresses. To deal with inheritance BCall must be used for methods (BCall object, method, pointer, arguments):
SystemBlockInit
NewBlock prueba
mov item1, xax
NewBlock pocomas
mov item2, xax
BCall pocomas, print1, item2
BCall pocomas, print3, item2
DestroyBlock item1
DestroyBlock item2
Ideas are welcome :thumbsup:
Regards, HSE.
conditionally compiled / assembled code can remove useless code with stubs.
Quote from: TimoVJL on November 10, 2023, 11:54:56 PMconditionally compiled / assembled code can remove useless code with stubs.
:thumbsup:
The problem is that you can have hundreds of methods/procedures, and I fail to think a razonable way to do the conditionality.
Previously I forget to mention that test can be build with ML/Masm32 SDK and ML64/Masm64 SDK.
Quote from: HSE on November 11, 2023, 12:32:03 AMthat test can be built with ML/Masm32 SDK and ML64/Masm64 SDK
It works :thumbsup:
When will you post the English version? :biggrin:
Quote from: jj2007 on November 11, 2023, 03:51:56 AMIt works :thumbsup:
Thanks for report :thumbsup:
Quote from: jj2007 on November 11, 2023, 03:51:56 AMWhen will you post the English version? :biggrin:
I don't know. In English could look to much easy :biggrin:
Hi HSE
Interesting idea. :thumbsup:
I'll look into the details at the weekend.
What I've seen so far is that you call directly and avoid a virtual table completely.
Biterider
Quote from: Biterider on November 11, 2023, 05:41:19 AMWhat I've seen so far is that you call directly and avoid a virtual table completely.
:thumbsup:
Hi HSE
I looked a little deeper into the code and found it really good. :biggrin:
Your approach is to make all calls static eliminating all indirections. That's good and saves some execution speed.
What I'm not sure about is looking into inheritance, how an ancestor code is called.
Another feature that will work is polymorphism, but atm I don't know how such a call will look like...
Good stuff! :thumbsup:
Biterider
Hi Biterider!
Quote from: Biterider on November 12, 2023, 10:41:12 PMWhat I'm not sure about is looking into inheritance, how an ancestor code is called.
:biggrin: I forgot to discriminate that, because logical names ACall, ICall, etc are used in ObjAsm. Then now is Heritage call: HCall (updated in first post)
Quote from: Biterider on November 12, 2023, 10:41:12 PMAnother feature that will work is polymorphism, but atm I don't know how such a call will look like...
I thinking in conceptual levels for Objects Systems:
- Level 0: structure in memory, with related procedures.
- Level 1: inheritance of structure and procedures (extends in Java) without virtual table.
- Level 2: procedure polymorphism.
- Level 3: structure and procedure additions, or multiple inheritance if you like (implements in Java)
- level 4: complete virtual procedure table
- level 5: templates
- level 6: something else?
Note that ObjAsm is "level 5 or more" except "level 3"
Also you can see that I'm uploading Block_L1.inc :biggrin:
I can't think how to make polymorphism without a partial virtual procedure table, then "Block_L2.inc" build a partial table. No escape because I need polymorphism in a couple of programs :rolleyes:
If there is a better idea...
I also think that multiple inheritance can easily be added to ObjAsm, but I have to play with that in this more simple system.
Thanks, HSE.
Hi HSE
Level 3 does indeed have good potential for discussion.
I remember reading an article by a development team at Google where they wrote that they were moving away from inheritance because they wanted to flatten the inheritance path. The solution they came up with was "gluing" objects together in the form we know in ObjAsm as "Embed".
They claimed that their approach allows them to keep a better overview and avoid jumping around the inheritance ladder, making the code more efficient.
Biterider
Quote from: Biterider on November 13, 2023, 04:36:06 AMLevel 3 does indeed have good potential for discussion.
:thumbsup:
Quote from: Biterider on November 13, 2023, 04:36:06 AMThe solution they came up with was "gluing" objects together
Yes, for specific purposes have no sense inheritance at machine code level, preprocessor can deal with that :biggrin:
Hi all!
This is Level 2, with polymorphism.
For example, 2 differents objects descendents of "prueba":
BCall prueba, print2, item3
BCall prueba, print2, item4
result in:
----- polymorphism test -----
20
This is otromas
Press any key to continue ...
If you remember that "print2" is polymorphic, requiere less preprocess to use Polymorphic call: PCall:
PCall prueba, print2, item3
PCall prueba, print2, item4
Regards, HSE.
Hi!
Any light OOP System will grow up to the monster-size OOP System.
I use a pointer to the structure in the register, so in the method all operations look like:
mov AX,(struc_name PTR [reg_name]).struc_member
How do you implement the heap of objects ?? Is it a list or a tree or a array or something else ?
When I using a register that points to structure I think that may be implement a handle for the object in the heap.
Hi,
Quote from: Rockphorr on December 26, 2023, 08:23:31 AMAny light OOP System will grow up to the monster-size OOP System.
The complete OOP System I use is ObjAsm, this must be more simple.
Quote from: Rockphorr on December 26, 2023, 08:23:31 AMI use a pointer to the structure in the register
Is just that :thumbsup:
Quote from: Rockphorr on December 26, 2023, 08:23:31 AMHow do you implement the heap of objects ?? Is it a list or a tree or a array or something else ?
Can be implemented how you want.
Quote from: Rockphorr on December 26, 2023, 08:23:31 AMWhen I using a register that points to structure I think that may be implement a handle for the object in the heap.
Obviously.
Thanks.
Global OOP optimizer could remove useless code and zero unused methods.
Quote from: TimoVJL on December 26, 2023, 09:45:17 AMGlobal OOP optimizer could remove useless code and zero unused methods.
Fantastic :thumbsup:
How you do that in assembly?
Only those people, who develops assemblers, compilers and linkers knows that.
Linker have to be OOP aware.
Have been known for long time, those who had read Dr Dobbs long time ago, knows that.
Quote from: TimoVJL on December 26, 2023, 10:30:20 AMHave been known for long time
Naturally :biggrin:
Thanks.
Quote from: HSE on December 26, 2023, 10:21:21 AMcould remove useless code and zero unused methods.
Unused methods should not generate code in Assembly. If they do, something is wrong with your system.
Quote from: jj2007 on December 26, 2023, 11:31:48 AMQuote from: HSE on December 26, 2023, 10:21:21 AMcould remove useless code and zero unused methods.
Unused methods should not generate code in Assembly. If they do, something is wrong with your system.
Isn't it heresy in asm with a system that creates bloat?
There was lightweight oop many years ago I tried
Quote from: TimoVJL on December 26, 2023, 10:30:20 AMOnly those people, who develops assemblers, compilers and linkers knows that.
Linker have to be OOP aware.
Have been known for long time, those who had read Dr Dobbs long time ago, knows that.
Show link if you have it
I only managed to try simplest conditional assembly in source file
I think it was a SSE source code for a math functions, to turn off assembling for unused proc
Quote from: HSE on December 26, 2023, 12:07:15 PMQuote from: jj2007 on December 26, 2023, 11:31:48 AMQuote from: HSE on December 26, 2023, 10:21:21 AMcould remove useless code and zero unused methods.
I don't say that.
Correct, it was Timo. I had selected these words to use the SMF feature
Quote selected text, but apparently SMF can't trace back the quote to its real owner. My apologies :cool:
QuoteQuote from: jj2007 on December 26, 2023, 11:31:48 AMUnused methods should not generate code in Assembly.
Why not?
A OOP "method" is nothing else than an entry in a structure. You may or may not use it, but the mere existence of the
entry does not create code.
Quote from: HSE on December 26, 2023, 08:57:16 AMQuote from: Rockphorr on December 26, 2023, 08:23:31 AMHow do you implement the heap of objects ?? Is it a list or a tree or a array or something else ?
Can be implemented how you want.
It is interesting for me how it should be implemended.
Something i found here:
https://www.youtube.com/watch?v=Bym7UMqpVEY&list=PL3BR09unfgciJ1_K_E914nohpiOiHnpsK (https://www.youtube.com/watch?v=Bym7UMqpVEY&list=PL3BR09unfgciJ1_K_E914nohpiOiHnpsK)
(russian)
Quote from: jj2007 on December 26, 2023, 07:19:11 PMapparently SMF can't trace back the quote to its real owner
That was strange :thumbsup:
Quote from: jj2007 on December 26, 2023, 07:19:11 PM, but the mere existence of the entry does not create code.
So far I understand, the linker don't know if a procedure is used or not, only know if there is a reference to the procedure address. In standard OOP there are references to all methods, then linker include all of them.
Didn't find proper links, but something for masm :azn:
Object-Oriented Programming in Assembly Language (https://www.drdobbs.com/embedded-systems/object-oriented-programming-in-assembly/184408319?queryText=OOP%2Bmasm)
Using smart linking (https://www.freepascal.org/docs-html/current/prog/progse30.html)
Quote from: TimoVJL on December 26, 2023, 11:50:01 PMDidn't find proper links, but something for masm :azn:
Object-Oriented Programming in Assembly Language (https://www.drdobbs.com/embedded-systems/object-oriented-programming-in-assembly/184408319?queryText=OOP%2Bmasm)
Randy at work, over 33 years ago :thumbsup:
Quote from: Rockphorr on December 26, 2023, 09:45:47 PMIt is interesting for me how it should be implemended.
There is no unique solution, it depend on Object cycle of live and processes, etc.
Also personal preferences play a role. Biterider use collections (https://github.com/ObjAsm/ObjAsm-C.2/blob/master/Code/Objects/Collection.inc) a lot. I use perhaps more SDLL (https://github.com/ObjAsm/ObjAsm-C.2/blob/master/Code/Macros/SDLL.inc).
Quote from: Rockphorr on December 26, 2023, 09:45:47 PMhttps://www.youtube.com/watch?v=Bym7UMqpVEY&list=PL3BR09unfgciJ1_K_E914nohpiOiHnpsK (https://www.youtube.com/watch?v=Bym7UMqpVEY&list=PL3BR09unfgciJ1_K_E914nohpiOiHnpsK)
:thumbsup: Probably interesting in more advanced lessons, but hard to understand :biggrin:
Hi
In the OOP world, there are basically two ways of dealing with methods (also known as procedures). If they are resolved via stored addresses, usually in virtual tables, the linker has no chance of removing code, as the execution path is determined at runtime.
Static methods, on the other hand, behave like regular procedures. In this case, if e.g. a C compiler is instructed to perform "function-level linking" (/Gy switch - MS), each procedure is stored in its own COMDAT. In this way, the linker is able to remove the dead code.
Unfortunately, to my knowledge, none of the current assemblers are able to do this yet. The only alternative currently known to me would be to compile the individual static methods into a library, so that the linker can take over this task.
Regards, Biterider
QuoteMicrosoft (R) Macro Assembler Version 12.00.40629.0
/Gy[-] separate functions for linker
Thanks Timo
Good to know. Then that is the way to go.
Biterider
Quote from: TimoVJL on December 26, 2023, 11:50:01 PMDidn't find proper links, but something for masm :azn:
Object-Oriented Programming in Assembly Language (https://www.drdobbs.com/embedded-systems/object-oriented-programming-in-assembly/184408319?queryText=OOP%2Bmasm)
I'm really not at all interested in using OOP in my assembly-language programs. But that link (the Randall Hyde article) is definitely fascinating, just seeing how OOP is implemented at the lowest level, and I've bookmarked it for later. Thanks.
thanks for the links Timo :thumbsup:
@noCforMe
try subclass a button so it gets directly called to a proc instead of .IF in wndproc can sometimes be an advantage
Quote from: daydreamer on December 28, 2023, 07:23:45 AM@noCforMe
try subclass a button so it gets directly called to a proc instead of .IF in wndproc can sometimes be an advantage
Wellll, I often subclass controls, when I need to intercept messages to them that I can't otherwise get access to. But I don't see what in the world this has to do with OOP programming; it's just something you sometimes have to do to gain some kind of functionality for the control.