DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦3509fee98⟧ TextFile

    Length: 6848 (0x1ac0)
    Types: TextFile
    Names: »V«

Derivation

└─⟦407de186f⟧ Bits:30000749 8mm tape, Rational 1000, RCFSUN
    └─ ⟦e5cd75ab4⟧ »DATA« 
        └─⟦this⟧ 

TextFile

package Help_Text is

    Assembly : constant String :=
       "This switch allows the user to control the amount of compilation information " &
          "that is generated in a compiler listing. The valid options for this " &
          "switch are (CODE, MAP, ALL, NONE). [OPTION CODE - Include compiled " &
          "object code in the compilation listing, in both assembly-language and " &
          "hexadecimal forms]. [OPTION MAP - Include a (relocatable) memory map in the " &
          "compilation listing showing the position of data objects]. " &
          "[OPTION ALL - Include information as for both CODE and MAP]. " &
          "[OPTION NONE - Do not list any object code or map information]." &
          "(DEFAULT => NONE)";

    Calls_Inlined : constant String :=
       "Part of the compiler optimizer that lets you control the actions of the high level " &
          "optimizer to obtain a smaller and/or faster program. " &
          "If set to ""TRUE"" then allow inline insertions of code for subprograms. " &
          "Calls will be inlined if subprograms are not recursive. The compiler will also " &
          "put some other subprograms inlined (for example, subprograms that are only called once. " &
          "If set to ""FALSE"" then use the normal mode for subprogram calls. " &
          "NOTE : This switch has to be set for the pragma inline to be operative. " &
          "(DEFAULT => FALSE).";

    Checks : constant String :=
       "This switch lets you specify whether or not you want to have all the execution " &
          "checks requested by Ada to be included in the object code. The valid options for " &
          "this switch are (ALL, STACK, NONE). [OPTION ALL - All run time checks are performed]. " &
          "[OPTION STACK - Suppress Ada checks, but leave stack overflow checks enabled]. " &
          "[OPTION NONE - No checking will be performed]. NOTE checks can also be individually " &
          "suppressed by using the pragma SUPPRESSED  (DEFAULT => NONE)";

    Reduction : constant String :=
       "Part of the compiler optimizer that lets you control the actions of the high level " &
          "optimizer to obtain a smaller and/or faster program. The valid options for this switch " &
          "are (NONE, PARTIAL, EXTENSIVE). [OPTION NONE - No action is taken with reference " &
          "to the optimization of checks or loops]. [OPTION PARTIAL - An analysis is performed, " &
          "numerous run time checks are eliminated, and extensive dead code removal takes place.] " &
          "[OPTION EXTENSIVE - All the optimization implied in PARTIAL is performed, " &
          "plus a more extensive optimization for loops. (DEFAULT => NONE).";

    Expressions : constant String :=
       "Part of the compiler optimizer that lets you control the actions of the high level " &
          "optimizer to obtain a smaller and/or faster program. The valid options for this switch " &
          "are (NONE, PARTIAL, EXTENSIVE). [OPTION NONE - No low level optimization is " &
          "performed]. [OPTION PARTIAL - Elimination of common subexpressions]. " &
          "[OPTION EXPRESSION - Currently, EXTENSIVE and PARTIAL code improvements are the same]. " &
          "(DEFAULT => NONE).";

    Debug : constant String :=
       "If 'TRUE' indicates that the compiler should save the AdaProbe tables in the " &
          "program library. (DEFAULT => False).";

    Memory : constant String :=
       "The amount of internal buffers shared by the compiler virtual memory, in K bytes. " &
          "Usually, this value should not be changed, but if you have a lot of VDISK memory, " &
          "you might want to use more buffers to speed up compilation. If the compiler reports " &
          "'STORAGE_ERROR' during compilation, you might want to lower this number. " &
          "(DEFAULT => 500)";

    Stack : constant String :=
       "This switch gives the user control over data allocation. " &
          "The actual value specifies the limit for local objects into the heap." &
          "(DEFAULT => 1024)";

    Main : constant String :=
       "Specifies the size for the main program stack  (DEFAULT => 96)";

    Taskk : constant String :=
       "Specifies the sizes for the main program stack and for the stacks of all explicit " &
          "Ada task. (DEFAULT => 1);";

    History : constant String :=
       "If 'YES' then provide a dynamic trace of subprogram calls for use when unhandled " &
          "exception is propagated out of the main program. If 'No' no dynamic error trace " &
          "will be generated. (DEFAULT => YES)";

    Size : constant String :=
       "Used to control the initial size of the heap. (DEFAULT => 32)";

    Increment : constant String :=
       "The amount by which the heap is increased. (DEFAULT => 4)";

    Data : constant String :=
       "This switch controls the presence of map information from the Binder and Linker. " &
          "The valid options for this switch are (BIND, LINK, ALL, NONE). If the switch value " &
          "is BIND, a map is written by the Binder. If the switch value is LINK, a map is " &
          "written by the Linker. Option all includes all information specified by both " &
          "BIND and LINK.  (DEFAULT => NONE)";


    Other_Compile_Options : constant String :=
       "This switch allows the user to implement other compiler options that have not " &
          "been implemented in this switch file. For example, if you do not want to print " &
          "an error summary in the compile listing, then edit this switch to read " &
          "SHOW => NONE.  (DEFAULT => """"";

    Other_Bind_Options : constant String :=
       "This switch allows the user to implement other binder options that have not " &
          "been implemented in this switch file. For example, if you do not want to print " &
          "an warning messages in the binder listing, then edit this switch to read " &
          "WARNING => NO.  (DEFAULT => """"";

    Retrieve_Comp_Listing : constant String :=
       "If true, then return the compilation listing to the host. (remote file .lis) " &
          "(DEFAULT => FALSE).";

    Retrieve_Executable : constant String :=
       "If true, then return the Executable to the host. (remote file has no ext.) " &
          "(DEFAULT => FALSE).";

    Retrieve_Binder_Listing : constant String :=
       "If true, then return the Binder listing to the host. (remote file .map) " &
          "(DEFAULT => FALSE).";

    Retrieve_Cui_File : constant String :=
       "If true, then return the cui file to the host. (remote file .cui) " &
          "(DEFAULT => FALSE).";

    Retrieve_Lnk_File : constant String :=
       "If true, then return the lnk file to the host. (remote file .lnk) " &
          "(DEFAULT => FALSE).";

end Help_Text;