From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:aed:2497:: with SMTP id t23mr9307526qtc.98.1585741223361; Wed, 01 Apr 2020 04:40:23 -0700 (PDT) X-Received: by 2002:a9d:6315:: with SMTP id q21mr768797otk.16.1585741223084; Wed, 01 Apr 2020 04:40:23 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 1 Apr 2020 04:40:22 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=2607:f2c0:f200:1405:c9e2:2adc:713e:d437; posting-account=XGBE5QoAAABsRez5Xjd0KD5FXhbiCPL- NNTP-Posting-Host: 2607:f2c0:f200:1405:c9e2:2adc:713e:d437 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <33f4a7cb-4baa-41fd-b0d5-27501b4fab5a@googlegroups.com> Subject: Intermediate Representation From: foo wong Injection-Date: Wed, 01 Apr 2020 11:40:23 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:58266 Date: 2020-04-01T04:40:22-07:00 List-Id: Hi everyone, my real name is not Foo, it is Patrick, just keeping Google off my trail. I have been using GnuCOBOL extensively since 2013. One thing that I love about it is that it compiles to intermediate C. If you write a program, you can compile it to this, run ctags on the runtime and the intermediate C and then hop around jumping from the C function calls generated into the runtime to see how they are actually implemented. I would like to do the same with Ada. Is there a way? Using readelf, I was able to get some clues and looking at the .ali files I had a few more clues but so far it does not seem to be the same thing. -Patrick