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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6491d3799d35186b X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: String parameters to exported routines - What should a compiler do? Date: 1997/06/05 Message-ID: #1/1 X-Deja-AN: 246308030 References: Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-06-05T00:00:00+00:00 List-Id: In article , Kevin D. Heatwole wrote: >I am still struggling to figure out exactly what a compiler should do when >the Ada program contains an exported subprogram that has a parameter that >is unconstrained. Assuming the other language has reasonable support for arrays that carry their bounds with them, then of course you ought to mimic what the other compiler is doing. Oh, you say you're interfacing to C, which has no such support. ;-) Well, then, hem, haw. >Here is an example: > > procedure S (Item : String); > pragma Export (C, S); > >Should this be legal or should the declaration of S be rejected? IMHO it should be legal. >If legal, should the compiler issue a warning that calling S from C >involves passing the bounds of item in a compiler-dependent form? Well, maybe. Many users might be helped by this warning. On the other hand, the problem with warnings like that (i.e. warnings that only *sometimes* mean that something is wrong) is that the compiler never learns. I recompile my program 1000 times, and the compiler *still* doesn't understand that my code is just what I meant -- it warns me 1000 times, by which time my brain has learned to ignore all warnings. If you have a way to turn off individual warnings, that problem is solved. >Or, should the compiler just generate code for the body of S that expects >Item to just be the address of the first character that comprise the >string and the bounds are assumed to be Positive'First .. Positive'Last (or >whatever the bounds are on the index subtype)? B.3(70) seems to say that you should be passing the address of the first array component. But it doesn't address the issue of what Item'Last should be, or whether (how?) index checking should be done. On the other hand, B.3(70) is a "should" rule, so perhaps you can ignore it in this case, and expect the bounds where you normally do. The C could would then have to know how to pass bounds as extra parameters. IMHO, if the bounds are going to be "wrong", then the programmer should be doing the "cheating" -- that is, pass an argument of subtype "String(Positive)", and carefully avoid relying on the bounds. >Would the answers to the above make any difference if the parameter's type >was Interfaces.C.Char_Array? Good question. >What if S were called by Ada instead of C? Should the Ada call pass the >actual bounds to S whereas the C call gets away with just passing the >address of Item? I don't see how that can work (unless you're willing to generate two copies of the code for procedure S). I mean, either it expects bounds or not. And the C compiler doesn't know how to produce any bounds -- if bounds are expected, the C programmer has to produce them. >Finally, what if S were imported instead? Should Ada calling S just pass >the address of the first character of Item and just omit the bounds >altogether? It seems like whatever the answer is, imports and exports should have the same calling conventions. I mean, you can form pointers to these things, and if the the access type is convention C, then that's all you know -- you don't know whether the thing it points to is "really" written in C. Import seems more important than export, though. I mean, it's more common to want to write an Ada program that interfaces to some existing (say) windowing system, than the other way around. >What do other Ada95 compilers do? Well, it shouldn't be hard to figure out what GNAT does (by reading docs and/or looking at the source code). Probably your best bet is to mimic other compiler(s). Another thing to do would be to take existing bindings (e.g. win32) and make sure whatever they do works. Probably, they never care -- they probably pass only constrained array subtypes. >Sorry for all the questions but I want to make sure that we handled this >case in the best manner possible. We are about to make major release of >our PowerAda compiler and I don't want to miss an opportunity to make this >"right" (if we don't already handle this "right"). What do you do now? Likewise, how do you deal with "access String" when interfacing? That's a similar issue. - Bob