Relational Association Programming
GCC mailing list readers; I am seeking persons interested in reviewing a proposed programming paradigm called Relational Association Programming (RAP). This paradigm complements the procedural programming paradigm with modular emphasis. The C programming language natively supports RAP which is demontrated in the RAP-C package. I believe this paradigm will be well suited to complex real time and high performance systems requiring function group abstractions. It retains full backwards compatiblity with classical procedural programming since it is a complementary paradigm. Paradigm documentation and nomenclature reference http://rapp.sourceforge.net/RAP.PDF C sample implementation and example code http://rapp.sourceforge.net/RAP-C.PDF SourceFORGE web page http://rapp.sourceforge.net/ I request that reviewers focus their comments and/or dissertations on the science behind the paradigm's model. Please send them to my email address to keep this mailing list on topic. Richard Stallman suggested I send this request on this list so please don't flame me about my own message being off topic. Thank you in advance, Aaron Sami Abassi
Relational Association Programming Paradigm
GCC mailing list readers; I am seeking persons interested in reviewing a proposed programming paradigm called Relational Association Programming (RAP). This paradigm complements the procedural programming paradigm with modular emphasis. The C programming language natively supports RAP which is demontrated in the RAP-C package. I believe this paradigm will be well suited to complex real time and high performance systems requiring function group abstractions. It retains full backwards compatiblity with classical procedural programming since it is a complementary paradigm. Paradigm documentation and nomenclature reference http://rapp.sourceforge.net/RAP.PDF C sample implementation and example code http://rapp.sourceforge.net/RAP-C.PDF SourceFORGE web page http://rapp.sourceforge.net/ I request that reviewers focus their comments and/or dissertations on the science behind the paradigm's model. Please send them to my email address to keep this mailing list on topic. Richard Stallman suggested I send this request on this list so please don't flame me about my own message being off topic. Thank you in advance, Aaron Sami Abassi
Relational Association Programming Paradigm (URLs)
Online reading http://rapp.sourceforge.net/RAP.PDF http://rapp.sourceforge.net/RAP-C.PDF C example with source http://sourceforge.net/projects/rapp/files/RAP-C/RAP-C.ZIP/download Happy coding, Aaron
Function pointer question
Hello, I was wondering if someone could answer a question regarding the feasibility (this is not a request for changes to GCC) of constant function pointer inlining. This obviously would require a compiler to do an N-depth analysis of pointer assignments to confirm that the value could not change (constant all the way back the address' origin). My question is; theoretically is this possible? (I'm obviously not a compiler programmer) Thank you, Aaron
Function pointer inlining
Hello, I was wondering if someone could answer a question regarding the feasibility (this is not a request for changes to GCC) of constant function pointer inlining through a structure. This obviously would require a compiler to do an N-depth analysis of pointer assignments to confirm that the value could not change (constant all the way back the address' origin). My question is; theoretically is this possible? (I'm obviously not a compiler programmer) Thank you, Aaron PS: This is a revised version of my question, I should have mentioned through a structure in my original post.