COMPILATION LISTING OF SEGMENT cobol_subtract_gen Compiled by: Multics PL/I Compiler, Release 33e, of October 6, 1992 Compiled at: CGI Compiled on: 2000-04-18_1143.53_Tue_mdt Options: optimize map 1 /****^ *********************************************************** 2* * * 3* * Copyright, (C) BULL HN Information Systems Inc., 1989 * 4* * * 5* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 6* * * 7* * Copyright (c) 1972 by Massachusetts Institute of * 8* * Technology and Honeywell Information Systems, Inc. * 9* * * 10* *********************************************************** */ 11 12 13 14 15 /****^ HISTORY COMMENTS: 16* 1) change(89-04-23,Zimmerman), approve(89-04-23,MCR8060), 17* audit(89-05-05,RWaters), install(89-05-24,MR12.3-1048): 18* MCR8060 cobol_subtract_gen.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* format: style3 */ 23 cobol_subtract_gen: 24 proc (in_token_ptr, next_stmt_tag); 25 26 /* This procedure acts as an interface between the Multics 27*COBOL compiler generator driver, cobol_gen_driver_, and the 28*procedure that actually generates code to do the work 29*to accomplish a COBOL SUBTRACT. This procedure actually 30*is not required. The cobol generator driver could be 31*modified to call cobol_add_gen directyl for SUBTRACT statements. 32**/ 33 34 35 dcl in_token_ptr ptr; 36 dcl next_stmt_tag fixed bin; 37 38 dcl cobol_add_gen ext entry (ptr, fixed bin); 39 40 call cobol_add_gen (in_token_ptr, next_stmt_tag); 41 42 43 /***** Declaration for builtin function *****/ 44 45 dcl (substr, mod, binary, fixed, addr, addrel, rel, length, string, unspec, null, index) 46 builtin; 47 48 /***** End of declaration for builtin function *****/ 49 50 end cobol_subtract_gen; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 04/18/00 1143.5 cobol_subtract_gen.pl1 >udd>sm>ds>w>ml>cobol_subtract_gen.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. cobol_add_gen 000010 constant entry external dcl 38 ref 40 in_token_ptr parameter pointer dcl 35 set ref 23 40* next_stmt_tag parameter fixed bin(17,0) dcl 36 set ref 23 40* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. addr builtin function dcl 45 addrel builtin function dcl 45 binary builtin function dcl 45 fixed builtin function dcl 45 index builtin function dcl 45 length builtin function dcl 45 mod builtin function dcl 45 null builtin function dcl 45 rel builtin function dcl 45 string builtin function dcl 45 substr builtin function dcl 45 unspec builtin function dcl 45 NAME DECLARED BY EXPLICIT CONTEXT. cobol_subtract_gen 000006 constant entry external dcl 23 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 62 74 25 72 Length 240 25 12 127 35 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_subtract_gen 70 external procedure is an external procedure. THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cobol_add_gen NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 23 000002 40 000013 50 000024 ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved