COMPILATION LISTING OF SEGMENT casin_ Compiled by: Multics PL/I Compiler, Release 28d, of September 14, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/03/83 1354.0 mst Mon Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright (c) 1972 by Massachusetts Institute of * 5* * Technology and Honeywell Information Systems, Inc. * 6* * * 7* * * 8* ****************************************************** */ 9 10 casin_: proc (number) returns (complex float bin (27)); 11 12 dcl (number, a, b, c) complex float bin (27); 13 dcl (imag, log, real, sqrt) builtin; 14 15 real (a) = -imag (number) + 0.0e0; 16 imag (a) = real (number) + 0.0e0; 17 18 b = 1.0e0; 19 20 trig: 21 c = -1.0e0i; 22 23 ret: 24 return (log (sqrt (a*a+b)+a)*c); 25 26 cacos_: entry (number) returns (complex float bin (27)); 27 28 a = number +0.0e0; 29 b = -1.0e0; 30 31 goto trig; 32 33 casinh_: entry (number) returns (complex float bin (27)); 34 35 b = 1.0e0; 36 37 hyper: 38 a = number +0.0e0; 39 c = 1.0e0; 40 41 goto ret; 42 43 cacosh_: entry (number) returns (complex float bin (27)); 44 45 b = -1.0e0; 46 47 goto hyper; 48 49 end casin_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/03/83 1004.8 casin_.pl1 >spec>on>pl128d>casin_.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. a 000100 automatic complex float bin(27) dcl 12 set ref 15* 16* 23 23 23 28* 37* b 000102 automatic complex float bin(27) dcl 12 set ref 18* 23 29* 35* 45* c 000104 automatic complex float bin(27) dcl 12 set ref 20* 23 39* imag builtin function dcl 13 set ref 15 16* log builtin function dcl 13 ref 23 number parameter complex float bin(27) dcl 12 ref 10 15 16 26 28 33 37 43 real builtin function dcl 13 set ref 15* 16 sqrt builtin function dcl 13 ref 23 NAMES DECLARED BY EXPLICIT CONTEXT. cacos_ 000110 constant entry external dcl 26 cacosh_ 000154 constant entry external dcl 43 casin_ 000014 constant entry external dcl 10 casinh_ 000131 constant entry external dcl 33 hyper 000140 constant label dcl 37 ref 47 ret 000036 constant label dcl 23 set ref 41 trig 000034 constant label dcl 20 set ref 31 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 240 254 164 250 Length 422 164 14 132 54 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME casin_ 80 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME casin_ 000100 a casin_ 000102 b casin_ 000104 c casin_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return mpcfl1_2 ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. clog_ csqrt_ NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 10 000010 15 000021 16 000027 18 000032 20 000034 23 000036 26 000106 28 000115 29 000124 31 000126 33 000127 35 000136 37 000140 39 000147 41 000151 43 000152 45 000161 47 000163 ----------------------------------------------------------- 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