COMPILATION LISTING OF SEGMENT offset_adder Compiled by: Multics PL/I Compiler, Release 33e, of October 6, 1992 Compiled at: CGI Compiled on: 2000-04-18_1124.82_Tue_mdt Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* * Copyright (c) 1972 by Massachusetts Institute of * 6* * Technology and Honeywell Information Systems, Inc. * 7* * * 8* *********************************************************** */ 9 10 11 offset_adder: proc(a,ca,ua,mwa,arg_b,arg_cb,arg_ub,arg_mwb,no_improve); 12 13 /* Modified: 79/04/23 by PCK to implement 4-bit decimal */ 14 15 dcl (a,arg_b,b,p,q) ptr; 16 dcl (ca,arg_cb,cb) fixed bin(31); 17 dcl (ua,arg_ub,ub) fixed bin(3); 18 dcl (mwa,arg_mwb,mwb) bit(1) aligned; /* ON means units ^= word_, but variable offset in words */ 19 dcl n fixed bin(15); 20 dcl bit_offset fixed bin(31); 21 22 dcl no_improve bit(1); 23 24 dcl (divide,min,mod,null,substr) builtin; 25 26 dcl c_table(7,7) fixed bin(31,1) int static initial( 27 1, 4.5, 9,18,36,36,36, 28 0, 1, 2, 4, 8, 8, 8, 29 0, 0, 1, 2, 4, 4, 4, 30 0, 0, 0, 1, 2, 2, 2, 31 0, 0, 0, 0, 1, 1, 1, 32 0, 0, 0, 0, 0, 1, 1, 33 0, 0, 0, 0, 0, 0, 1); 34 35 dcl pl1_stat_$eis_mode bit(1) aligned ext static; 36 37 38 b = arg_b; cb = arg_cb; ub = arg_ub; mwb = arg_mwb; /* value b,cb,ub,mwb; */ 39 40 call get_ptr(a,ua,mwa); 41 42 call get_ptr(b,ub,mwb); 43 44 if ua = 0 45 then ua = ub; 46 else if ub = 0 47 then ub = ua; 48 else if ua ^= ub & (ua < word_ | ub < word_) 49 then if ua < ub 50 then do; 51 cb = cb * c_table (ua,ub); 52 53 if b ^= null 54 then b = convert_variable_offset (b,ua,ub); 55 56 end; 57 else do; 58 ca = ca * c_table (ub,ua); 59 60 if a ^= null 61 then a = convert_variable_offset (a,ub,ua); 62 63 end; 64 65 ua = min(ua,ub); 66 ca = ca+cb; 67 68 if a = null 69 then do; 70 a = b; 71 72 if b = null 73 then if ^no_improve 74 then if ua < word_ 75 then do; 76 /* improve offset units */ 77 bit_offset = ca * c_table(bit_,ua); 78 79 do n = word_ to bit_ by -1 80 while(mod(bit_offset,c_table(bit_,n)) ^= 0); 81 end; 82 83 if n = word_ | ^pl1_stat_$eis_mode 84 then do; 85 ca = divide(bit_offset,c_table(bit_,n),31,0); 86 ua = n; 87 end; 88 end; 89 end; 90 else if b ^= null 91 then do; 92 q = create_operator(add,3); 93 q->operand(2) = a; 94 q->operand(3) = b; 95 a = q; 96 end; 97 98 if a ^= null & ca ^= 0 99 then do; 100 q = create_operator(add,3); 101 q->operand(2) = a; 102 q->operand(3) = declare_constant$integer(ca); 103 a = q; 104 ca = 0; 105 end; 106 107 return; 108 109 get_ptr: proc(pt,units,offset_is_modword); 110 111 dcl (pt,t,new) ptr; 112 dcl units fixed bin(3); 113 dcl offset_is_modword bit(1) aligned; 114 115 if pt = null then return; 116 117 if ^ pl1_stat_$eis_mode 118 then if pt -> node.type = operator_node 119 then if substr(pt -> operator.op_code,1,5) = substr(mod_bit,1,5) 120 then do; 121 pt = pt -> operand(3); 122 return; 123 end; 124 125 if ^ offset_is_modword 126 then return; 127 128 /* force pt to use "units" instead of word_ */ 129 130 t = create_operator(mult,3); 131 132 t -> operator.processed = "0"b; 133 t -> operand(1) = null; 134 t -> operand(2) = pt; 135 t -> operand(3) = declare_constant$integer((c_table(units,word_))); 136 137 pt = t; 138 139 offset_is_modword = "0"b; 140 141 end /* get_ptr */; 142 143 /* Convert a variable offset from one set of units to another set of units */ 144 145 convert_variable_offset: 146 procedure (variable_offset,to_units,from_units) returns(pointer); 147 148 /* parameters */ 149 150 dcl variable_offset pointer; 151 dcl (from_units,to_units) fixed binary(3); 152 153 /* automatic */ 154 155 dcl converted_variable_offset pointer; 156 157 158 if from_units = digit_ & to_units = bit_ 159 then converted_variable_offset = create_operator (digit_to_bit,2); /* Special case digit offset to bit offset conversion to avoid scaled multiplicaion */ 160 else do; /* All other offset conversions are simple integer multiplications */ 161 converted_variable_offset = create_operator (mult,3); 162 converted_variable_offset -> operand(3) = declare_constant$integer ((c_table(to_units,from_units))); 163 end; 164 165 converted_variable_offset -> operand(2) = variable_offset; 166 167 return (converted_variable_offset); 168 169 end /* convert_variable_offset */; 170 1 1 /* BEGIN INCLUDE FILE ... semant.incl.pl1 */ 1 2 1 3 /* Modified: 30 Aug 1979 by PCK to fix 1804 and 1823 */ 1 4 /* Modified: 26 Aug 1979 by PCK to implement by name assignment */ 1 5 1 6 1 7 declare alloc_semantics entry(pointer,pointer,pointer); 1 8 /* parameter 1: (input) block node pointer */ 1 9 /* parameter 2: (input) statement node pointer */ 1 10 /* parameter 3: (in/out) tree pointer */ 1 11 1 12 declare alloc_semantics$init_only entry(pointer,pointer,pointer); 1 13 /* parameter 1: (input) qualifier pointer */ 1 14 /* parameter 2: (input) statement node pointer */ 1 15 /* parameter 3: (input) symbol node pointer */ 1 16 1 17 declare builtin entry(pointer,pointer,pointer,pointer,pointer,bit(36) aligned) 1 18 returns(pointer); 1 19 /* parameter 1: (input) block node pointer */ 1 20 /* parameter 2: (input) statement node pointer */ 1 21 /* parameter 3: (input) tree pointer */ 1 22 /* parameter 4: (input) subscript pointer */ 1 23 /* parameter 5: (input) builtin symbol node pointer */ 1 24 /* parameter 6: (in/out) context */ 1 25 /* return: (output) tree pointer */ 1 26 1 27 declare check_star_extents entry(pointer,pointer); 1 28 /* parameter 1: (input) symbol node of procedure */ 1 29 /* parameter 2: (input) argument list pointer */ 1 30 1 31 declare compare_declaration entry(pointer,pointer,bit(1) aligned) reducible 1 32 returns(bit(1) aligned); 1 33 /* parameter 1: (input) reference or symbol node ptr */ 1 34 /* parameter 2: (input) symbol node ptr */ 1 35 /* parameter 3: (input) "1"b if aligned attribute ignored for string */ 1 36 /* return: (output) compare bit */ 1 37 1 38 declare context_processor entry(pointer,label); 1 39 /* parameter 1: (input) root block node pointer */ 1 40 1 41 declare declare entry(pointer); 1 42 /* parameter 1: (input) symbol node pointer */ 1 43 1 44 declare declare_structure entry(pointer); 1 45 /* parameter 1: (input) symbol node pointer */ 1 46 1 47 declare defined_reference entry(pointer,pointer,pointer,pointer,pointer,bit(36) aligned) 1 48 returns(pointer); 1 49 /* parameter 1: (input) block node pointer */ 1 50 /* parameter 2: (input) statement node pointer */ 1 51 /* parameter 3: (input) tree pointer */ 1 52 /* parameter 4: (input) subscript list pointer or null*/ 1 53 /* parameter 5: (input) symbol node pointer */ 1 54 /* parameter 6: (in/out) context */ 1 55 /* return: (output) tree pointer */ 1 56 1 57 declare do_semantics entry(pointer,pointer,pointer); 1 58 /* parameter 1: (input) block node pointer */ 1 59 /* parameter 2: (input) statement node pointer */ 1 60 /* parameter 3: (input) tree pointer */ 1 61 1 62 declare expand_assign entry(pointer,pointer,pointer,bit(36) aligned,pointer) 1 63 returns(pointer); 1 64 /* parameter 1: (input) block node pointer */ 1 65 /* parameter 2: (input) statement node pointer */ 1 66 /* parameter 3: (input) tree pointer */ 1 67 /* parameter 4: (in/out) context */ 1 68 /* parameter 5: (input) aggregate reference node ptr */ 1 69 /* return: (output) tree pointer */ 1 70 1 71 declare expand_by_name entry(pointer,pointer,pointer); 1 72 /* parameter 1: (input) block node pointer */ 1 73 /* parameter 2: (input) statement node pointer */ 1 74 /* parameter 3: (input/output) tree pointer */ 1 75 1 76 declare expand_infix entry(pointer,pointer,pointer,bit(36) aligned) 1 77 returns(pointer); 1 78 /* parameter 1: (input) block node pointer */ 1 79 /* parameter 2: (input) statement node pointer */ 1 80 /* parameter 3: (input) tree pointer */ 1 81 /* parameter 4: (in/out) context */ 1 82 /* return: (output) tree pointer */ 1 83 1 84 declare expand_initial entry(pointer,pointer,pointer); 1 85 /* parameter 1: (input) symbol node pointer */ 1 86 /* parameter 2: (input) statement node pointer */ 1 87 /* parameter 3: (input) locator */ 1 88 1 89 declare expand_prefix entry(pointer,pointer,pointer,bit(36) aligned) 1 90 returns(pointer); 1 91 /* parameter 1: (input) block node pointer */ 1 92 /* parameter 2: (input) statement node pointer */ 1 93 /* parameter 3: (input) tree pointer */ 1 94 /* parameter 4: (in/out) context */ 1 95 /* return: (output) tree pointer */ 1 96 1 97 declare expand_primitive entry(pointer,pointer,pointer,bit(36) aligned) 1 98 returns(pointer); 1 99 /* parameter 1: (input) block node pointer */ 1 100 /* parameter 2: (input) statement node pointer */ 1 101 /* parameter 3: (input) tree pointer */ 1 102 /* parameter 4: (input) context */ 1 103 /* return: (output) tree pointer */ 1 104 1 105 declare expression_semantics entry(pointer,pointer,pointer,bit(36) aligned) 1 106 returns(pointer); 1 107 /* parameter 1: (input) block node pointer */ 1 108 /* parameter 2: (input) statement node pointer */ 1 109 /* parameter 3: (input) tree pointer */ 1 110 /* parameter 4: (in/out) context */ 1 111 /* return: (output) tree pointer */ 1 112 1 113 declare fill_refer entry(pointer,pointer,bit(1) aligned) 1 114 returns(pointer); 1 115 /* parameter 1: (input) null,ref node,op node ptr */ 1 116 /* parameter 2: (input) null,ref node,op node ptr */ 1 117 /* parameter 3: (input) copy switch for param 2 */ 1 118 /* return: (output) ptr to processed tree */ 1 119 1 120 declare io_data_list_semantics$format_list_semantics entry(pointer,pointer,pointer); 1 121 /* parameter 1: (input) block node pointer */ 1 122 /* parameter 2: (input) statement node pointer */ 1 123 /* parameter 3: (in/out) tree pointer */ 1 124 1 125 declare function entry(pointer,pointer,pointer,pointer,bit(36) aligned) 1 126 returns(pointer); 1 127 /* parameter 1: (input) block node pointer */ 1 128 /* parameter 2: (input) statement node pointer */ 1 129 /* parameter 3: (input) tree pointer */ 1 130 /* parameter 4: (input) symbol node pointer */ 1 131 /* parameter 5: (in/out) context */ 1 132 /* return: (output) tree pointer */ 1 133 1 134 declare generic_selector entry(pointer,pointer,pointer,pointer,bit(36) aligned) 1 135 returns(pointer); 1 136 /* parameter 1: (input) block node pointer */ 1 137 /* parameter 2: (input) statement node pointer */ 1 138 /* parameter 3: (input) tree pointer */ 1 139 /* parameter 4: (input) pointer to argument list */ 1 140 /* parameter 5: (in/out) context */ 1 141 /* return: (output) tree pointer */ 1 142 1 143 declare io_data_list_semantics entry(pointer,pointer,pointer); 1 144 /* parameter 1: (input) block node pointer */ 1 145 /* parameter 2: (input) statement node pointer */ 1 146 /* parameter 3: (input) operator node pointer */ 1 147 1 148 declare io_semantics entry(pointer,pointer,pointer); 1 149 /* parameter 1: (input) block node pointer */ 1 150 /* parameter 2: (input) statement node pointer */ 1 151 /* parameter 3: (input) tree pointer */ 1 152 1 153 declare lookup entry(pointer,pointer,pointer,pointer,bit(36) aligned) 1 154 returns(bit(1) aligned); 1 155 /* parameter 1: (input) block node pointer */ 1 156 /* parameter 2: (input) stmnt|symbol node pointer */ 1 157 /* parameter 3: (input) token or reference node ptr */ 1 158 /* parameter 4: (output) symbol node pointer */ 1 159 /* parameter 5: (in/out) context */ 1 160 /* return: (output) symbol found bit */ 1 161 1 162 declare make_non_quick entry(pointer, bit (36) aligned); 1 163 /* parameter 1: (input) tree pointer */ 1 164 /* parameter 2: (input) reason why being made nonquick */ 1 165 1 166 declare match_arguments entry(pointer,pointer) reducible 1 167 returns(bit(1) aligned); 1 168 /* parameter 1: (input) reference or symbol node ptr */ 1 169 /* parameter 2: (input) reference or symbol node ptr */ 1 170 /* return: (output) compare bit */ 1 171 1 172 declare offset_adder entry(pointer,fixed binary(31),fixed binary(3),bit(1) aligned, 1 173 pointer,fixed binary(31),fixed binary(3),bit(1) aligned,bit(1)); 1 174 /* parameter 1: (in/out) tree pointer */ 1 175 /* parameter 2: (in/out) constant size */ 1 176 /* parameter 3: (in/out) units */ 1 177 /* parameter 4: (in/out) ON if units ^= word_, but tree in words */ 1 178 /* parameter 5: (input) tree pointer */ 1 179 /* parameter 6: (input) constant size */ 1 180 /* parameter 7: (input) units */ 1 181 /* parameter 8: (input) ON if units ^= word_, but tree in words */ 1 182 /* parameter 9: (input) ON if should not improve units */ 1 183 1 184 declare operator_semantics entry(pointer,pointer,pointer,bit(36) aligned) 1 185 returns(pointer); 1 186 /* parameter 1: (input) block node pointer */ 1 187 /* parameter 2: (input) statement node pointer */ 1 188 /* parameter 3: (input) tree pointer */ 1 189 /* parameter 4: (in/out) context */ 1 190 /* return: (output) tree pointer */ 1 191 1 192 declare propagate_bit entry(pointer,fixed binary(15)); 1 193 /* parameter 1: (input) symbol node pointer */ 1 194 /* parameter 2: (input) attribute number */ 1 195 1 196 declare semantic_translator$call_es entry(pointer,pointer,pointer,label,bit(1) aligned) 1 197 returns(pointer); 1 198 /* parameter 1: (input) block ptr */ 1 199 /* parameter 2: (input) statement ptr */ 1 200 /* parameter 3: (input) tree ptr */ 1 201 /* parameter 4: (input) failure label */ 1 202 /* parameter 5: (input) "1"b -- convert to integer */ 1 203 /* return: (output) tree ptr */ 1 204 1 205 declare simplify_expression entry(pointer,fixed bin,bit(1)aligned); 1 206 /* parameter 1: (in/out) tree pointer */ 1 207 /* parameter 2: (output) value of constant, if the entire tree 1 208* is simplified */ 1 209 /* parameter 3: (output) bit indicating if the tree has 1 210* been simplified */ 1 211 1 212 declare simplify_offset entry(pointer,bit(36) aligned); 1 213 /* parameter 1: (input) reference node pointer */ 1 214 /* parameter 2: (input) context */ 1 215 1 216 declare subscripter entry(pointer,pointer,pointer,pointer,pointer) 1 217 returns(pointer); 1 218 /* parameter 1: (input) block node pointer */ 1 219 /* parameter 2: (input) statement node pointer */ 1 220 /* parameter 3: (input) tree pointer */ 1 221 /* parameter 4: (in/out) subscript list pointer */ 1 222 /* parameter 5: (input) symbol node pointer */ 1 223 /* return: (output) reference node pointer */ 1 224 1 225 declare validate entry(pointer); 1 226 /* parameter 1: (input) symbol node pointer */ 1 227 2 1 /****^ ********************************************************* 2 2* * * 2 3* * Copyright, (C) BULL HN Information Systems Inc., 1989 * 2 4* * * 2 5* ********************************************************* */ 2 6 2 7 /* BEGIN INCLUDE FILE ... language_utility.incl.pl1 */ 2 8 2 9 2 10 /****^ HISTORY COMMENTS: 2 11* 1) change(89-07-10,RWaters), approve(89-07-10,MCR8118), audit(89-07-19,Vu), 2 12* install(89-07-31,MR12.3-1066): 2 13* Removed the obsolete parameter source_line from the dcl of error_(). 2 14* END HISTORY COMMENTS */ 2 15 2 16 /* Modified: 6 Jun 1979 by PG to add rank and byte 2 17* * Modified: 9 Jul 1989 by RW updated the declaration of error_ 2 18* */ 2 19 2 20 declare adjust_count entry(pointer); 2 21 /* parameter 1: (input) any node pointer */ 2 22 2 23 declare bindec entry(fixed bin(31)) reducible 2 24 returns(character(12) aligned); 2 25 /* parameter 1: (input) bin value */ 2 26 /* return: (output) character value with blanks */ 2 27 2 28 declare bindec$vs entry(fixed bin(31)) reducible 2 29 returns(character(12) aligned varying); 2 30 /* parameter 1: (input) binary value */ 2 31 /* return: (output) char value without blanks */ 2 32 2 33 declare binoct entry(fixed bin(31)) reducible 2 34 returns(char(12) aligned); 2 35 /* parameter 1: (input) binary value */ 2 36 /* return: (output) char value with blanks */ 2 37 2 38 declare binary_to_octal_string entry(fixed bin(31)) reducible 2 39 returns(char(12) aligned); 2 40 /* parameter 1: (input) binary value */ 2 41 /* return: (output) right-aligned char value */ 2 42 2 43 declare binary_to_octal_var_string entry(fixed bin(31)) reducible 2 44 returns(char(12) varying aligned); 2 45 /* parameter 1: (input) binary value */ 2 46 /* returns: (output) char value without blanks */ 2 47 2 48 declare compare_expression entry(pointer,pointer) reducible 2 49 returns(bit(1) aligned); 2 50 /* parameter 1: (input) any node pointer */ 2 51 /* parameter 2: (input) any node pointer */ 2 52 /* return: (output) compare bit */ 2 53 2 54 declare constant_length entry (pointer, fixed bin (71)) 2 55 returns (bit (1) aligned); 2 56 /* parameter 1: (input) reference node pointer */ 2 57 /* parameter 2: (input) value of constant length */ 2 58 /* return: (output) "1"b if constant length */ 2 59 2 60 declare convert entry(pointer,bit(36) aligned) 2 61 returns(pointer); 2 62 /* parameter 1: (input) any node pointer */ 2 63 /* parameter 2: (input) target type */ 2 64 /* return: (output) target value tree pointer */ 2 65 2 66 declare convert$to_integer entry(pointer,bit(36)aligned) 2 67 returns(pointer); 2 68 /* parameter 1: (input) any node pointer */ 2 69 /* parameter 2: (input) target type */ 2 70 /* return: (output) target value tree pointer */ 2 71 2 72 declare convert$from_builtin entry(pointer,bit(36) aligned) 2 73 returns(pointer); 2 74 /* parameter 1: (input) any node pointer */ 2 75 /* parameter 2: (input) target type */ 2 76 /* return: (output) target value tree pointer */ 2 77 2 78 declare convert$validate entry(pointer,pointer); 2 79 /* parameter 1: (input) source value tree pointer */ 2 80 /* parameter 2: (input) target reference node pointer */ 2 81 2 82 declare convert$to_target_fb entry(pointer,pointer) 2 83 returns(pointer); 2 84 /* parameter 1: (input) source value tree pointer */ 2 85 /* parameter 2: (input) target reference node pointer */ 2 86 /* return: (output) target value tree pointer */ 2 87 2 88 declare convert$to_target entry(pointer,pointer) 2 89 returns(pointer); 2 90 /* parameter 1: (input) source value tree pointer */ 2 91 /* parameter 2: (input) target reference node pointer */ 2 92 /* return: (output) target value tree pointer */ 2 93 2 94 declare copy_expression entry(pointer unaligned) 2 95 returns(pointer); 2 96 /* parameter 1: (input) any node pointer */ 2 97 /* return: (output) any node pointer */ 2 98 2 99 declare copy_expression$copy_sons entry(pointer,pointer); 2 100 /* parameter 1: (input) father symbol node pointer */ 2 101 /* parameter 2: (input) stepfather symbol node ptr */ 2 102 2 103 declare copy_unique_expression entry(pointer) 2 104 returns(pointer); 2 105 /* parameter 1: (input) any node pointer */ 2 106 /* return: (output) any node pointer */ 2 107 2 108 declare create_array entry() 2 109 returns(pointer); 2 110 /* return: (output) array node pointer */ 2 111 2 112 declare create_block entry(bit(9) aligned,pointer) 2 113 returns(pointer); 2 114 /* parameter 1: (input) block type */ 2 115 /* parameter 2: (input) father block node pointer */ 2 116 /* return: (output) block node pointer */ 2 117 2 118 declare create_bound entry() 2 119 returns(pointer); 2 120 /* return: (output) bound node pointer */ 2 121 2 122 declare create_context entry(pointer,pointer) 2 123 returns(pointer); 2 124 /* parameter 1: (input) block node pointer */ 2 125 /* parameter 2: (input) token pointer */ 2 126 /* return: (output) context node pointer */ 2 127 2 128 declare create_cross_reference entry() 2 129 returns(pointer); 2 130 /* return: (output) cross reference node pointer */ 2 131 2 132 declare create_default entry 2 133 returns(pointer); 2 134 /* return: (output) default node pointer */ 2 135 2 136 declare create_identifier entry() 2 137 returns(pointer); 2 138 /* return: (output) token node pointer */ 2 139 2 140 declare create_label entry(pointer,pointer,bit(3) aligned) 2 141 returns(pointer); 2 142 /* parameter 1: (input) block node pointer */ 2 143 /* parameter 2: (input) token node pointer */ 2 144 /* parameter 3: (input) declare type */ 2 145 /* return: (output) label node pointer */ 2 146 2 147 declare create_list entry(fixed bin(15)) 2 148 returns(pointer); 2 149 /* parameter 1: (input) number of list elements */ 2 150 /* return: (output) list node pointer */ 2 151 2 152 declare create_operator entry(bit(9) aligned,fixed bin(15)) 2 153 returns(pointer); 2 154 /* parameter 1: (input) operator type */ 2 155 /* parameter 2: (input) number of operands */ 2 156 /* return: (output) operator node pointer */ 2 157 2 158 declare create_reference entry(pointer) 2 159 returns(pointer); 2 160 /* parameter 1: (input) symbol node pointer */ 2 161 /* return: (output) reference node pointer */ 2 162 2 163 declare create_statement entry(bit(9) aligned,pointer,pointer,bit(12) aligned) 2 164 returns(pointer); 2 165 /* parameter 1: (input) statement type */ 2 166 /* parameter 2: (input) block node pointer */ 2 167 /* parameter 3: (input) label node pointer */ 2 168 /* parameter 4: (input) conditions */ 2 169 /* return: (output) statement node pointer */ 2 170 2 171 declare create_statement$prologue entry(bit(9) aligned,pointer,pointer,bit(12) aligned) 2 172 returns(pointer); 2 173 /* parameter 1: (input) statement type */ 2 174 /* parameter 2: (input) block node pointer */ 2 175 /* parameter 3: (input) label node pointer */ 2 176 /* parameter 4: (input) conditions */ 2 177 /* return: (output) statement node pointer */ 2 178 2 179 declare create_storage entry(fixed bin(15)) 2 180 returns(pointer); 2 181 /* parameter 1: (input) number of words */ 2 182 /* return: (output) storage block pointer */ 2 183 2 184 declare create_symbol entry(pointer,pointer,bit(3) aligned) 2 185 returns(pointer); 2 186 /* parameter 1: (input) block node pointer */ 2 187 /* parameter 2: (input) token node pointer */ 2 188 /* parameter 3: (input) declare type */ 2 189 /* return: (output) symbol node pointer */ 2 190 2 191 declare create_token entry (character (*), bit (9) aligned) 2 192 returns (ptr); 2 193 /* parameter 1: (input) token string */ 2 194 /* parameter 2: (input) token type */ 2 195 /* return: (output) token node ptr */ 2 196 2 197 declare create_token$init_hash_table entry (); 2 198 2 199 declare create_token$protected entry (char (*), bit (9) aligned, bit (18) aligned) 2 200 returns (ptr); 2 201 /* parameter 1: (input) token string */ 2 202 /* parameter 2: (input) token type */ 2 203 /* parameter 3: (input) protected flag */ 2 204 /* return: (output) token node ptr */ 2 205 2 206 declare decbin entry(character(*) aligned) reducible 2 207 returns(fixed bin(31)); 2 208 /* parameter 1: (input) decimal character string */ 2 209 /* return: (output) binary value */ 2 210 2 211 declare declare_constant entry(bit(*) aligned,bit(36) aligned,fixed bin(31),fixed bin(15)) 2 212 returns(pointer); 2 213 /* parameter 1: (input) value */ 2 214 /* parameter 2: (input) type */ 2 215 /* parameter 3: (input) size */ 2 216 /* parameter 4: (input) scale */ 2 217 /* return: (output) reference node pointer */ 2 218 2 219 declare declare_constant$bit entry(bit(*) aligned) 2 220 returns(pointer); 2 221 /* parameter 1: (input) bit */ 2 222 /* return: (output) reference node pointer */ 2 223 2 224 declare declare_constant$char entry(character(*) aligned) 2 225 returns(pointer); 2 226 /* parameter 1: (input) character */ 2 227 /* return: (output) reference node pointer */ 2 228 2 229 declare declare_constant$desc entry(bit(*) aligned) 2 230 returns(pointer); 2 231 /* parameter 1: (input) descriptor bit value */ 2 232 /* return: (output) reference node pointer */ 2 233 2 234 declare declare_constant$integer entry(fixed bin(31)) /* note...should really be fixed bin(24) */ 2 235 returns(pointer); 2 236 /* parameter 1: (input) integer */ 2 237 /* return: (output) reference node pointer */ 2 238 2 239 declare declare_descriptor entry(pointer,pointer,pointer,pointer,bit(2) aligned) 2 240 returns(pointer); 2 241 /* parameter 1: (input) block node pointer */ 2 242 /* parameter 2: (input) statement node pointer */ 2 243 /* parameter 3: (input) symbol node pointer */ 2 244 /* parameter 4: (input) loc pointer */ 2 245 /* parameter 5: (input) array descriptor bit 2 246* cross_section bit */ 2 247 /* return: (output) reference node pointer */ 2 248 2 249 declare declare_descriptor$ctl entry(pointer,pointer,pointer,pointer,bit(2) aligned) 2 250 returns(pointer); 2 251 /* parameter 1: (input) block node pointer */ 2 252 /* parameter 2: (input) statement node pointer */ 2 253 /* parameter 3: (input) symbol node pointer */ 2 254 /* parameter 4: (input) loc pointer */ 2 255 /* parameter 5: (input) array descriptor bit 2 256* cross_section bit */ 2 257 /* return: (output) reference node pointer */ 2 258 2 259 declare declare_descriptor$param entry(pointer,pointer,pointer,pointer,bit(2) aligned) 2 260 returns(pointer); 2 261 /* parameter 1: (input) block node pointer */ 2 262 /* parameter 2: (input) statement node pointer */ 2 263 /* parameter 3: (input) symbol node pointer */ 2 264 /* parameter 4: (input) loc pointer */ 2 265 /* parameter 5: (input) array descriptor bit 2 266* cross_section bit */ 2 267 /* return: (output) reference node pointer */ 2 268 2 269 declare declare_integer entry(pointer) 2 270 returns(pointer); 2 271 /* parameter 1: (input) block node pointer */ 2 272 /* return: (output) reference node pointer */ 2 273 2 274 declare declare_picture entry(char(*)aligned,pointer,fixed bin(15)); 2 275 /* parameter 1: (input) picture string */ 2 276 /* parameter 2: (input) symbol node pointer */ 2 277 /* parameter 3: (output) error code, if any */ 2 278 2 279 declare declare_picture_temp entry(char(*) aligned,fixed bin(31),bit(1) aligned,bit(1) aligned) 2 280 returns(pointer); 2 281 /* parameter 1: (input) picture string */ 2 282 /* parameter 2: (input) scalefactor of picture */ 2 283 /* parameter 3: (input) ="1"b => complex picture */ 2 284 /* parameter 4: (input) ="1"b => unaligned temp */ 2 285 /* return: (output) reference node pointer */ 2 286 2 287 declare declare_pointer entry(pointer) 2 288 returns(pointer); 2 289 /* parameter 1: (input) block node pointer */ 2 290 /* return: (output) reference node pointer */ 2 291 2 292 declare declare_temporary entry(bit(36) aligned,fixed bin(31),fixed bin(15),pointer) 2 293 returns(pointer); 2 294 /* parameter 1: (input) type */ 2 295 /* parameter 2: (input) precision */ 2 296 /* parameter 3: (input) scale */ 2 297 /* parameter 4: (input) length */ 2 298 /* return: (output) reference node pointer */ 2 299 2 300 declare decode_node_id entry(pointer,bit(1) aligned) 2 301 returns(char(120) varying); 2 302 /* parameter 1: (input) node pointer */ 2 303 /* parameter 2: (input) ="1"b => capitals */ 2 304 /* return: (output) source line id */ 2 305 2 306 declare decode_source_id entry( 3 1 1 structure unaligned, 3 2 2 /* file_number */ bit(8), 3 3 2 /* line_number */ bit(14), 3 4 2 /* stmt_number */ bit(5), 2 307 2 308 bit(1) aligned) 2 309 returns(char(120) varying); 2 310 /* parameter 1: (input) source id */ 2 311 /* parameter 2: (input) ="1"b => capitals */ 2 312 /* return: (output) source line id */ 2 313 2 314 declare error entry(fixed bin(15),pointer,pointer); 2 315 /* parameter 1: (input) error number */ 2 316 /* parameter 2: (input) statement node pointer or null*/ 2 317 /* parameter 3: (input) token node pointer */ 2 318 2 319 declare error$omit_text entry(fixed bin(15),pointer,pointer); 2 320 /* parameter 1: (input) error number */ 2 321 /* parameter 2: (input) statement node pointer or null*/ 2 322 /* parameter 3: (input) token node pointer */ 2 323 2 324 declare error_ entry(fixed bin(15), 4 1 1 structure unaligned, 4 2 2 /* file_number */ bit(8), 4 3 2 /* line_number */ bit(14), 4 4 2 /* stmt_number */ bit(5), 2 325 2 326 pointer,fixed bin(8),fixed bin(23),fixed bin(11)); 2 327 /* parameter 1: (input) error number */ 2 328 /* parameter 2: (input) statement id */ 2 329 /* parameter 3: (input) any node pointer */ 2 330 /* parameter 4: (input) source segment */ 2 331 /* parameter 5: (input) source starting character */ 2 332 /* parameter 6: (input) source length */ 2 333 2 334 declare error_$no_text entry(fixed bin(15), 5 1 1 structure unaligned, 5 2 2 /* file_number */ bit(8), 5 3 2 /* line_number */ bit(14), 5 4 2 /* stmt_number */ bit(5), 2 335 2 336 pointer); 2 337 /* parameter 1: (input) error number */ 2 338 /* parameter 2: (input) statement id */ 2 339 /* parameter 3: (input) any node pointer */ 2 340 2 341 declare error_$initialize_error entry(); 2 342 2 343 declare error_$finish entry(); 2 344 2 345 declare free_node entry(pointer); 2 346 /* parameter 1: any node pointer */ 2 347 2 348 declare get_array_size entry(pointer,fixed bin(3)); 2 349 /* parameter 1: (input) symbol node pointer */ 2 350 /* parameter 2: (input) units */ 2 351 2 352 declare get_size entry(pointer); 2 353 /* parameter 1: (input) symbol node pointer */ 2 354 2 355 declare merge_attributes external entry(pointer,pointer) 2 356 returns(bit(1) aligned); 2 357 /* parameter 1: (input) target symbol node pointer */ 2 358 /* parameter 2: (input) source symbol node pointer */ 2 359 /* return: (output) "1"b if merge was unsuccessful */ 2 360 2 361 declare optimizer entry(pointer); 2 362 /* parameter 1: (input) root pointer */ 2 363 2 364 declare parse_error entry(fixed bin(15),pointer); 2 365 /* parameter 1: (input) error number */ 2 366 /* parameter 2: (input) any node pointer */ 2 367 2 368 declare parse_error$no_text entry(fixed bin(15),pointer); 2 369 /* parameter 1: (input) error number */ 2 370 /* parameter 2: (input) any node pointer */ 2 371 2 372 declare pl1_error_print$write_out 2 373 entry(fixed bin(15), 6 1 1 structure unaligned, 6 2 2 /* file_number */ bit(8), 6 3 2 /* line_number */ bit(14), 6 4 2 /* stmt_number */ bit(5), 2 374 2 375 pointer,fixed bin(11),fixed bin(31),fixed bin(31),fixed bin(15)); 2 376 /* parameter 1: (input) error number */ 2 377 /* parameter 2: (input) statement identification */ 2 378 /* parameter 3: (input) any node pointer */ 2 379 /* parameter 4: (input) source segment */ 2 380 /* parameter 5: (input) source character index */ 2 381 /* parameter 6: (input) source length */ 2 382 /* parameter 7: (input) source line */ 2 383 2 384 declare pl1_error_print$listing_segment 2 385 entry(fixed bin(15), 7 1 1 structure unaligned, 7 2 2 /* file_number */ bit(8), 7 3 2 /* line_number */ bit(14), 7 4 2 /* stmt_number */ bit(5), 2 386 2 387 pointer); 2 388 /* parameter 1: (input) error number */ 2 389 /* parameter 2: (input) statement identification */ 2 390 /* parameter 3: (input) token node pointer */ 2 391 2 392 declare pl1_print$varying entry(character(*) aligned varying); 2 393 /* parameter 1: (input) string */ 2 394 2 395 declare pl1_print$varying_nl entry(character(*) aligned varying); 2 396 /* parameter 1: (input) string */ 2 397 2 398 declare pl1_print$non_varying entry(character(*) aligned,fixed bin(31)); 2 399 /* parameter 1: (input) string */ 2 400 /* parameter 2: (input) string length or 0 */ 2 401 2 402 declare pl1_print$non_varying_nl entry(character(*) aligned,fixed bin(31)); 2 403 /* parameter 1: (input) string */ 2 404 /* parameter 2: (input) string length or 0 */ 2 405 2 406 declare pl1_print$string_pointer entry(pointer,fixed bin(31)); 2 407 /* parameter 1: (input) string pointer */ 2 408 /* parameter 2: (input) string size */ 2 409 2 410 declare pl1_print$string_pointer_nl entry(pointer,fixed bin(31)); 2 411 /* parameter 1: (input) string pointer */ 2 412 /* parameter 2: (input) string length or 0 */ 2 413 2 414 declare pl1_print$unaligned_nl entry(character(*) unaligned,fixed bin(31)); 2 415 /* parameter 1: (input) string */ 2 416 /* parameter 2: (input) length */ 2 417 2 418 declare pl1_print$for_lex entry (ptr, fixed bin (14), fixed bin (21), fixed bin (21), bit (1) aligned, bit (1) aligned); 2 419 /* parameter 1: (input) ptr to base of source segment */ 2 420 /* parameter 2: (input) line number */ 2 421 /* parameter 3: (input) starting offset in source seg */ 2 422 /* parameter 4: (input) number of chars to copy */ 2 423 /* parameter 5: (input) ON iff shd print line number */ 2 424 /* parameter 6: (input) ON iff line begins in comment */ 2 425 2 426 declare refer_extent entry(pointer,pointer); 2 427 /* parameter 1: (input/output) null,ref node,op node pointer */ 2 428 /* parameter 2: (input) null,ref node,op node pointer */ 2 429 2 430 declare reserve$clear entry() 2 431 returns(pointer); 2 432 /* return: (output) pointer */ 2 433 2 434 declare reserve$declare_lib entry(fixed bin(15)) 2 435 returns(pointer); 2 436 /* parameter 1: (input) builtin function number */ 2 437 /* return: (output) pointer */ 2 438 2 439 declare reserve$read_lib entry(fixed bin(15)) 2 440 returns(pointer); 2 441 /* parameter 1: (input) builtin function number */ 2 442 /* return: (output) pointer */ 2 443 2 444 declare semantic_translator entry(); 2 445 2 446 declare semantic_translator$abort entry(fixed bin(15),pointer); 2 447 /* parameter 1: (input) error number */ 2 448 /* parameter 2: (input) any node pointer */ 2 449 2 450 declare semantic_translator$error entry(fixed bin(15),pointer); 2 451 /* parameter 1: (input) error number */ 2 452 /* parameter 2: (input) any node pointer */ 2 453 2 454 declare share_expression entry(ptr) 2 455 returns(ptr); 2 456 /* parameter 1: (input) usually operator node pointer */ 2 457 /* return: (output) tree pointer or null */ 2 458 2 459 declare token_to_binary entry(ptr) reducible 2 460 returns(fixed bin(31)); 2 461 /* parameter 1: (input) token node pointer */ 2 462 /* return: (output) converted binary value */ 2 463 2 464 /* END INCLUDE FILE ... language_utility.incl.pl1 */ 1 228 1 229 /* END INCLUDE FILE ... semant.incl.pl1 */ 171 8 1 /* BEGIN INCLUDE FILE ... operator.incl.pl1 */ 8 2 8 3 /* Modified: 2 Apr 1980 by PCK to add max_number_of_operands */ 8 4 8 5 /* format: style3 */ 8 6 dcl 1 operator based aligned, 8 7 2 node_type bit (9) unaligned, 8 8 2 op_code bit (9) unaligned, 8 9 2 shared bit (1) unaligned, 8 10 2 processed bit (1) unaligned, 8 11 2 optimized bit (1) unaligned, 8 12 2 number fixed (14) unaligned, 8 13 2 operand dimension (n refer (operator.number)) ptr unaligned; 8 14 8 15 dcl max_number_of_operands 8 16 fixed bin (15) int static options (constant) initial (32767); 8 17 8 18 /* END INCLUDE FILE ... operator.incl.pl1 */ 172 9 1 /* BEGIN INCLUDE FILE ... reference.incl.pl1 */ 9 2 9 3 dcl 1 reference based aligned, 9 4 2 node_type bit(9) unaligned, 9 5 2 array_ref bit(1) unaligned, 9 6 2 varying_ref bit(1) unaligned, 9 7 2 shared bit(1) unaligned, 9 8 2 put_data_sw bit(1) unaligned, 9 9 2 processed bit(1) unaligned, 9 10 2 units fixed(3) unaligned, 9 11 2 ref_count fixed(17) unaligned, 9 12 2 c_offset fixed(24), 9 13 2 c_length fixed(24), 9 14 2 symbol ptr unaligned, 9 15 2 qualifier ptr unaligned, 9 16 2 offset ptr unaligned, 9 17 2 length ptr unaligned, 9 18 2 subscript_list ptr unaligned, 9 19 /* these fields are used by the 645 code generator */ 9 20 2 address structure unaligned, 9 21 3 base bit(3), 9 22 3 offset bit(15), 9 23 3 op bit(9), 9 24 3 no_address bit(1), 9 25 3 inhibit bit(1), 9 26 3 ext_base bit(1), 9 27 3 tag bit(6), 9 28 2 info structure unaligned, 9 29 3 address_in structure, 9 30 4 b dimension(0:7) bit(1), 9 31 4 storage bit(1), 9 32 3 value_in structure, 9 33 4 a bit(1), 9 34 4 q bit(1), 9 35 4 aq bit(1), 9 36 4 string_aq bit(1), 9 37 4 complex_aq bit(1), 9 38 4 decimal_aq bit(1), 9 39 4 b dimension(0:7) bit(1), 9 40 4 storage bit(1), 9 41 4 indicators bit(1), 9 42 4 x dimension(0:7) bit(1), 9 43 3 other structure, 9 44 4 big_offset bit(1), 9 45 4 big_length bit(1), 9 46 4 modword_in_offset bit(1), 9 47 2 data_type fixed(5) unaligned, 9 48 2 bits structure unaligned, 9 49 3 padded_ref bit(1), 9 50 3 aligned_ref bit(1), 9 51 3 long_ref bit(1), 9 52 3 forward_ref bit(1), 9 53 3 ic_ref bit(1), 9 54 3 temp_ref bit(1), 9 55 3 defined_ref bit(1), 9 56 3 evaluated bit(1), 9 57 3 allocate bit(1), 9 58 3 allocated bit(1), 9 59 3 aliasable bit(1), 9 60 3 even bit(1), 9 61 3 perm_address bit(1), 9 62 3 aggregate bit(1), 9 63 3 hit_zero bit(1), 9 64 3 dont_save bit(1), 9 65 3 fo_in_qual bit(1), 9 66 3 hard_to_load bit(1), 9 67 2 relocation bit(12) unaligned, 9 68 2 more_bits structure unaligned, 9 69 3 substr bit(1), 9 70 3 padded_for_store_ref bit(1), 9 71 3 aligned_for_store_ref bit(1), 9 72 3 mbz bit(15), 9 73 2 store_ins bit(18) unaligned; 9 74 9 75 /* END INCLUDE FILE ... reference.incl.pl1 */ 173 10 1 /* BEGIN INCLUDE FILE ... nodes.incl.pl1 */ 10 2 10 3 /* Modified: 26 Dec 1979 by PCK to implement by name assignment */ 10 4 10 5 dcl ( block_node initial("000000001"b), 10 6 statement_node initial("000000010"b), 10 7 operator_node initial("000000011"b), 10 8 reference_node initial("000000100"b), 10 9 token_node initial("000000101"b), 10 10 symbol_node initial("000000110"b), 10 11 context_node initial("000000111"b), 10 12 array_node initial("000001000"b), 10 13 bound_node initial("000001001"b), 10 14 format_value_node initial("000001010"b), 10 15 list_node initial("000001011"b), 10 16 default_node initial("000001100"b), 10 17 machine_state_node initial("000001101"b), 10 18 source_node initial("000001110"b), 10 19 label_node initial("000001111"b), 10 20 cross_reference_node initial("000010000"b), 10 21 sf_par_node initial("000010001"b), 10 22 temporary_node initial("000010010"b), 10 23 label_array_element_node initial("000010011"b), 10 24 by_name_agg_node initial("000010100"b)) 10 25 bit(9) internal static aligned options(constant); 10 26 10 27 dcl 1 node based aligned, 10 28 2 type unal bit(9), 10 29 2 source_id unal structure, 10 30 3 file_number bit(8), 10 31 3 line_number bit(14), 10 32 3 statement_number bit(5); 10 33 10 34 /* END INCLUDE FILE ... nodes.incl.pl1 */ 174 11 1 /* BEGIN INCLUDE FILE ... op_codes.incl.pl1 */ 11 2 11 3 /* Modified: 25 Apr 1979 by PCK 4-bit decimal */ 11 4 /* Modified: 6 Jun 1979 by PG to add rank and byte */ 11 5 /* Modified: 26 Dec 1979 by PCK to add assign_by_name */ 11 6 /* Modified: 26 July 82 BIM wordno, segno */ 11 7 11 8 dcl ( add initial("000010001"b), /* opnd(1) <- opnd(2)+opnd(3) */ 11 9 sub initial("000010010"b), /* opnd(1) <- opnd(2)-opnd(3) */ 11 10 mult initial("000010011"b), /* opnd(1) <- opnd(2)*opnd(3) */ 11 11 div initial("000010100"b), /* opnd(1) <- opnd(2)/opnd(3) */ 11 12 negate initial("000010101"b), /* opnd(1) <- -opnd(2) */ 11 13 exp initial("000010110"b), /* opnd(1) <- opnd(2) ** opnd(3) */ 11 14 11 15 and_bits initial("000100001"b), /* opnd(1) <- opnd(2) & opnd(3) */ 11 16 or_bits initial("000100010"b), /* opnd(1) <- opnd(2)|opnd(3) */ 11 17 xor_bits initial("000100011"b), /* opnd(1) <- opnd(2) xor opnd(3) */ 11 18 not_bits initial("000100100"b), /* opnd(1) <- ^opnd(2) */ 11 19 cat_string initial("000100101"b), /* opnd(1) <- opnd(2)||opnd(3) */ 11 20 bool_fun initial("000100110"b), /* opnd(1) <- bool(opnd(2),opnd(3),opnd(4)) */ 11 21 11 22 assign initial("000110001"b), /* opnd(1) <- opnd(2) */ 11 23 assign_size_ck initial("000110010"b), /* opnd(1) <- opnd(2) */ 11 24 assign_zero initial("000110011"b), /* opnd(1) <- 0 */ 11 25 copy_words initial("000110100"b), /* move opnd(2) to opnd(1) by opnd(3) words */ 11 26 copy_string initial("000110101"b), /* move opnd(2) to opnd(1) by opnd(3) units */ 11 27 make_desc initial("000110110"b), /* opnd(1) <- descriptor(opnd(2),opnd(3)) */ 11 28 assign_round initial("000110111"b), /* opnd(1) <- opnd(2) rounded */ 11 29 pack initial("000111000"b), /* opnd(1) <- encode to picture opnd(2) */ 11 30 unpack initial("000111001"b), /* opnd(1) <- decode from picture opnd(2) */ 11 31 11 32 less_than initial("001000100"b), /* opnd(1) <- opnd(2) < opnd(3) */ 11 33 greater_than initial("001000101"b), /* opnd(1) <- opnd(2) > opnd(3) */ 11 34 equal initial("001000110"b), /* opnd(1) <- opnd(2) = opnd(3) */ 11 35 not_equal initial("001000111"b), /* opnd(1) <- opnd(2) ^= opnd(3) */ 11 36 less_or_equal initial("001001000"b), /* opnd(1) <- opnd(2) <= opnd(3) */ 11 37 greater_or_equal initial("001001001"b), /* opnd(1) <- opnd(2) >= opnd(3) */ 11 38 11 39 jump initial("001010001"b), /* go to opnd(1) unconditionally */ 11 40 jump_true initial("001010010"b), /* go to opnd(1) if opnd(2) is not 0 */ 11 41 jump_false initial("001010011"b), /* go to opnd(1) if opnd(2) is all 0 */ 11 42 jump_if_lt initial("001010100"b), /* go to opnd(1) if opnd(2) < opnd(3) */ 11 43 jump_if_gt initial("001010101"b), /* go to opnd(1) if opnd(2) > opnd(3) */ 11 44 jump_if_eq initial("001010110"b), /* go to opnd(1) if opnd(2) = opnd(3) */ 11 45 jump_if_ne initial("001010111"b), /* go to opnd(1) if opnd(2) ^= opnd(3) */ 11 46 jump_if_le initial("001011000"b), /* go to opnd(1) if opnd(2) <= opnd(3) */ 11 47 jump_if_ge initial("001011001"b), /* go to opnd(1) if opnd(2) >= opnd(3) */ 11 48 11 49 std_arg_list initial("001100001"b), /* opnd(1) <- arglist(opnd(2) desclist(opnd(3))) */ 11 50 return_words initial("001100010"b), /* return aggregate opnd(1), opnd(2) is length in words */ 11 51 std_call initial("001100011"b), /* opnd(1) <- call opnd(2) with opnd(3) */ 11 52 return_bits initial("001100100"b), /* return aggregate opnd(1), opnd(2) is length in bits */ 11 53 std_entry initial("001100101"b), /* entry(opnd(1)... opnd(n)) */ 11 54 return_string initial("001100110"b), /* return string opnd(1) */ 11 55 ex_prologue initial("001100111"b), /* execute the prologue -no operands- */ 11 56 allot_auto initial("001101000"b), /* opnd(1) <- addrel(stack,opnd(2)) */ 11 57 param_ptr initial("001101001"b), /* opnd(1) <- ptr to opnd(2) in block opnd(3) */ 11 58 param_desc_ptr initial("001101010"b), /* opnd(1) <- ptr to opnd(2) in block opnd(3) */ 11 59 std_return initial("001101011"b), /* return -no arguments- */ 11 60 allot_ctl initial("001101100"b), /* allocate opnd(1) , length in words is opnd(2) */ 11 61 free_ctl initial("001101101"b), /* free opnd(1) */ 11 62 stop initial("001101110"b), /* stop - terminate run unit */ 11 63 11 64 mod_bit initial("001110000"b), /* opnd(1) <- mod(opnd(3),36), 11 65* opnd(2) <- opnd(3) / 36 */ 11 66 mod_byte initial("001110001"b), /* opnd(1) <- mod(opnd(3),4), 11 67* opnd(2) <- opnd(3) / 4 */ 11 68 mod_half initial("001110010"b), /* opnd(1) <- mod(opnd(3),2), 11 69* opnd(2) <- opnd(3) / 2 */ 11 70 mod_word initial("001110011"b), /* TO BE DEFINED BY BLW */ 11 71 11 72 bit_to_char initial("010000000"b), /* opnd(1) <- (opnd(2)+8)/9 */ 11 73 bit_to_word initial("010000001"b), /* opnd(1) <- (opnd(2)+35)/36 */ 11 74 char_to_word initial("010000010"b), /* opnd(1) <- (opnd(2)+3)/4 */ 11 75 half_to_word initial("010000011"b), /* opnd(1) <- (opnd(2)+1)/2 */ 11 76 word_to_mod2 initial("010000100"b), /* opnd(1) <- (opnd(2)+1)/2*2 */ 11 77 word_to_mod4 initial("010000101"b), /* opnd(1) <- (opnd(2)+3)/4*4 */ 11 78 word_to_mod8 initial("010000110"b), /* opnd(1) <- (opnd(2)+7)/8*8 */ 11 79 rel_fun initial("010000111"b), /* opnd(1) <- rel(opnd(2)) */ 11 80 baseno_fun initial("010001000"b), /* opnd(1) <- baseno(opnd(2)) */ 11 81 desc_size initial("010001001"b), /* opnd(1) <- substr(opnd(2),13,24) */ 11 82 bit_pointer initial("010001010"b), /* opnd(1) <- bit offset of opnd(2) */ 11 83 index_before_fun initial("010001011"b), /* opnd(1) <- length of before(opnd(2),opnd(3)) */ 11 84 index_after_fun initial("010001100"b), /* opnd(1) <- offset of after(opnd(2),opnd(3)) in opnd(2) */ 11 85 verify_ltrim_fun initial("010001101"b), /* opnd(1) <- offset of ltrim(opnd(2),opnd(3)) in opnd(2) */ 11 86 verify_rtrim_fun initial("010001110"b), /* opnd(1) <- length(opnd(2))-length(rtrim(opnd(2),opnd(3))) */ 11 87 digit_to_bit initial("010001111"b), /* opnd(1) <- 9*opnd(2)/2 */ 11 88 11 89 ceil_fun initial("010010000"b), /* opnd(1) <- ceil(opnd(2)) */ 11 90 floor_fun initial("010010001"b), /* opnd(1) <- floor(opnd(2)) */ 11 91 round_fun initial("010010010"b), /* opnd(1) <- round(opnd(2)) */ 11 92 sign_fun initial("010010011"b), /* opnd(1) <- sign(opnd(2)) */ 11 93 abs_fun initial("010010100"b), /* opnd(1) <- abs(opnd(2)) */ 11 94 trunc_fun initial("010010101"b), /* opnd(1) <- trunc(opnd(2)) */ 11 95 byte_fun initial("010010110"b), /* opnd(1) <- byte(opnd(2)) */ 11 96 rank_fun initial("010010111"b), /* opnd(1) <- rank(opnd(2)) */ 11 97 index_rev_fun initial("010011000"b), /* opnd(1) <- index(reverse(opnd(2)),reverse(opnd(3))) */ 11 98 search_rev_fun initial("010011001"b), /* opnd(1) <- search(reverse(opnd(2)),opnd(3)) */ 11 99 verify_rev_fun initial("010011010"b), /* opnd(1) <- verify(reverse(opnd(2)),opnd(3)) */ 11 100 wordno_fun initial("010011011"b), /* opnd(1) <- wordno (opnd(2)) */ 11 101 segno_fun initial("010011100"b), /* opnd(1) <- segno (opnd(2)) */ 11 102 bitno_fun initial("010011101"b), /* opnd(1) <- bitno (opnd(2)) */ 11 103 charno_fun initial("010011110"b), /* opnd(1) <- charno (opnd(2)) */ 11 104 11 105 index_fun initial("010100000"b), /* opnd(1) <- index(opnd(2),opnd(3)) */ 11 106 off_fun initial("010100001"b), /* opnd(1) <- offset(opnd(2),opnd(3)) */ 11 107 complex_fun initial("010100010"b), /* opnd(1) <- complex(opnd(2),opnd(3)) */ 11 108 conjg_fun initial("010100011"b), /* opnd(1) <- conjg(opnd(2),opnd(3)) */ 11 109 mod_fun initial("010100100"b), /* opnd(1) <- mod(opnd(2),opnd(3)) */ 11 110 repeat_fun initial("010100101"b), /* opnd(1) <- repeat(opnd(2),opnd(3)) */ 11 111 verify_fun initial("010100110"b), /* opnd(1) <- verify(opnd(2),opnd(3)) */ 11 112 translate_fun initial("010100111"b), /* opnd(1) <- translate(opnd(2),opnd(3))*/ 11 113 real_fun initial("010101001"b), /* opnd(1) <- real(opnd(2)) */ 11 114 imag_fun initial("010101010"b), /* opnd(1) <- imag(opnd(2)) */ 11 115 length_fun initial("010101011"b), /* opnd(1) <- length(opnd(2)) */ 11 116 pl1_mod_fun initial("010101100"b), /* opnd(1) <- mod(opnd(2)) */ 11 117 search_fun initial("010101101"b), /* opnd(1) <- search(opnd(2),opnd(3)) */ 11 118 allocation_fun initial("010101110"b), /* opnd(1) <- allocation(opnd(2)) */ 11 119 reverse_fun initial("010101111"b), /* opnd(1) <- reverse(opnd(2)) */ 11 120 11 121 addr_fun initial("010110000"b), /* opnd(1) <- addr(opnd(2)) */ 11 122 addr_fun_bits initial("010110001"b), /* opnd(1) <- addr(opnd(2)) */ 11 123 ptr_fun initial("010110010"b), /* opnd(1) <- ptr(opnd(2),opnd(3)) */ 11 124 baseptr_fun initial("010110011"b), /* opnd(1) <- baseptr(opnd(2)) */ 11 125 addrel_fun initial("010110100"b), /* opnd(1) <- addrel(opnd(2),opnd(3)) */ 11 126 codeptr_fun initial("010110101"b), /* opnd(1) <- codeptr(opnd(2)) */ 11 127 environmentptr_fun initial("010110110"b), /* opnd(1) <- environmentptr(opnd(2)) */ 11 128 stackbaseptr_fun initial("010110111"b), /* opnd(1) is ptr to base of current stack */ 11 129 stackframeptr_fun initial("010111000"b), /* opnd(1) is ptr to current block's stack frame */ 11 130 setcharno_fun initial("010111001"b), /* opnd(1) <- opnd(2) with charno opnd(3) */ 11 131 addcharno_fun initial("010111010"b), /* opnd(1) <- opnd(2) with charno = charno + opnd(3) */ 11 132 setbitno_fun initial("010111011"b), /* setcharno for bitsno */ 11 133 addbitno_fun initial("010111100"b), /* addcharno for bitno */ 11 134 11 135 min_fun initial("011000000"b), /* opnd(1) <- min(opnd(1),opnd(2),...) */ 11 136 max_fun initial("011000001"b), /* opnd(1) <- max(opnd(1),opnd(2),...) */ 11 137 11 138 stack_ptr initial("011010001"b), /* opnd(1) <- stack frame ptr */ 11 139 empty_area initial("011010010"b), /* empty opnd(1), length in words is opnd(2) */ 11 140 enable_on initial("011010100"b), /* opnd(1) is the cond name 11 141* opnd(2) is the file name 11 142* opnd(3) is the block */ 11 143 revert_on initial("011010101"b), /* opnd(1) is the cond name, 11 144* opnd(2) is the file name */ 11 145 signal_on initial("011010110"b), /* opnd(1) is the cond name 11 146* opnd(2) is the file name */ 11 147 11 148 lock_fun initial("011010111"b), /* opnd(1) <- stac(opnd(2),opnd(3)) */ 11 149 stacq_fun initial("011011000"b), /* opnd(1) is result, opnd(2) is ptr to lock word, 11 150* opnd(3) is old value, (4) is new value. */ 11 151 clock_fun initial("011011001"b), /* opnd(1) is the clock time */ 11 152 vclock_fun initial("011011010"b), /* opnd(1) is the virtual clock time */ 11 153 11 154 bound_ck initial("011100000"b), /* opnd(1) <- opnd(2) if opnd(3) <= opnd(2) <= opnd(4) */ 11 155 range_ck initial("011100001"b), /* opnd(1) <- opnd(2) if opnd(3) <= opnd(2) <= opnd(4) */ 11 156 loop initial("011100010"b), /* do opnd(1) for opnd(2) from opnd(3) to opnd(4) by 1, 11 157* opnd(5) is the list */ 11 158 join initial("011100011"b), /* do opnd(1), opnd(2) ... opnd(n) */ 11 159 allot_based initial("011100100"b), /* allocate opnd(2) words in opnd(3), set opnd(1) */ 11 160 free_based initial("011100101"b), /* free opnd(1) in opnd(3), length is opnd(2) words */ 11 161 11 162 r_parn initial("011110001"b), /* format op code */ 11 163 l_parn initial("011110010"b), 11 164 r_format initial("011110011"b), 11 165 c_format initial("011110100"b), 11 166 f_format initial("011110101"b), 11 167 e_format initial("011110110"b), 11 168 b_format initial("011110111"b), 11 169 a_format initial("011111000"b), 11 170 x_format initial("011111001"b), 11 171 skip_format initial("011111010"b), 11 172 column_format initial("011111011"b), 11 173 page_format initial("011111100"b), 11 174 line_format initial("011111101"b), 11 175 picture_format initial("011111110"b), 11 176 bn_format initial("011111111"b), /* bit format, length(opnd(2)), radix factor(opnd(3)) */ 11 177 11 178 get_list_trans initial("100000000"b), /* getlist(opnd(2) with desc(opnd(1))) */ 11 179 get_edit_trans initial("100000001"b), /* getedit(opnd(2) with desc(opnd(1))) */ 11 180 get_data_trans initial("100000010"b), /* getdata(opnd(1) to opnd(n)) */ 11 181 put_list_trans initial("100000011"b), /* putlist(opnd(2) with desc(opnd(1))) */ 11 182 put_edit_trans initial("100000100"b), /* putedit(opnd(2) with desc(opnd(1))) */ 11 183 put_data_trans initial("100000101"b), /* putdata(opnd(2)) with subscript-list opnd(1) */ 11 184 terminate_trans initial("100000110"b), /* terminate stream transmission */ 11 185 stream_prep initial("100000111"b), /* initiate stream transmission */ 11 186 record_io initial("100001000"b), /* perform record io operation */ 11 187 fortran_read initial("100001001"b), /* A complete read statement */ 11 188 fortran_write initial("100001010"b), /* A complete write statement */ 11 189 ftn_file_manip initial("100001011"b), /* endfile,backspace,rewind,etc. */ 11 190 ftn_trans_loop initial("100001100"b), /* An implied do in i/o list */ 11 191 put_control initial("100001101"b), /* put control opnd(1) opnd(2) times */ 11 192 put_field initial("100001110"b), /* putlist(opnd(2)) of length(opnd(1)) */ 11 193 put_field_chk initial("100001111"b), /* putlist(op(2)) of len(op(1)) check char index(op(3)) */ 11 194 11 195 /* These operators are produced by the parse but are not used as input to the code generator. */ 11 196 /* They are processed by the semantic translator. */ 11 197 11 198 return_value initial("100010010"b), /* return(opnd(1)) */ 11 199 allot_var initial("100010011"b), /* allot opnd(1) in opnd(2) */ 11 200 free_var initial("100010100"b), /* free opnd(1) out of opnd(2) */ 11 201 get_file initial("100010101"b), /* opnd(1) is filename,opnd(2) is copy */ 11 202 /* opnd(3) is skip, opnd(4) is list */ 11 203 get_string initial("100010110"b), /* opnd(1) is string,opnd(2) is list */ 11 204 put_file initial("100010111"b), /* opnd(1) is filename,opnd(2) is page */ 11 205 /* opnd(3) is skip,opnd(4) is line */ 11 206 put_string initial("100011000"b), /* opnd(1) is string,opnd(2) is list */ 11 207 open_file initial("100011001"b), 11 208 close_file initial("100011010"b), 11 209 read_file initial("100011011"b), 11 210 write_file initial("100011100"b), 11 211 locate_file initial("100011101"b), 11 212 do_fun initial("100011110"b), /* opnd(1) is join of a list */ 11 213 /* opnd(2) is control variable ref */ 11 214 /* opnd(3) is specification operator */ 11 215 do_spec initial("100011111"b), /* opnd(1) to opnd(2) by opnd(3) */ 11 216 /* repeat opnd(4) while opnd(5) */ 11 217 /* opnd(6) is next specification */ 11 218 11 219 rewrite_file initial("100100000"b), 11 220 delete_file initial("100100001"b), 11 221 unlock_file initial("100100010"b), 11 222 lock_file initial("100100011"b), 11 223 refer initial("100100101"b), /* opnd(1) refer(opnd(2)) */ 11 224 prefix_plus initial("100100110"b), /* opnd(1) <- +opnd(2) */ 11 225 nop initial("100100111"b), /* no-op */ 11 226 assign_by_name initial("100101000"b), /* opnd(1) <- opnd(2),by name */ 11 227 11 228 /* These operators are produced by the semantic translator in processing the math 11 229* builtin functions and are used as input to the code generator */ 11 230 11 231 sqrt_fun initial("100110000"b), /* opnd(1) <- sqrt(opnd(2)) */ 11 232 sin_fun initial("100110001"b), /* opnd(1) <- sin(opnd(2)) */ 11 233 sind_fun initial("100110010"b), /* opnd(1) <- sind(opnd(2)) */ 11 234 cos_fun initial("100110011"b), /* opnd(1) <- cos(opnd(2)) */ 11 235 cosd_fun initial("100110100"b), /* opnd(1) <- cosd(opnd(2)) */ 11 236 tan_fun initial("100110101"b), /* opnd(1) <- tan(opnd(2)) */ 11 237 tand_fun initial("100110110"b), /* opnd(1) <- tand(opnd(2)) */ 11 238 asin_fun initial("100110111"b), /* opnd(1) <- asin(opnd(2)) */ 11 239 asind_fun initial("100111000"b), /* opnd(1) <- asind(opnd(2)) */ 11 240 acos_fun initial("100111001"b), /* opnd(1) <- acos(opnd(2)) */ 11 241 acosd_fun initial("100111010"b), /* opnd(1) <- acosd(opnd(2)) */ 11 242 atan_fun initial("100111011"b), /* opnd(1) <- atan(opnd(2)[,opnd(3)]) */ 11 243 atand_fun initial("100111100"b), /* opnd(1) <- atand(opnd(2)[,opnd(3)]) */ 11 244 log2_fun initial("100111101"b), /* opnd(1) <- log2(opnd(2)) */ 11 245 log_fun initial("100111110"b), /* opnd(1) <- log(opnd(2)) */ 11 246 log10_fun initial("100111111"b), /* opnd(1) <- log10(opnd(2)) */ 11 247 11 248 exp_fun initial("101000000"b)) /* opnd(1) <- exp(opnd(2)) */ 11 249 11 250 bit(9) aligned internal static options(constant); 11 251 11 252 /* END INCLUDE FILE ... op_codes.incl.pl1 */ 175 12 1 /* BEGIN INCLUDE FILE ... boundary.incl.pl1 */ 12 2 12 3 /* Modified: 26 Apr 1979 by PCK to implement 4-bit decimal */ 12 4 12 5 dcl ( bit_ init(1), 12 6 digit_ init(2), 12 7 character_ init(3), 12 8 half_ init(4), 12 9 word_ init(5), 12 10 mod2_ init(6), 12 11 mod4_ init(7)) fixed bin(3) int static options(constant); 12 12 12 13 /* END INCLUDE FILE ... boundary.incl.pl1 */ 176 13 1 /* BEGIN INCLUDE FILE ... system.incl.pl1 */ 13 2 13 3 /* Modified: 25 Apr 1979 by PCK to implemnt 4-bit decimal */ 13 4 13 5 dcl ( max_p_flt_bin_1 initial(27), 13 6 max_p_flt_bin_2 initial(63), 13 7 max_p_fix_bin_1 initial(35), 13 8 max_p_fix_bin_2 initial(71), 13 9 13 10 max_p_dec initial(59), 13 11 max_p_bin_or_dec initial (71), /* max (max_p_fix_bin_2, max_p_dec) */ 13 12 13 13 min_scale initial(-128), 13 14 max_scale initial(+127), 13 15 max_bit_string initial(9437184), 13 16 max_char_string initial(1048576), 13 17 max_area_size initial(262144), 13 18 min_area_size initial(28), 13 19 13 20 max_bit_string_constant initial (253), /* max length of bit literals */ 13 21 max_char_string_constant initial (254), /* max length of character literals */ 13 22 max_identifier_length initial (256), 13 23 max_number_of_dimensions initial (127), 13 24 13 25 max_length_precision initial(24), 13 26 max_offset_precision initial(24), /* 18 bits for word offset + 6 bits for bit offset */ 13 27 13 28 max_words_per_variable initial (262144), 13 29 13 30 bits_per_word initial(36), 13 31 bits_per_double initial(72), 13 32 packed_digits_per_character initial(2), 13 33 characters_per_half initial(2), 13 34 characters_per_word initial(4), 13 35 characters_per_double initial(8), 13 36 13 37 bits_per_character initial(9), 13 38 bits_per_half initial(18), 13 39 bits_per_decimal_digit initial(9), 13 40 bits_per_binary_exponent initial(8), 13 41 bits_per_packed_ptr initial(36), 13 42 words_per_packed_pointer initial(1), 13 43 13 44 words_per_fix_bin_1 initial(1), 13 45 words_per_fix_bin_2 initial(2), 13 46 words_per_flt_bin_1 initial(1), 13 47 words_per_flt_bin_2 initial(2), 13 48 words_per_varying_string_header initial(1), 13 49 words_per_offset initial(1), 13 50 words_per_pointer initial(2), 13 51 words_per_label_var initial(4), 13 52 words_per_entry_var initial(4), 13 53 words_per_file_var initial(4), 13 54 words_per_format initial(4), 13 55 words_per_condition_var initial(6), 13 56 13 57 max_index_register_value initial(262143), 13 58 max_signed_index_register_value initial(131071), 13 59 13 60 max_signed_xreg_precision initial(17), 13 61 max_uns_xreg_precision initial(18), 13 62 13 63 default_area_size initial(1024), 13 64 default_flt_bin_p initial(27), 13 65 default_fix_bin_p initial(17), 13 66 default_flt_dec_p initial(10), 13 67 default_fix_dec_p initial(7)) fixed bin(31) internal static options(constant); 13 68 13 69 dcl bits_per_digit initial(4.5) fixed bin(31,1) internal static options(constant); 13 70 13 71 dcl ( integer_type initial("010000000000000000000100000001100000"b), 13 72 dec_integer_type initial("010000000000000000000100000010100000"b), 13 73 pointer_type initial("000001000000000000000100000000000000"b), 13 74 real_type initial("001000000000000000000100000001100000"b), 13 75 complex_type initial("001000000000000000000100000001010000"b), 13 76 builtin_type initial("000000000000000010000000000000000000"b), 13 77 storage_block_type initial("000000000000100000000000000000000000"b), 13 78 arg_desc_type initial("000000000001000000000000000000000000"b), 13 79 local_label_var_type initial("000000001000000000000100000100001000"b), 13 80 entry_var_type initial("000000000100000000000000000000001000"b), 13 81 bit_type initial("000100000000000000000000000000000000"b), 13 82 char_type initial("000010000000000000000000000000000000"b)) bit(36) aligned int static 13 83 options(constant); 13 84 13 85 /* END INCLUDE FILE ... system.incl.pl1 */ 177 178 179 end /* offset_adder */; 180 SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 04/18/00 1124.8 offset_adder.pl1 >udd>sm>ds>w>ml>offset_adder.pl1 171 1 07/21/80 1646.3 semant.incl.pl1 >ldd>incl>semant.incl.pl1 1-228 2 08/01/89 1339.9 language_utility.incl.pl1 >ldd>incl>language_utility.incl.pl1 2-307 3 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 2-325 4 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 2-335 5 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 2-374 6 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 2-386 7 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 172 8 07/21/80 1646.3 operator.incl.pl1 >ldd>incl>operator.incl.pl1 173 9 07/21/80 1646.3 reference.incl.pl1 >ldd>incl>reference.incl.pl1 174 10 07/21/80 1646.3 nodes.incl.pl1 >ldd>incl>nodes.incl.pl1 175 11 04/07/83 1735.0 op_codes.incl.pl1 >ldd>incl>op_codes.incl.pl1 176 12 10/25/79 1745.8 boundary.incl.pl1 >ldd>incl>boundary.incl.pl1 177 13 12/07/83 1801.7 system.incl.pl1 >ldd>incl>system.incl.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 parameter pointer dcl 15 set ref 11 40* 60 60* 60* 68 70* 93 95* 98 101 103* add 000002 constant bit(9) initial dcl 11-8 set ref 92* 100* arg_b parameter pointer dcl 15 ref 11 38 arg_cb parameter fixed bin(31,0) dcl 16 ref 11 38 arg_mwb parameter bit(1) dcl 18 ref 11 38 arg_ub parameter fixed bin(3,0) dcl 17 ref 11 38 b 000100 automatic pointer dcl 15 set ref 38* 42* 53 53* 53* 70 72 90 94 bit_ constant fixed bin(3,0) initial dcl 12-5 ref 77 79 79 85 158 bit_offset 000110 automatic fixed bin(31,0) dcl 20 set ref 77* 79 85 c_table 000003 constant fixed bin(31,1) initial array dcl 26 ref 51 58 77 79 85 135 162 ca parameter fixed bin(31,0) dcl 16 set ref 11 58* 58 66* 66 77 85* 98 102* 104* cb 000104 automatic fixed bin(31,0) dcl 16 set ref 38* 51* 51 66 converted_variable_offset 000130 automatic pointer dcl 155 set ref 158* 161* 162 165 167 create_operator 000012 constant entry external dcl 2-152 ref 92 100 130 158 161 declare_constant$integer 000014 constant entry external dcl 2-234 ref 102 135 162 digit_ constant fixed bin(3,0) initial dcl 12-5 ref 158 digit_to_bit 000000 constant bit(9) initial dcl 11-8 set ref 158* divide builtin function dcl 24 ref 85 from_units parameter fixed bin(3,0) dcl 151 ref 145 158 162 min builtin function dcl 24 ref 65 mod builtin function dcl 24 ref 79 mod_bit constant bit(9) initial dcl 11-8 ref 117 mult 000001 constant bit(9) initial dcl 11-8 set ref 130* 161* mwa parameter bit(1) dcl 18 set ref 11 40* mwb 000106 automatic bit(1) dcl 18 set ref 38* 42* n 000107 automatic fixed bin(15,0) dcl 19 set ref 79* 79* 83 85 86 no_improve parameter bit(1) packed unaligned dcl 22 ref 11 72 node based structure level 1 dcl 10-27 null builtin function dcl 24 ref 53 60 68 72 90 98 115 133 offset_is_modword parameter bit(1) dcl 113 set ref 109 125 139* op_code 0(09) based bit(9) level 2 packed packed unaligned dcl 8-6 ref 117 operand 1 based pointer array level 2 packed packed unaligned dcl 8-6 set ref 93* 94* 101* 102* 121 133* 134* 135* 162* 165* operator based structure level 1 dcl 8-6 operator_node constant bit(9) initial dcl 10-5 ref 117 pl1_stat_$eis_mode 000010 external static bit(1) dcl 35 ref 83 117 processed 0(19) based bit(1) level 2 packed packed unaligned dcl 8-6 set ref 132* pt parameter pointer dcl 111 set ref 109 115 117 117 121* 121 134 137* q 000102 automatic pointer dcl 15 set ref 92* 93 94 95 100* 101 102 103 substr builtin function dcl 24 ref 117 117 t 000120 automatic pointer dcl 111 set ref 130* 132 133 134 135 137 to_units parameter fixed bin(3,0) dcl 151 ref 145 158 162 type based bit(9) level 2 packed packed unaligned dcl 10-27 ref 117 ua parameter fixed bin(3,0) dcl 17 set ref 11 40* 44 44* 46 48 48 48 51 53* 58 60* 65* 65 72 77 86* ub 000105 automatic fixed bin(3,0) dcl 17 set ref 38* 42* 44 46 46* 48 48 48 51 53* 58 60* 65 units parameter fixed bin(3,0) dcl 112 ref 109 135 variable_offset parameter pointer dcl 150 ref 145 165 word_ constant fixed bin(3,0) initial dcl 12-5 ref 48 48 72 79 83 135 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. a_format internal static bit(9) initial dcl 11-8 abs_fun internal static bit(9) initial dcl 11-8 acos_fun internal static bit(9) initial dcl 11-8 acosd_fun internal static bit(9) initial dcl 11-8 addbitno_fun internal static bit(9) initial dcl 11-8 addcharno_fun internal static bit(9) initial dcl 11-8 addr_fun internal static bit(9) initial dcl 11-8 addr_fun_bits internal static bit(9) initial dcl 11-8 addrel_fun internal static bit(9) initial dcl 11-8 adjust_count 000000 constant entry external dcl 2-20 alloc_semantics 000000 constant entry external dcl 1-7 alloc_semantics$init_only 000000 constant entry external dcl 1-12 allocation_fun internal static bit(9) initial dcl 11-8 allot_auto internal static bit(9) initial dcl 11-8 allot_based internal static bit(9) initial dcl 11-8 allot_ctl internal static bit(9) initial dcl 11-8 allot_var internal static bit(9) initial dcl 11-8 and_bits internal static bit(9) initial dcl 11-8 arg_desc_type internal static bit(36) initial dcl 13-71 array_node internal static bit(9) initial dcl 10-5 asin_fun internal static bit(9) initial dcl 11-8 asind_fun internal static bit(9) initial dcl 11-8 assign internal static bit(9) initial dcl 11-8 assign_by_name internal static bit(9) initial dcl 11-8 assign_round internal static bit(9) initial dcl 11-8 assign_size_ck internal static bit(9) initial dcl 11-8 assign_zero internal static bit(9) initial dcl 11-8 atan_fun internal static bit(9) initial dcl 11-8 atand_fun internal static bit(9) initial dcl 11-8 b_format internal static bit(9) initial dcl 11-8 baseno_fun internal static bit(9) initial dcl 11-8 baseptr_fun internal static bit(9) initial dcl 11-8 binary_to_octal_string 000000 constant entry external dcl 2-38 binary_to_octal_var_string 000000 constant entry external dcl 2-43 bindec 000000 constant entry external dcl 2-23 bindec$vs 000000 constant entry external dcl 2-28 binoct 000000 constant entry external dcl 2-33 bit_pointer internal static bit(9) initial dcl 11-8 bit_to_char internal static bit(9) initial dcl 11-8 bit_to_word internal static bit(9) initial dcl 11-8 bit_type internal static bit(36) initial dcl 13-71 bitno_fun internal static bit(9) initial dcl 11-8 bits_per_binary_exponent internal static fixed bin(31,0) initial dcl 13-5 bits_per_character internal static fixed bin(31,0) initial dcl 13-5 bits_per_decimal_digit internal static fixed bin(31,0) initial dcl 13-5 bits_per_digit internal static fixed bin(31,1) initial dcl 13-69 bits_per_double internal static fixed bin(31,0) initial dcl 13-5 bits_per_half internal static fixed bin(31,0) initial dcl 13-5 bits_per_packed_ptr internal static fixed bin(31,0) initial dcl 13-5 bits_per_word internal static fixed bin(31,0) initial dcl 13-5 block_node internal static bit(9) initial dcl 10-5 bn_format internal static bit(9) initial dcl 11-8 bool_fun internal static bit(9) initial dcl 11-8 bound_ck internal static bit(9) initial dcl 11-8 bound_node internal static bit(9) initial dcl 10-5 builtin 000000 constant entry external dcl 1-17 builtin_type internal static bit(36) initial dcl 13-71 by_name_agg_node internal static bit(9) initial dcl 10-5 byte_fun internal static bit(9) initial dcl 11-8 c_format internal static bit(9) initial dcl 11-8 cat_string internal static bit(9) initial dcl 11-8 ceil_fun internal static bit(9) initial dcl 11-8 char_to_word internal static bit(9) initial dcl 11-8 char_type internal static bit(36) initial dcl 13-71 character_ internal static fixed bin(3,0) initial dcl 12-5 characters_per_double internal static fixed bin(31,0) initial dcl 13-5 characters_per_half internal static fixed bin(31,0) initial dcl 13-5 characters_per_word internal static fixed bin(31,0) initial dcl 13-5 charno_fun internal static bit(9) initial dcl 11-8 check_star_extents 000000 constant entry external dcl 1-27 clock_fun internal static bit(9) initial dcl 11-8 close_file internal static bit(9) initial dcl 11-8 codeptr_fun internal static bit(9) initial dcl 11-8 column_format internal static bit(9) initial dcl 11-8 compare_declaration 000000 constant entry external dcl 1-31 compare_expression 000000 constant entry external dcl 2-48 complex_fun internal static bit(9) initial dcl 11-8 complex_type internal static bit(36) initial dcl 13-71 conjg_fun internal static bit(9) initial dcl 11-8 constant_length 000000 constant entry external dcl 2-54 context_node internal static bit(9) initial dcl 10-5 context_processor 000000 constant entry external dcl 1-38 convert 000000 constant entry external dcl 2-60 convert$from_builtin 000000 constant entry external dcl 2-72 convert$to_integer 000000 constant entry external dcl 2-66 convert$to_target 000000 constant entry external dcl 2-88 convert$to_target_fb 000000 constant entry external dcl 2-82 convert$validate 000000 constant entry external dcl 2-78 copy_expression 000000 constant entry external dcl 2-94 copy_expression$copy_sons 000000 constant entry external dcl 2-99 copy_string internal static bit(9) initial dcl 11-8 copy_unique_expression 000000 constant entry external dcl 2-103 copy_words internal static bit(9) initial dcl 11-8 cos_fun internal static bit(9) initial dcl 11-8 cosd_fun internal static bit(9) initial dcl 11-8 create_array 000000 constant entry external dcl 2-108 create_block 000000 constant entry external dcl 2-112 create_bound 000000 constant entry external dcl 2-118 create_context 000000 constant entry external dcl 2-122 create_cross_reference 000000 constant entry external dcl 2-128 create_default 000000 constant entry external dcl 2-132 create_identifier 000000 constant entry external dcl 2-136 create_label 000000 constant entry external dcl 2-140 create_list 000000 constant entry external dcl 2-147 create_reference 000000 constant entry external dcl 2-158 create_statement 000000 constant entry external dcl 2-163 create_statement$prologue 000000 constant entry external dcl 2-171 create_storage 000000 constant entry external dcl 2-179 create_symbol 000000 constant entry external dcl 2-184 create_token 000000 constant entry external dcl 2-191 create_token$init_hash_table 000000 constant entry external dcl 2-197 create_token$protected 000000 constant entry external dcl 2-199 cross_reference_node internal static bit(9) initial dcl 10-5 dec_integer_type internal static bit(36) initial dcl 13-71 decbin 000000 constant entry external dcl 2-206 declare 000000 constant entry external dcl 1-41 declare_constant 000000 constant entry external dcl 2-211 declare_constant$bit 000000 constant entry external dcl 2-219 declare_constant$char 000000 constant entry external dcl 2-224 declare_constant$desc 000000 constant entry external dcl 2-229 declare_descriptor 000000 constant entry external dcl 2-239 declare_descriptor$ctl 000000 constant entry external dcl 2-249 declare_descriptor$param 000000 constant entry external dcl 2-259 declare_integer 000000 constant entry external dcl 2-269 declare_picture 000000 constant entry external dcl 2-274 declare_picture_temp 000000 constant entry external dcl 2-279 declare_pointer 000000 constant entry external dcl 2-287 declare_structure 000000 constant entry external dcl 1-44 declare_temporary 000000 constant entry external dcl 2-292 decode_node_id 000000 constant entry external dcl 2-300 decode_source_id 000000 constant entry external dcl 2-306 default_area_size internal static fixed bin(31,0) initial dcl 13-5 default_fix_bin_p internal static fixed bin(31,0) initial dcl 13-5 default_fix_dec_p internal static fixed bin(31,0) initial dcl 13-5 default_flt_bin_p internal static fixed bin(31,0) initial dcl 13-5 default_flt_dec_p internal static fixed bin(31,0) initial dcl 13-5 default_node internal static bit(9) initial dcl 10-5 defined_reference 000000 constant entry external dcl 1-47 delete_file internal static bit(9) initial dcl 11-8 desc_size internal static bit(9) initial dcl 11-8 div internal static bit(9) initial dcl 11-8 do_fun internal static bit(9) initial dcl 11-8 do_semantics 000000 constant entry external dcl 1-57 do_spec internal static bit(9) initial dcl 11-8 e_format internal static bit(9) initial dcl 11-8 empty_area internal static bit(9) initial dcl 11-8 enable_on internal static bit(9) initial dcl 11-8 entry_var_type internal static bit(36) initial dcl 13-71 environmentptr_fun internal static bit(9) initial dcl 11-8 equal internal static bit(9) initial dcl 11-8 error 000000 constant entry external dcl 2-314 error$omit_text 000000 constant entry external dcl 2-319 error_ 000000 constant entry external dcl 2-324 error_$finish 000000 constant entry external dcl 2-343 error_$initialize_error 000000 constant entry external dcl 2-341 error_$no_text 000000 constant entry external dcl 2-334 ex_prologue internal static bit(9) initial dcl 11-8 exp internal static bit(9) initial dcl 11-8 exp_fun internal static bit(9) initial dcl 11-8 expand_assign 000000 constant entry external dcl 1-62 expand_by_name 000000 constant entry external dcl 1-71 expand_infix 000000 constant entry external dcl 1-76 expand_initial 000000 constant entry external dcl 1-84 expand_prefix 000000 constant entry external dcl 1-89 expand_primitive 000000 constant entry external dcl 1-97 expression_semantics 000000 constant entry external dcl 1-105 f_format internal static bit(9) initial dcl 11-8 fill_refer 000000 constant entry external dcl 1-113 floor_fun internal static bit(9) initial dcl 11-8 format_value_node internal static bit(9) initial dcl 10-5 fortran_read internal static bit(9) initial dcl 11-8 fortran_write internal static bit(9) initial dcl 11-8 free_based internal static bit(9) initial dcl 11-8 free_ctl internal static bit(9) initial dcl 11-8 free_node 000000 constant entry external dcl 2-345 free_var internal static bit(9) initial dcl 11-8 ftn_file_manip internal static bit(9) initial dcl 11-8 ftn_trans_loop internal static bit(9) initial dcl 11-8 function 000000 constant entry external dcl 1-125 generic_selector 000000 constant entry external dcl 1-134 get_array_size 000000 constant entry external dcl 2-348 get_data_trans internal static bit(9) initial dcl 11-8 get_edit_trans internal static bit(9) initial dcl 11-8 get_file internal static bit(9) initial dcl 11-8 get_list_trans internal static bit(9) initial dcl 11-8 get_size 000000 constant entry external dcl 2-352 get_string internal static bit(9) initial dcl 11-8 greater_or_equal internal static bit(9) initial dcl 11-8 greater_than internal static bit(9) initial dcl 11-8 half_ internal static fixed bin(3,0) initial dcl 12-5 half_to_word internal static bit(9) initial dcl 11-8 imag_fun internal static bit(9) initial dcl 11-8 index_after_fun internal static bit(9) initial dcl 11-8 index_before_fun internal static bit(9) initial dcl 11-8 index_fun internal static bit(9) initial dcl 11-8 index_rev_fun internal static bit(9) initial dcl 11-8 integer_type internal static bit(36) initial dcl 13-71 io_data_list_semantics 000000 constant entry external dcl 1-143 io_data_list_semantics$format_list_semantics 000000 constant entry external dcl 1-120 io_semantics 000000 constant entry external dcl 1-148 join internal static bit(9) initial dcl 11-8 jump internal static bit(9) initial dcl 11-8 jump_false internal static bit(9) initial dcl 11-8 jump_if_eq internal static bit(9) initial dcl 11-8 jump_if_ge internal static bit(9) initial dcl 11-8 jump_if_gt internal static bit(9) initial dcl 11-8 jump_if_le internal static bit(9) initial dcl 11-8 jump_if_lt internal static bit(9) initial dcl 11-8 jump_if_ne internal static bit(9) initial dcl 11-8 jump_true internal static bit(9) initial dcl 11-8 l_parn internal static bit(9) initial dcl 11-8 label_array_element_node internal static bit(9) initial dcl 10-5 label_node internal static bit(9) initial dcl 10-5 length_fun internal static bit(9) initial dcl 11-8 less_or_equal internal static bit(9) initial dcl 11-8 less_than internal static bit(9) initial dcl 11-8 line_format internal static bit(9) initial dcl 11-8 list_node internal static bit(9) initial dcl 10-5 local_label_var_type internal static bit(36) initial dcl 13-71 locate_file internal static bit(9) initial dcl 11-8 lock_file internal static bit(9) initial dcl 11-8 lock_fun internal static bit(9) initial dcl 11-8 log10_fun internal static bit(9) initial dcl 11-8 log2_fun internal static bit(9) initial dcl 11-8 log_fun internal static bit(9) initial dcl 11-8 lookup 000000 constant entry external dcl 1-153 loop internal static bit(9) initial dcl 11-8 machine_state_node internal static bit(9) initial dcl 10-5 make_desc internal static bit(9) initial dcl 11-8 make_non_quick 000000 constant entry external dcl 1-162 match_arguments 000000 constant entry external dcl 1-166 max_area_size internal static fixed bin(31,0) initial dcl 13-5 max_bit_string internal static fixed bin(31,0) initial dcl 13-5 max_bit_string_constant internal static fixed bin(31,0) initial dcl 13-5 max_char_string internal static fixed bin(31,0) initial dcl 13-5 max_char_string_constant internal static fixed bin(31,0) initial dcl 13-5 max_fun internal static bit(9) initial dcl 11-8 max_identifier_length internal static fixed bin(31,0) initial dcl 13-5 max_index_register_value internal static fixed bin(31,0) initial dcl 13-5 max_length_precision internal static fixed bin(31,0) initial dcl 13-5 max_number_of_dimensions internal static fixed bin(31,0) initial dcl 13-5 max_number_of_operands internal static fixed bin(15,0) initial dcl 8-15 max_offset_precision internal static fixed bin(31,0) initial dcl 13-5 max_p_bin_or_dec internal static fixed bin(31,0) initial dcl 13-5 max_p_dec internal static fixed bin(31,0) initial dcl 13-5 max_p_fix_bin_1 internal static fixed bin(31,0) initial dcl 13-5 max_p_fix_bin_2 internal static fixed bin(31,0) initial dcl 13-5 max_p_flt_bin_1 internal static fixed bin(31,0) initial dcl 13-5 max_p_flt_bin_2 internal static fixed bin(31,0) initial dcl 13-5 max_scale internal static fixed bin(31,0) initial dcl 13-5 max_signed_index_register_value internal static fixed bin(31,0) initial dcl 13-5 max_signed_xreg_precision internal static fixed bin(31,0) initial dcl 13-5 max_uns_xreg_precision internal static fixed bin(31,0) initial dcl 13-5 max_words_per_variable internal static fixed bin(31,0) initial dcl 13-5 merge_attributes 000000 constant entry external dcl 2-355 min_area_size internal static fixed bin(31,0) initial dcl 13-5 min_fun internal static bit(9) initial dcl 11-8 min_scale internal static fixed bin(31,0) initial dcl 13-5 mod2_ internal static fixed bin(3,0) initial dcl 12-5 mod4_ internal static fixed bin(3,0) initial dcl 12-5 mod_byte internal static bit(9) initial dcl 11-8 mod_fun internal static bit(9) initial dcl 11-8 mod_half internal static bit(9) initial dcl 11-8 mod_word internal static bit(9) initial dcl 11-8 negate internal static bit(9) initial dcl 11-8 new automatic pointer dcl 111 nop internal static bit(9) initial dcl 11-8 not_bits internal static bit(9) initial dcl 11-8 not_equal internal static bit(9) initial dcl 11-8 off_fun internal static bit(9) initial dcl 11-8 offset_adder 000000 constant entry external dcl 1-172 open_file internal static bit(9) initial dcl 11-8 operator_semantics 000000 constant entry external dcl 1-184 optimizer 000000 constant entry external dcl 2-361 or_bits internal static bit(9) initial dcl 11-8 p automatic pointer dcl 15 pack internal static bit(9) initial dcl 11-8 packed_digits_per_character internal static fixed bin(31,0) initial dcl 13-5 page_format internal static bit(9) initial dcl 11-8 param_desc_ptr internal static bit(9) initial dcl 11-8 param_ptr internal static bit(9) initial dcl 11-8 parse_error 000000 constant entry external dcl 2-364 parse_error$no_text 000000 constant entry external dcl 2-368 picture_format internal static bit(9) initial dcl 11-8 pl1_error_print$listing_segment 000000 constant entry external dcl 2-384 pl1_error_print$write_out 000000 constant entry external dcl 2-372 pl1_mod_fun internal static bit(9) initial dcl 11-8 pl1_print$for_lex 000000 constant entry external dcl 2-418 pl1_print$non_varying 000000 constant entry external dcl 2-398 pl1_print$non_varying_nl 000000 constant entry external dcl 2-402 pl1_print$string_pointer 000000 constant entry external dcl 2-406 pl1_print$string_pointer_nl 000000 constant entry external dcl 2-410 pl1_print$unaligned_nl 000000 constant entry external dcl 2-414 pl1_print$varying 000000 constant entry external dcl 2-392 pl1_print$varying_nl 000000 constant entry external dcl 2-395 pointer_type internal static bit(36) initial dcl 13-71 prefix_plus internal static bit(9) initial dcl 11-8 propagate_bit 000000 constant entry external dcl 1-192 ptr_fun internal static bit(9) initial dcl 11-8 put_control internal static bit(9) initial dcl 11-8 put_data_trans internal static bit(9) initial dcl 11-8 put_edit_trans internal static bit(9) initial dcl 11-8 put_field internal static bit(9) initial dcl 11-8 put_field_chk internal static bit(9) initial dcl 11-8 put_file internal static bit(9) initial dcl 11-8 put_list_trans internal static bit(9) initial dcl 11-8 put_string internal static bit(9) initial dcl 11-8 r_format internal static bit(9) initial dcl 11-8 r_parn internal static bit(9) initial dcl 11-8 range_ck internal static bit(9) initial dcl 11-8 rank_fun internal static bit(9) initial dcl 11-8 read_file internal static bit(9) initial dcl 11-8 real_fun internal static bit(9) initial dcl 11-8 real_type internal static bit(36) initial dcl 13-71 record_io internal static bit(9) initial dcl 11-8 refer internal static bit(9) initial dcl 11-8 refer_extent 000000 constant entry external dcl 2-426 reference based structure level 1 dcl 9-3 reference_node internal static bit(9) initial dcl 10-5 rel_fun internal static bit(9) initial dcl 11-8 repeat_fun internal static bit(9) initial dcl 11-8 reserve$clear 000000 constant entry external dcl 2-430 reserve$declare_lib 000000 constant entry external dcl 2-434 reserve$read_lib 000000 constant entry external dcl 2-439 return_bits internal static bit(9) initial dcl 11-8 return_string internal static bit(9) initial dcl 11-8 return_value internal static bit(9) initial dcl 11-8 return_words internal static bit(9) initial dcl 11-8 reverse_fun internal static bit(9) initial dcl 11-8 revert_on internal static bit(9) initial dcl 11-8 rewrite_file internal static bit(9) initial dcl 11-8 round_fun internal static bit(9) initial dcl 11-8 search_fun internal static bit(9) initial dcl 11-8 search_rev_fun internal static bit(9) initial dcl 11-8 segno_fun internal static bit(9) initial dcl 11-8 semantic_translator 000000 constant entry external dcl 2-444 semantic_translator$abort 000000 constant entry external dcl 2-446 semantic_translator$call_es 000000 constant entry external dcl 1-196 semantic_translator$error 000000 constant entry external dcl 2-450 setbitno_fun internal static bit(9) initial dcl 11-8 setcharno_fun internal static bit(9) initial dcl 11-8 sf_par_node internal static bit(9) initial dcl 10-5 share_expression 000000 constant entry external dcl 2-454 sign_fun internal static bit(9) initial dcl 11-8 signal_on internal static bit(9) initial dcl 11-8 simplify_expression 000000 constant entry external dcl 1-205 simplify_offset 000000 constant entry external dcl 1-212 sin_fun internal static bit(9) initial dcl 11-8 sind_fun internal static bit(9) initial dcl 11-8 skip_format internal static bit(9) initial dcl 11-8 source_node internal static bit(9) initial dcl 10-5 sqrt_fun internal static bit(9) initial dcl 11-8 stack_ptr internal static bit(9) initial dcl 11-8 stackbaseptr_fun internal static bit(9) initial dcl 11-8 stackframeptr_fun internal static bit(9) initial dcl 11-8 stacq_fun internal static bit(9) initial dcl 11-8 statement_node internal static bit(9) initial dcl 10-5 std_arg_list internal static bit(9) initial dcl 11-8 std_call internal static bit(9) initial dcl 11-8 std_entry internal static bit(9) initial dcl 11-8 std_return internal static bit(9) initial dcl 11-8 stop internal static bit(9) initial dcl 11-8 storage_block_type internal static bit(36) initial dcl 13-71 stream_prep internal static bit(9) initial dcl 11-8 sub internal static bit(9) initial dcl 11-8 subscripter 000000 constant entry external dcl 1-216 symbol_node internal static bit(9) initial dcl 10-5 tan_fun internal static bit(9) initial dcl 11-8 tand_fun internal static bit(9) initial dcl 11-8 temporary_node internal static bit(9) initial dcl 10-5 terminate_trans internal static bit(9) initial dcl 11-8 token_node internal static bit(9) initial dcl 10-5 token_to_binary 000000 constant entry external dcl 2-459 translate_fun internal static bit(9) initial dcl 11-8 trunc_fun internal static bit(9) initial dcl 11-8 unlock_file internal static bit(9) initial dcl 11-8 unpack internal static bit(9) initial dcl 11-8 validate 000000 constant entry external dcl 1-225 vclock_fun internal static bit(9) initial dcl 11-8 verify_fun internal static bit(9) initial dcl 11-8 verify_ltrim_fun internal static bit(9) initial dcl 11-8 verify_rev_fun internal static bit(9) initial dcl 11-8 verify_rtrim_fun internal static bit(9) initial dcl 11-8 word_to_mod2 internal static bit(9) initial dcl 11-8 word_to_mod4 internal static bit(9) initial dcl 11-8 word_to_mod8 internal static bit(9) initial dcl 11-8 wordno_fun internal static bit(9) initial dcl 11-8 words_per_condition_var internal static fixed bin(31,0) initial dcl 13-5 words_per_entry_var internal static fixed bin(31,0) initial dcl 13-5 words_per_file_var internal static fixed bin(31,0) initial dcl 13-5 words_per_fix_bin_1 internal static fixed bin(31,0) initial dcl 13-5 words_per_fix_bin_2 internal static fixed bin(31,0) initial dcl 13-5 words_per_flt_bin_1 internal static fixed bin(31,0) initial dcl 13-5 words_per_flt_bin_2 internal static fixed bin(31,0) initial dcl 13-5 words_per_format internal static fixed bin(31,0) initial dcl 13-5 words_per_label_var internal static fixed bin(31,0) initial dcl 13-5 words_per_offset internal static fixed bin(31,0) initial dcl 13-5 words_per_packed_pointer internal static fixed bin(31,0) initial dcl 13-5 words_per_pointer internal static fixed bin(31,0) initial dcl 13-5 words_per_varying_string_header internal static fixed bin(31,0) initial dcl 13-5 write_file internal static bit(9) initial dcl 11-8 x_format internal static bit(9) initial dcl 11-8 xor_bits internal static bit(9) initial dcl 11-8 NAMES DECLARED BY EXPLICIT CONTEXT. convert_variable_offset 000602 constant entry internal dcl 145 ref 53 60 get_ptr 000467 constant entry internal dcl 109 ref 40 42 offset_adder 000105 constant entry external dcl 11 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 772 1010 712 1002 Length 1424 712 16 377 57 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME offset_adder 140 external procedure is an external procedure. get_ptr internal procedure shares stack frame of external procedure offset_adder. convert_variable_offset internal procedure shares stack frame of external procedure offset_adder. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME offset_adder 000100 b offset_adder 000102 q offset_adder 000104 cb offset_adder 000105 ub offset_adder 000106 mwb offset_adder 000107 n offset_adder 000110 bit_offset offset_adder 000120 t get_ptr 000130 converted_variable_offset convert_variable_offset THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac ext_entry trunc_fx1 trunc_fx2 divide_fx1 scaled_mod_fx1 THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. create_operator declare_constant$integer THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. pl1_stat_$eis_mode LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000076 38 000112 38 000116 38 000120 38 000122 40 000125 42 000137 44 000141 46 000147 48 000154 51 000167 53 000177 56 000217 58 000220 60 000231 65 000251 66 000257 68 000261 70 000265 72 000267 77 000303 79 000313 81 000340 83 000343 85 000351 86 000362 89 000364 90 000365 92 000371 93 000406 94 000413 95 000415 98 000416 100 000425 101 000442 102 000447 103 000463 104 000465 107 000466 109 000467 115 000471 117 000476 121 000516 122 000521 125 000522 130 000526 132 000542 133 000544 134 000547 135 000553 137 000576 139 000600 141 000601 145 000602 158 000604 161 000630 162 000645 165 000671 167 000676 ----------------------------------------------------------- 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