ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.0-1241>le_et_.alm ASSEMBLED ON: 12/10/86 1252.4 mst Wed OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 7.3 November 1986 ASSEMBLER CREATED: 11/26/86 1244.2 mst Wed 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Information Systems Inc., 1986 * 4 " * * 5 " *********************************************************** 6 7 " HISTORY COMMENTS: 8 " 1) change(86-08-12,Elhard), approve(86-08-12,MCR7505), 9 " audit(86-12-10,DGHowe), install(86-12-10,MR12.0-1241): 10 " Originally written to provide error messages used internally by le_. 11 " END HISTORY COMMENTS 12 13 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 14 """ " 15 """ Name: le_et_ " 16 """ Function: defines the internal error codes for the linkage " 17 """ editor subroutine. " 18 """ " 19 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 20 21 include et_macros 1-1 " Begin include file ...... et_macros.incl.alm 1-2 " Written 6/15/77 by Noel I. Morris 1-3 " Modified '82 so error code entries are in first page of segment. 1-4 1-5 " This include file contains macros for generating error tables 1-6 " for both system and non-system use. 1-7 1-8 " ET MACRO 1-9 " 1-10 " This macro is used to initialize the error table for either 1-11 " system or non-system use. It is invoked at the beginning of 1-12 " the error table as follows: 1-13 " 1-14 " et table_name{,system} 1-15 " 1-16 1-17 macro et 1 1-18 maclist on 2 1-19 3 1-20 name &1 4 1-21 5 1-22 &^=&2,system&[ 6 1-23 7 1-24 include stack_header 8 1-25 9 1-26 10 1-27 11 1-28 use codes 12 1-29 .code_start: 13 1-30 14 1-31 use past_codes 15 1-32 .code_end: 16 1-33 17 1-34 join /link/codes,past_codes 18 1-35 19 1-36 use messages 20 1-37 21 1-38 .trapproc: 22 1-39 epaq 0,ic 23 1-40 eax0 0,au 24 1-41 epbpsb sp|0 25 1-42 lprplp sb|stack_header.lot_ptr,*au 26 1-43 eax1 .code_start 27 1-44 .loop: stx0 lp|0,x1 28 1-45 eax1 1,x1 29 1-46 cmpx1 .code_end,du 30 1-47 tmi .loop-*,ic 31 1-48 short_return 32 1-49 33 1-50 firstref <*text>|.trapproc 34 1-51 35 1-52 &; use codes 36 1-53 use messages 37 1-54 38 1-55 join /text/codes,messages 39 1-56 40 1-57 &] 41 1-58 42 1-59 bool .segno,77777 43 1-60 44 1-61 maclist off 45 1-62 46 1-63 &end 1-64 1-65 1-66 1-67 " EC MACRO 1-68 " 1-69 " This macro is used to define an error code as shown: 1-70 " 1-71 " ec name,{short_mess},(long_mess) 1-72 " 1-73 " If more than a single name is to be defined for a given message, 1-74 " a list of names separated by commas and enclosed in parentheses 1-75 " must be given. short_mess must be 8 or less characters. If omitted, 1-76 " the short_mess will be set to the name. long_mess is enclosed 1-77 " in parentheses in order to cause ALM to ignore embedded blanks. Please 1-78 " note that double quote characters in either short_mess or long_mess 1-79 " must be doubled in order to make the ALM assembly work properly. 1-80 " Note that a macro invocation line terminated by a comma will cause that 1-81 " statement to be continued on the next line. 1-82 1-83 macro ec 1 1-84 use codes 2 1-85 3 1-86 maclist on,save 4 1-87 &(1 segdef &i 5 1-88 &) maclist restore 6 1-89 &(1&i: 7 1-90 &) maclist object,save 8 1-91 zero .segno,&U 9 1-92 maclist restore 10 1-93 use messages 11 1-94 &^=&l2,0&[ shortname &2 12 1-95 &; shortname &1 13 1-96 &] 14 1-97 &U: 15 1-98 maclist on,save 16 1-99 acc "&3" 17 1-100 18 1-101 maclist restore 19 1-102 &end 1-103 1-104 macro shortname 1 1-105 maclist on,save 2 1-106 aci "&1",8 3 1-107 maclist restore 4 1-108 &end 1-109 1-110 1-111 1-112 " A typical error table source program might have the following format: 1-113 " 1-114 " include et_macros 1-115 " 1-116 " et name_of_error_table 1-117 " 1-118 " ec error_code_1,ecode1,(This is error code 1.) 1-119 " 1-120 " ec error_code_2,ecode2,(This is error code 2.) 1-121 " 1-122 " : : : : 1-123 " 1-124 " ec error_code_n,ecoden,(This is the nth error code.) 1-125 " 1-126 " end 1-127 " 1-128 1-129 " End of include file ...... et_macros.incl.alm 1-130 22 000000 23 name le_et_ 24 25 et le_et_ 000000 name le_et_ include stack_header 2-1 " BEGIN INCLUDE FILE ... stack_header.incl.alm 3/72 Bill Silver 2-2 " 2-3 " modified 7/76 by M. Weaver for *system links and more system use of areas 2-4 " modified 3/77 by M. Weaver to add rnt_ptr 2-5 " modified 7/77 by S. Webber to add run_unit_depth and assign_linkage_ptr 2-6 " modified 6/83 by J. Ives to add trace_frames and in_trace. 2-7 2-8 " HISTORY COMMENTS: 2-9 " 1) change(86-06-24,DGHowe), approve(86-06-24,MCR7396), 2-10 " audit(86-08-05,Schroth), install(86-11-03,MR12.0-1206): 2-11 " added the heap_header_ptr definition 2-12 " 2) change(86-08-12,Kissel), approve(86-08-12,MCR7473), 2-13 " audit(86-10-10,Fawcett), install(86-11-03,MR12.0-1206): 2-14 " Modified to support control point management. These changes were 2-15 " actually made in February 1985 by G. Palter. 2-16 " 3) change(86-10-22,Fawcett), approve(86-10-22,MCR7473), 2-17 " audit(86-10-22,Farley), install(86-11-03,MR12.0-1206): 2-18 " Remove the old_lot pointer and replace it with cpm_data_ptr. Use the 18 2-19 " bit pad after cur_lot_size for the cpm_enabled. This was done to save 2-20 " some space int the stack header and change the cpd_ptr unal to 2-21 " cpm_data_ptr (ITS pair). 2-22 " END HISTORY COMMENTS 2-23 000004 2-24 equ stack_header.cpm_data_ptr,4 ptr to control point for this stack 000006 2-25 equ stack_header.combined_stat_ptr,6 ptr to separate static area 2-26 000010 2-27 equ stack_header.clr_ptr,8 ptr to area containing linkage sections 000012 2-28 equ stack_header.max_lot_size,10 number of words allowed in lot (DU) 000012 2-29 equ stack_header.main_proc_invoked,10 nonzero if main proc was invoked in run unit (DL) 000012 2-30 equ stack_header.run_unit_depth,10 number of active run units stacked (DL) 000013 2-31 equ stack_header.cur_lot_size,11 DU number of words (entries) in lot 000013 2-32 equ stack_header.cpm_enabled,11 DL non-zero if control point management is enabled 000014 2-33 equ stack_header.system_free_ptr,12 ptr to system storage area 000016 2-34 equ stack_header.user_free_ptr,14 ptr to user storage area 2-35 000020 2-36 equ stack_header.parent_ptr,16 ptr to parent stack or null 000022 2-37 equ stack_header.stack_begin_ptr,18 ptr to first stack frame 000024 2-38 equ stack_header.stack_end_ptr,20 ptr to next useable stack frame 000026 2-39 equ stack_header.lot_ptr,22 ptr to the lot for the current ring 2-40 000030 2-41 equ stack_header.signal_ptr,24 ptr to signal proc for current ring 000032 2-42 equ stack_header.bar_mode_sp,26 value of sp before entering bar mode 000034 2-43 equ stack_header.pl1_operators_ptr,28 ptr: pl1_operators_$operator_table 000036 2-44 equ stack_header.call_op_ptr,30 ptr to standard call operator 2-45 000040 2-46 equ stack_header.push_op_ptr,32 ptr to standard push operator 000042 2-47 equ stack_header.return_op_ptr,34 ptr to standard return operator 000044 2-48 equ stack_header.ret_no_pop_op_ptr,36 ptr: stand. return/ no pop operator 000046 2-49 equ stack_header.entry_op_ptr,38 ptr to standard entry operator 2-50 000050 2-51 equ stack_header.trans_op_tv_ptr,40 ptr to table of translator operator ptrs 000052 2-52 equ stack_header.isot_ptr,42 pointer to ISOT 000054 2-53 equ stack_header.sct_ptr,44 pointer to System Condition Table 000056 2-54 equ stack_header.unwinder_ptr,46 pointer to unwinder for current ring 2-55 000060 2-56 equ stack_header.sys_link_info_ptr,48 ptr to *system link name table 000062 2-57 equ stack_header.rnt_ptr,50 ptr to reference name table 000064 2-58 equ stack_header.ect_ptr,52 ptr to event channel table 000066 2-59 equ stack_header.assign_linkage_ptr,54 ptr to area for hcs_$assign_linkage calls 000070 2-60 equ stack_header.heap_header_ptr,56 ptr to heap header. 000072 2-61 equ stack_header.trace_frames,58 stack of trace_catch_ frames 000073 2-62 equ stach_header.trace_top_ptr,59 trace pointer 000074 2-63 equ stack_header.in_trace,60 trace antirecurse bit 000100 2-64 equ stack_header_end,64 length of stack header 2-65 2-66 2-67 2-68 000000 2-69 equ trace_frames.count,0 number of trace frames on stack 000001 2-70 equ trace_frames.top_ptr,1 packed pointer to top one 2-71 2-72 " The following constant is an offset within the pl1 operators table. 2-73 " It references a transfer vector table. 2-74 000551 2-75 bool tv_offset,551 2-76 2-77 2-78 " The following constants are offsets within this transfer vector table. 2-79 001170 2-80 equ call_offset,tv_offset+271 001171 2-81 equ push_offset,tv_offset+272 001172 2-82 equ return_offset,tv_offset+273 001173 2-83 equ return_no_pop_offset,tv_offset+274 001174 2-84 equ entry_offset,tv_offset+275 2-85 2-86 2-87 " END INCLUDE FILE stack_header.incl.alm use codes 000010 .code_start: use past_codes 000046 .code_end: join /link/codes,past_codes use messages 000000 .trapproc: 000000 aa 000000 2130 04 epaq 0,ic 000001 aa 000000 6200 01 eax0 0,au 000002 aa 6 00000 3731 00 epbpsb sp|0 000003 aa 7 00026 7641 61 lprplp sb|stack_header.lot_ptr,*au 000004 8a 000010 6210 00 eax1 .code_start 000005 aa 4 00000 7401 11 .loop: stx0 lp|0,x1 000006 aa 000001 6210 11 eax1 1,x1 000007 8a 000046 1010 03 cmpx1 .code_end,du 000010 aa 777775 6040 04 tmi .loop-*,ic 000011 aa 7 00044 7101 20 short_return 000012 firstref <*text>|.trapproc 077777 bool .segno,77777 26 27 ec bad_def_reference,bddefref, 28 (Definition section reference does not refer to a definition.) 000010 segdef bad_def_reference 000010 a0 077777 000014 000012 aa 142 144 144 145 aci "bddefref",8 000013 aa 146 162 145 146 000014 aa 074 104 145 146 acc "Definition section reference does not refer to a definition." 000015 aa 151 156 151 164 000016 aa 151 157 156 040 000017 aa 163 145 143 164 000020 aa 151 157 156 040 000021 aa 162 145 146 145 000022 aa 162 145 156 143 000023 aa 145 040 144 157 000024 aa 145 163 040 156 000025 aa 157 164 040 162 000026 aa 145 146 145 162 000027 aa 040 164 157 040 000030 aa 141 040 144 145 000031 aa 146 151 156 151 000032 aa 164 151 157 156 000033 aa 056 000 000 000 29 30 " a word with definition relinfo had a value which didn't refer to a 31 " definition. 32 33 ec bad_ep_starname,bdepstar, 34 (Entrypoint starname given is invalid.) 000011 segdef bad_ep_starname 000011 a0 077777 000036 000034 aa 142 144 145 160 aci "bdepstar",8 000035 aa 163 164 141 162 000036 aa 045 105 156 164 acc "Entrypoint starname given is invalid." 000037 aa 162 171 160 157 000040 aa 151 156 164 040 000041 aa 163 164 141 162 000042 aa 156 141 155 145 000043 aa 040 147 151 166 000044 aa 145 156 040 151 000045 aa 163 040 151 156 000046 aa 166 141 154 151 000047 aa 144 056 000 000 35 36 " the starname supplied as an entrypoint specification is invalid. 37 38 ec bad_instr_format,bdinstfm, 39 (Invalid instruction format found.) 000012 segdef bad_instr_format 000012 a0 077777 000052 000050 aa 142 144 151 156 aci "bdinstfm",8 000051 aa 163 164 146 155 000052 aa 041 111 156 166 acc "Invalid instruction format found." 000053 aa 141 154 151 144 000054 aa 040 151 156 163 000055 aa 164 162 165 143 000056 aa 164 151 157 156 000057 aa 040 146 157 162 000060 aa 155 141 164 040 000061 aa 146 157 165 156 000062 aa 144 056 000 000 40 41 " instruction with link15 relocation has an invalid op-code, modifier, or 42 " use_pr bit 43 44 ec bad_link_class,badlkcls, 45 (Invalid class found in Self-Base or Self-Offsetname link.) 000013 segdef bad_link_class 000013 a0 077777 000065 000063 aa 142 141 144 154 aci "badlkcls",8 000064 aa 153 143 154 163 000065 aa 071 111 156 166 acc "Invalid class found in Self-Base or Self-Offsetname link." 000066 aa 141 154 151 144 000067 aa 040 143 154 141 000070 aa 163 163 040 146 000071 aa 157 165 156 144 000072 aa 040 151 156 040 000073 aa 123 145 154 146 000074 aa 055 102 141 163 000075 aa 145 040 157 162 000076 aa 040 123 145 154 000077 aa 146 055 117 146 000100 aa 146 163 145 164 000101 aa 156 141 155 145 000102 aa 040 154 151 156 000103 aa 153 056 000 000 46 47 " a link class for a type 1 or 5 link was invalid. 48 49 ec bad_link_ref,badlkref, 50 (Linkage section reference does not refer to a link.) 000014 segdef bad_link_ref 000014 a0 077777 000106 000104 aa 142 141 144 154 aci "badlkref",8 000105 aa 153 162 145 146 000106 aa 063 114 151 156 acc "Linkage section reference does not refer to a link." 000107 aa 153 141 147 145 000110 aa 040 163 145 143 000111 aa 164 151 157 156 000112 aa 040 162 145 146 000113 aa 145 162 145 156 000114 aa 143 145 040 144 000115 aa 157 145 163 040 000116 aa 156 157 164 040 000117 aa 162 145 146 145 000120 aa 162 040 164 157 000121 aa 040 141 040 154 000122 aa 151 156 153 056 51 52 " le_snap_ was called to resolve a link reference that was not within the 53 " link array. 54 55 ec bad_link_type,badlktyp, 56 (Invalid or unsupported link type found.) 000015 segdef bad_link_type 000015 a0 077777 000125 000123 aa 142 141 144 154 aci "badlktyp",8 000124 aa 153 164 171 160 000125 aa 047 111 156 166 acc "Invalid or unsupported link type found." 000126 aa 141 154 151 144 000127 aa 040 157 162 040 000130 aa 165 156 163 165 000131 aa 160 160 157 162 000132 aa 164 145 144 040 000133 aa 154 151 156 153 000134 aa 040 164 171 160 000135 aa 145 040 146 157 000136 aa 165 156 144 056 57 58 " le_snap_ was called to resolve a link with a type other than 1, 3, 4, or 5. 59 60 ec cant_delete_table,nodeltbl, 61 (Symbol table not removed because it may be needed for data-directed I/O.) 000016 segdef cant_delete_table 000016 a0 077777 000141 000137 aa 156 157 144 145 aci "nodeltbl",8 000140 aa 154 164 142 154 000141 aa 110 123 171 155 acc "Symbol table not removed because it may be needed for data-directed I/O." 000142 aa 142 157 154 040 000143 aa 164 141 142 154 000144 aa 145 040 156 157 000145 aa 164 040 162 145 000146 aa 155 157 166 145 000147 aa 144 040 142 145 000150 aa 143 141 165 163 000151 aa 145 040 151 164 000152 aa 040 155 141 171 000153 aa 040 142 145 040 000154 aa 156 145 145 144 000155 aa 145 144 040 146 000156 aa 157 162 040 144 000157 aa 141 164 141 055 000160 aa 144 151 162 145 000161 aa 143 164 145 144 000162 aa 040 111 057 117 000163 aa 056 000 000 000 62 63 " the user requested that the table be deleted but it is required by the 64 " runtime to perform data-directed I/O. 65 66 ec component_too_big,comptobg, 67 (An input item is larger than the requested maximum component size.) 000017 segdef component_too_big 000017 a0 077777 000166 000164 aa 143 157 155 160 aci "comptobg",8 000165 aa 164 157 142 147 000166 aa 102 101 156 040 acc "An input item is larger than the requested maximum component size." 000167 aa 151 156 160 165 000170 aa 164 040 151 164 000171 aa 145 155 040 151 000172 aa 163 040 154 141 000173 aa 162 147 145 162 000174 aa 040 164 150 141 000175 aa 156 040 164 150 000176 aa 145 040 162 145 000177 aa 161 165 145 163 000200 aa 164 145 144 040 000201 aa 155 141 170 151 000202 aa 155 165 155 040 000203 aa 143 157 155 160 000204 aa 157 156 145 156 000205 aa 164 040 163 151 000206 aa 172 145 056 000 68 69 " one of the input components is larger than the requested maximum output 70 " component size, so an oversize component has been created to hold it. 71 72 ec dup_ep_option,dupepopt, 73 (Duplicate retain, delete, or no_link options supplied.) 000020 segdef dup_ep_option 000020 a0 077777 000211 000207 aa 144 165 160 145 aci "dupepopt",8 000210 aa 160 157 160 164 000211 aa 066 104 165 160 acc "Duplicate retain, delete, or no_link options supplied." 000212 aa 154 151 143 141 000213 aa 164 145 040 162 000214 aa 145 164 141 151 000215 aa 156 054 040 144 000216 aa 145 154 145 164 000217 aa 145 054 040 157 000220 aa 162 040 156 157 000221 aa 137 154 151 156 000222 aa 153 040 157 160 000223 aa 164 151 157 156 000224 aa 163 040 163 165 000225 aa 160 160 154 151 000226 aa 145 144 056 000 74 75 " two or more retain, delete, or no_link options were found with the same 76 " definition specification 77 78 ec dup_global_option,dupglopt, 79 (Duplicate global retain, delete, or no_link options supplied.) 000021 segdef dup_global_option 000021 a0 077777 000231 000227 aa 144 165 160 147 aci "dupglopt",8 000230 aa 154 157 160 164 000231 aa 075 104 165 160 acc "Duplicate global retain, delete, or no_link options supplied." 000232 aa 154 151 143 141 000233 aa 164 145 040 147 000234 aa 154 157 142 141 000235 aa 154 040 162 145 000236 aa 164 141 151 156 000237 aa 054 040 144 145 000240 aa 154 145 164 145 000241 aa 054 040 157 162 000242 aa 040 156 157 137 000243 aa 154 151 156 153 000244 aa 040 157 160 164 000245 aa 151 157 156 163 000246 aa 040 163 165 160 000247 aa 160 154 151 145 000250 aa 144 056 000 000 80 81 " two or more retain, delete, or no_link options were found with a **$** 82 " specification 83 84 ec dup_global_table_opt,dpgtblop, 85 (Multiple global table/no_table options were supplied.) 000022 segdef dup_global_table_opt 000022 a0 077777 000253 000251 aa 144 160 147 164 aci "dpgtblop",8 000252 aa 142 154 157 160 000253 aa 065 115 165 154 acc "Multiple global table/no_table options were supplied." 000254 aa 164 151 160 154 000255 aa 145 040 147 154 000256 aa 157 142 141 154 000257 aa 040 164 141 142 000260 aa 154 145 057 156 000261 aa 157 137 164 141 000262 aa 142 154 145 040 000263 aa 157 160 164 151 000264 aa 157 156 163 040 000265 aa 167 145 162 145 000266 aa 040 163 165 160 000267 aa 160 154 151 145 000270 aa 144 056 000 000 86 87 " two or more global table or no_table options were encountered 88 89 ec dup_input_component,dpincomp, 90 (Component found more than once in input specification.) 000023 segdef dup_input_component 000023 a0 077777 000273 000271 aa 144 160 151 156 aci "dpincomp",8 000272 aa 143 157 155 160 000273 aa 066 103 157 155 acc "Component found more than once in input specification." 000274 aa 160 157 156 145 000275 aa 156 164 040 146 000276 aa 157 165 156 144 000277 aa 040 155 157 162 000300 aa 145 040 164 150 000301 aa 141 156 040 157 000302 aa 156 143 145 040 000303 aa 151 156 040 151 000304 aa 156 160 165 164 000305 aa 040 163 160 145 000306 aa 143 151 146 151 000307 aa 143 141 164 151 000310 aa 157 156 056 000 91 92 " more than one occurrance of a single input component were found in the 93 " input options. 94 95 ec dup_segname,dupsegnm, 96 (Duplicate segname definition found in input component.) 000024 segdef dup_segname 000024 a0 077777 000313 000311 aa 144 165 160 163 aci "dupsegnm",8 000312 aa 145 147 156 155 000313 aa 066 104 165 160 acc "Duplicate segname definition found in input component." 000314 aa 154 151 143 141 000315 aa 164 145 040 163 000316 aa 145 147 156 141 000317 aa 155 145 040 144 000320 aa 145 146 151 156 000321 aa 151 164 151 157 000322 aa 156 040 146 157 000323 aa 165 156 144 040 000324 aa 151 156 040 151 000325 aa 156 160 165 164 000326 aa 040 143 157 155 000327 aa 160 157 156 145 000330 aa 156 164 056 000 97 98 " a segname definitions was found in a required (PATH) input component 99 " which has the same name as another required segname. 100 101 ec dup_table_opt,duptblop, 102 (Multiple table/no_table options were found for the same component.) 000025 segdef dup_table_opt 000025 a0 077777 000333 000331 aa 144 165 160 164 aci "duptblop",8 000332 aa 142 154 157 160 000333 aa 102 115 165 154 acc "Multiple table/no_table options were found for the same component." 000334 aa 164 151 160 154 000335 aa 145 040 164 141 000336 aa 142 154 145 057 000337 aa 156 157 137 164 000340 aa 141 142 154 145 000341 aa 040 157 160 164 000342 aa 151 157 156 163 000343 aa 040 167 145 162 000344 aa 145 040 146 157 000345 aa 165 156 144 040 000346 aa 146 157 162 040 000347 aa 164 150 145 040 000350 aa 163 141 155 145 000351 aa 040 143 157 155 000352 aa 160 157 156 145 000353 aa 156 164 056 000 103 104 " two or more table/no_table options exist referring to the same component 105 106 ec entrypoints_inaccessible,entinacc, 107 (Entrypoints in component are inaccessible since no segnames could be added.) 000026 segdef entrypoints_inaccessible 000026 a0 077777 000356 000354 aa 145 156 164 151 aci "entinacc",8 000355 aa 156 141 143 143 000356 aa 113 105 156 164 acc "Entrypoints in component are inaccessible since no segnames could be added." 000357 aa 162 171 160 157 000360 aa 151 156 164 163 000361 aa 040 151 156 040 000362 aa 143 157 155 160 000363 aa 157 156 145 156 000364 aa 164 040 141 162 000365 aa 145 040 151 156 000366 aa 141 143 143 145 000367 aa 163 163 151 142 000370 aa 154 145 040 163 000371 aa 151 156 143 145 000372 aa 040 156 157 040 000373 aa 163 145 147 156 000374 aa 141 155 145 163 000375 aa 040 143 157 165 000376 aa 154 144 040 142 000377 aa 145 040 141 144 000400 aa 144 145 144 056 108 109 " all of the segnames being added were duplicates, so the block has been 110 " ignored 111 112 ec has_break_map,hasbrkmp, 113 (Input component contains breakpoints.) 000027 segdef has_break_map 000027 a0 077777 000403 000401 aa 150 141 163 142 aci "hasbrkmp",8 000402 aa 162 153 155 160 000403 aa 045 111 156 160 acc "Input component contains breakpoints." 000404 aa 165 164 040 143 000405 aa 157 155 160 157 000406 aa 156 145 156 164 000407 aa 040 143 157 156 000410 aa 164 141 151 156 000411 aa 163 040 142 162 000412 aa 145 141 153 160 000413 aa 157 151 156 164 000414 aa 163 056 000 000 114 115 " An input component has a break map, and therefor cannot be used. 116 117 ec implementation_error,imperror, 118 (Implementation error. Please contact maintanance personnel.) 000030 segdef implementation_error 000030 a0 077777 000417 000415 aa 151 155 160 145 aci "imperror",8 000416 aa 162 162 157 162 000417 aa 074 111 155 160 acc "Implementation error. Please contact maintanance personnel." 000420 aa 154 145 155 145 000421 aa 156 164 141 164 000422 aa 151 157 156 040 000423 aa 145 162 162 157 000424 aa 162 056 040 040 000425 aa 120 154 145 141 000426 aa 163 145 040 143 000427 aa 157 156 164 141 000430 aa 143 164 040 155 000431 aa 141 151 156 164 000432 aa 141 156 141 156 000433 aa 143 145 040 160 000434 aa 145 162 163 157 000435 aa 156 156 145 154 000436 aa 056 000 000 000 119 120 " some condition which should never occur, has. 121 122 ec incompatible_init,bad_init, 123 (Incompatible initializations found (area with non-area).) 000031 segdef incompatible_init 000031 a0 077777 000441 000437 aa 142 141 144 137 aci "bad_init",8 000440 aa 151 156 151 164 000441 aa 070 111 156 143 acc "Incompatible initializations found (area with non-area)." 000442 aa 157 155 160 141 000443 aa 164 151 142 154 000444 aa 145 040 151 156 000445 aa 151 164 151 141 000446 aa 154 151 172 141 000447 aa 164 151 157 156 000450 aa 163 040 146 157 000451 aa 165 156 144 040 000452 aa 050 141 162 145 000453 aa 141 040 167 151 000454 aa 164 150 040 156 000455 aa 157 156 055 141 000456 aa 162 145 141 051 000457 aa 056 000 000 000 124 125 " init infos for a variable had a mix of area and non-area init types. 126 127 ec input_output_overlap,inoutmix, 128 (Output segment is the same as a previously used segment.) 000032 segdef input_output_overlap 000032 a0 077777 000462 000460 aa 151 156 157 165 aci "inoutmix",8 000461 aa 164 155 151 170 000462 aa 070 117 165 164 acc "Output segment is the same as a previously used segment." 000463 aa 160 165 164 040 000464 aa 163 145 147 155 000465 aa 145 156 164 040 000466 aa 151 163 040 164 000467 aa 150 145 040 163 000470 aa 141 155 145 040 000471 aa 141 163 040 141 000472 aa 040 160 162 145 000473 aa 166 151 157 165 000474 aa 163 154 171 040 000475 aa 165 163 145 144 000476 aa 040 163 145 147 000477 aa 155 145 156 164 000500 aa 056 000 000 000 129 130 " a segment used for output (list or binary) is the same as an input 131 " component or a previously emitted output. 132 133 ec invalid_relinfo,badrelif, 134 (Invalid relocation information found.) 000033 segdef invalid_relinfo 000033 a0 077777 000503 000501 aa 142 141 144 162 aci "badrelif",8 000502 aa 145 154 151 146 000503 aa 045 111 156 166 acc "Invalid relocation information found." 000504 aa 141 154 151 144 000505 aa 040 162 145 154 000506 aa 157 143 141 164 000507 aa 151 157 156 040 000510 aa 151 156 146 157 000511 aa 162 155 141 164 000512 aa 151 157 156 040 000513 aa 146 157 165 156 000514 aa 144 056 000 000 135 136 " link15 or static15 relocation found for thr right side of a word or a 137 " totally unknown relocation code found. 138 139 ec link_not_found,lknotfnd, 140 (Unable to find a link matching linkage section reference.) 000034 segdef link_not_found 000034 a0 077777 000517 000515 aa 154 153 156 157 aci "lknotfnd",8 000516 aa 164 146 156 144 000517 aa 071 125 156 141 acc "Unable to find a link matching linkage section reference." 000520 aa 142 154 145 040 000521 aa 164 157 040 146 000522 aa 151 156 144 040 000523 aa 141 040 154 151 000524 aa 156 153 040 155 000525 aa 141 164 143 150 000526 aa 151 156 147 040 000527 aa 154 151 156 153 000530 aa 141 147 145 040 000531 aa 163 145 143 164 000532 aa 151 157 156 040 000533 aa 162 145 146 145 000534 aa 162 145 156 143 000535 aa 145 056 000 000 141 142 " A link reference could not be resolved to a link table entry 143 144 ec multiple_inits,multinit, 145 (Multiple initializations found) 000035 segdef multiple_inits 000035 a0 077777 000540 000536 aa 155 165 154 164 aci "multinit",8 000537 aa 151 156 151 164 000540 aa 036 115 165 154 acc "Multiple initializations found" 000541 aa 164 151 160 154 000542 aa 145 040 151 156 000543 aa 151 164 151 141 000544 aa 154 151 172 141 000545 aa 164 151 157 156 000546 aa 163 040 146 157 000547 aa 165 156 144 000 146 147 " More than 1 init info was found for a single external or heap variable 148 149 ec nonrelocatable,nonreloc, 150 (Input segment is not a relocatable object.) 000036 segdef nonrelocatable 000036 a0 077777 000552 000550 aa 156 157 156 162 aci "nonreloc",8 000551 aa 145 154 157 143 000552 aa 052 111 156 160 acc "Input segment is not a relocatable object." 000553 aa 165 164 040 163 000554 aa 145 147 155 145 000555 aa 156 164 040 151 000556 aa 163 040 156 157 000557 aa 164 040 141 040 000560 aa 162 145 154 157 000561 aa 143 141 164 141 000562 aa 142 154 145 040 000563 aa 157 142 152 145 000564 aa 143 164 056 000 151 152 " There is no relocation info in the segment so we can't use it. 153 154 ec nonstandard_object,nonstdob, 155 (Segment is not in standard object format.) 000037 segdef nonstandard_object 000037 a0 077777 000567 000565 aa 156 157 156 163 aci "nonstdob",8 000566 aa 164 144 157 142 000567 aa 051 123 145 147 acc "Segment is not in standard object format." 000570 aa 155 145 156 164 000571 aa 040 151 163 040 000572 aa 156 157 164 040 000573 aa 151 156 040 163 000574 aa 164 141 156 144 000575 aa 141 162 144 040 000576 aa 157 142 152 145 000577 aa 143 164 040 146 000600 aa 157 162 155 141 000601 aa 164 056 000 000 156 157 " Segment specified as input is not in standard format. 158 159 ec not_an_object,notanobj, 160 (Specified input or library component is not an executable object.) 000040 segdef not_an_object 000040 a0 077777 000604 000602 aa 156 157 164 141 aci "notanobj",8 000603 aa 156 157 142 152 000604 aa 101 123 160 145 acc "Specified input or library component is not an executable object." 000605 aa 143 151 146 151 000606 aa 145 144 040 151 000607 aa 156 160 165 164 000610 aa 040 157 162 040 000611 aa 154 151 142 162 000612 aa 141 162 171 040 000613 aa 143 157 155 160 000614 aa 157 156 145 156 000615 aa 164 040 151 163 000616 aa 040 156 157 164 000617 aa 040 141 156 040 000620 aa 145 170 145 143 000621 aa 165 164 141 142 000622 aa 154 145 040 157 000623 aa 142 152 145 143 000624 aa 164 056 000 000 161 162 " Pointer given does not point to an object segment. 163 164 ec not_linkfault,notlkflt, 165 (Tag found in link is not linkfault.) 000041 segdef not_linkfault 000041 a0 077777 000627 000625 aa 156 157 164 154 aci "notlkflt",8 000626 aa 153 146 154 164 000627 aa 043 124 141 147 acc "Tag found in link is not linkfault." 000630 aa 040 146 157 165 000631 aa 156 144 040 151 000632 aa 156 040 154 151 000633 aa 156 153 040 151 000634 aa 163 040 156 157 000635 aa 164 040 154 151 000636 aa 156 153 146 141 000637 aa 165 154 164 056 166 167 " What should be a link in a linkage section does not contain a fault tag 2 168 " in the tag field. 169 170 ec recursive_invocation,recurse, 171 (This procedure may not be invoked recursively.) 000042 segdef recursive_invocation 000042 a0 077777 000642 000640 aa 162 145 143 165 aci "recurse",8 000641 aa 162 163 145 040 000642 aa 056 124 150 151 acc "This procedure may not be invoked recursively." 000643 aa 163 040 160 162 000644 aa 157 143 145 144 000645 aa 165 162 145 040 000646 aa 155 141 171 040 000647 aa 156 157 164 040 000650 aa 142 145 040 151 000651 aa 156 166 157 153 000652 aa 145 144 040 162 000653 aa 145 143 165 162 000654 aa 163 151 166 145 000655 aa 154 171 056 000 172 173 " the le_ subroutine has been recursively invoked. 174 175 ec too_many_options,tomnyopt, 176 (Too many options, input paths, and library paths specified.) 000043 segdef too_many_options 000043 a0 077777 000660 000656 aa 164 157 155 156 aci "tomnyopt",8 000657 aa 171 157 160 164 000660 aa 073 124 157 157 acc "Too many options, input paths, and library paths specified." 000661 aa 040 155 141 156 000662 aa 171 040 157 160 000663 aa 164 151 157 156 000664 aa 163 054 040 151 000665 aa 156 160 165 164 000666 aa 040 160 141 164 000667 aa 150 163 054 040 000670 aa 141 156 144 040 000671 aa 154 151 142 162 000672 aa 141 162 171 040 000673 aa 160 141 164 150 000674 aa 163 040 163 160 000675 aa 145 143 151 146 000676 aa 151 145 144 056 177 178 " too many options were given. the option array has become larger than a 179 " single segment. 180 181 ec unsupported_relinfo,unsuprel, 182 (Unsupported relocation code found.) 000044 segdef unsupported_relinfo 000044 a0 077777 000701 000677 aa 165 156 163 165 aci "unsuprel",8 000700 aa 160 162 145 154 000701 aa 042 125 156 163 acc "Unsupported relocation code found." 000702 aa 165 160 160 157 000703 aa 162 164 145 144 000704 aa 040 162 145 154 000705 aa 157 143 141 164 000706 aa 151 157 156 040 000707 aa 143 157 144 145 000710 aa 040 146 157 165 000711 aa 156 144 056 000 183 184 " a relocation code not supported by the linkage editor has been found. 185 " particulary, a definition relocation code in the symbol section. 186 187 ec unused_option,unusedop, 188 (Definition option did not match any definitions.) 000045 segdef unused_option 000045 a0 077777 000714 000712 aa 165 156 165 163 aci "unusedop",8 000713 aa 145 144 157 160 000714 aa 060 104 145 146 acc "Definition option did not match any definitions." 000715 aa 151 156 151 164 000716 aa 151 157 156 040 000717 aa 157 160 164 151 000720 aa 157 156 040 144 000721 aa 151 144 040 156 000722 aa 157 164 040 155 000723 aa 141 164 143 150 000724 aa 040 141 156 171 000725 aa 040 144 145 146 000726 aa 151 156 151 164 000727 aa 151 157 156 163 000730 aa 056 000 000 000 189 190 " a definition disposition option did not match any definitions, either 191 " because it didn't match any, or all that it did match were covered by 192 " more specific options 193 194 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000732 5a 000003 000000 000733 5a 000365 600000 000734 aa 000000 000000 000735 55 000010 000002 000736 5a 000002 400003 000737 55 000006 000010 000740 aa 006 154 145 137 000741 aa 145 164 137 000 000742 55 000017 000003 000743 2a 000045 400001 000744 55 000013 000003 000745 aa 015 165 156 165 unused_option 000746 aa 163 145 144 137 000747 aa 157 160 164 151 000750 aa 157 156 000 000 000751 55 000027 000010 000752 2a 000044 400001 000753 55 000022 000003 000754 aa 023 165 156 163 unsupported_relinfo 000755 aa 165 160 160 157 000756 aa 162 164 145 144 000757 aa 137 162 145 154 000760 aa 151 156 146 157 000761 55 000037 000017 000762 2a 000043 400001 000763 55 000032 000003 000764 aa 020 164 157 157 too_many_options 000765 aa 137 155 141 156 000766 aa 171 137 157 160 000767 aa 164 151 157 156 000770 aa 163 000 000 000 000771 55 000050 000027 000772 2a 000042 400001 000773 55 000042 000003 000774 aa 024 162 145 143 recursive_invocation 000775 aa 165 162 163 151 000776 aa 166 145 137 151 000777 aa 156 166 157 143 001000 aa 141 164 151 157 001001 aa 156 000 000 000 001002 55 000057 000037 001003 2a 000041 400001 001004 55 000053 000003 001005 aa 015 156 157 164 not_linkfault 001006 aa 137 154 151 156 001007 aa 153 146 141 165 001010 aa 154 164 000 000 001011 55 000066 000050 001012 2a 000040 400001 001013 55 000062 000003 001014 aa 015 156 157 164 not_an_object 001015 aa 137 141 156 137 001016 aa 157 142 152 145 001017 aa 143 164 000 000 001020 55 000076 000057 001021 2a 000037 400001 001022 55 000071 000003 001023 aa 022 156 157 156 nonstandard_object 001024 aa 163 164 141 156 001025 aa 144 141 162 144 001026 aa 137 157 142 152 001027 aa 145 143 164 000 001030 55 000105 000066 001031 2a 000036 400001 001032 55 000101 000003 001033 aa 016 156 157 156 nonrelocatable 001034 aa 162 145 154 157 001035 aa 143 141 164 141 001036 aa 142 154 145 000 001037 55 000114 000076 001040 2a 000035 400001 001041 55 000110 000003 001042 aa 016 155 165 154 multiple_inits 001043 aa 164 151 160 154 001044 aa 145 137 151 156 001045 aa 151 164 163 000 001046 55 000123 000105 001047 2a 000034 400001 001050 55 000117 000003 001051 aa 016 154 151 156 link_not_found 001052 aa 153 137 156 157 001053 aa 164 137 146 157 001054 aa 165 156 144 000 001055 55 000132 000114 001056 2a 000033 400001 001057 55 000126 000003 001060 aa 017 151 156 166 invalid_relinfo 001061 aa 141 154 151 144 001062 aa 137 162 145 154 001063 aa 151 156 146 157 001064 55 000143 000123 001065 2a 000032 400001 001066 55 000135 000003 001067 aa 024 151 156 160 input_output_overlap 001070 aa 165 164 137 157 001071 aa 165 164 160 165 001072 aa 164 137 157 166 001073 aa 145 162 154 141 001074 aa 160 000 000 000 001075 55 000153 000132 001076 2a 000031 400001 001077 55 000146 000003 001100 aa 021 151 156 143 incompatible_init 001101 aa 157 155 160 141 001102 aa 164 151 142 154 001103 aa 145 137 151 156 001104 aa 151 164 000 000 001105 55 000164 000143 001106 2a 000030 400001 001107 55 000156 000003 001110 aa 024 151 155 160 implementation_error 001111 aa 154 145 155 145 001112 aa 156 164 141 164 001113 aa 151 157 156 137 001114 aa 145 162 162 157 001115 aa 162 000 000 000 001116 55 000173 000153 001117 2a 000027 400001 001120 55 000167 000003 001121 aa 015 150 141 163 has_break_map 001122 aa 137 142 162 145 001123 aa 141 153 137 155 001124 aa 141 160 000 000 001125 55 000205 000164 001126 2a 000026 400001 001127 55 000176 000003 001130 aa 030 145 156 164 entrypoints_inaccessible 001131 aa 162 171 160 157 001132 aa 151 156 164 163 001133 aa 137 151 156 141 001134 aa 143 143 145 163 001135 aa 163 151 142 154 001136 aa 145 000 000 000 001137 55 000214 000173 001140 2a 000025 400001 001141 55 000210 000003 001142 aa 015 144 165 160 dup_table_opt 001143 aa 137 164 141 142 001144 aa 154 145 137 157 001145 aa 160 164 000 000 001146 55 000222 000205 001147 2a 000024 400001 001150 55 000217 000003 001151 aa 013 144 165 160 dup_segname 001152 aa 137 163 145 147 001153 aa 156 141 155 145 001154 55 000232 000214 001155 2a 000023 400001 001156 55 000225 000003 001157 aa 023 144 165 160 dup_input_component 001160 aa 137 151 156 160 001161 aa 165 164 137 143 001162 aa 157 155 160 157 001163 aa 156 145 156 164 001164 55 000243 000222 001165 2a 000022 400001 001166 55 000235 000003 001167 aa 024 144 165 160 dup_global_table_opt 001170 aa 137 147 154 157 001171 aa 142 141 154 137 001172 aa 164 141 142 154 001173 aa 145 137 157 160 001174 aa 164 000 000 000 001175 55 000253 000232 001176 2a 000021 400001 001177 55 000246 000003 001200 aa 021 144 165 160 dup_global_option 001201 aa 137 147 154 157 001202 aa 142 141 154 137 001203 aa 157 160 164 151 001204 aa 157 156 000 000 001205 55 000262 000243 001206 2a 000020 400001 001207 55 000256 000003 001210 aa 015 144 165 160 dup_ep_option 001211 aa 137 145 160 137 001212 aa 157 160 164 151 001213 aa 157 156 000 000 001214 55 000272 000253 001215 2a 000017 400001 001216 55 000265 000003 001217 aa 021 143 157 155 component_too_big 001220 aa 160 157 156 145 001221 aa 156 164 137 164 001222 aa 157 157 137 142 001223 aa 151 147 000 000 001224 55 000302 000262 001225 2a 000016 400001 001226 55 000275 000003 001227 aa 021 143 141 156 cant_delete_table 001230 aa 164 137 144 145 001231 aa 154 145 164 145 001232 aa 137 164 141 142 001233 aa 154 145 000 000 001234 55 000311 000272 001235 2a 000015 400001 001236 55 000305 000003 001237 aa 015 142 141 144 bad_link_type 001240 aa 137 154 151 156 001241 aa 153 137 164 171 001242 aa 160 145 000 000 001243 55 000320 000302 001244 2a 000014 400001 001245 55 000314 000003 001246 aa 014 142 141 144 bad_link_ref 001247 aa 137 154 151 156 001250 aa 153 137 162 145 001251 aa 146 000 000 000 001252 55 000327 000311 001253 2a 000013 400001 001254 55 000323 000003 001255 aa 016 142 141 144 bad_link_class 001256 aa 137 154 151 156 001257 aa 153 137 143 154 001260 aa 141 163 163 000 001261 55 000337 000320 001262 2a 000012 400001 001263 55 000332 000003 001264 aa 020 142 141 144 bad_instr_format 001265 aa 137 151 156 163 001266 aa 164 162 137 146 001267 aa 157 162 155 141 001270 aa 164 000 000 000 001271 55 000346 000327 001272 2a 000011 400001 001273 55 000342 000003 001274 aa 017 142 141 144 bad_ep_starname 001275 aa 137 145 160 137 001276 aa 163 164 141 162 001277 aa 156 141 155 145 001300 55 000356 000337 001301 2a 000010 400001 001302 55 000351 000003 001303 aa 021 142 141 144 bad_def_reference 001304 aa 137 144 145 146 001305 aa 137 162 145 146 001306 aa 145 162 145 156 001307 aa 143 145 000 000 001310 55 000002 000346 001311 6a 000000 400002 001312 55 000361 000003 001313 aa 014 163 171 155 symbol_table 001314 aa 142 157 154 137 001315 aa 164 141 142 154 001316 aa 145 000 000 000 DEFINITIONS HASH TABLE 001317 aa 000000 000065 001320 aa 000000 000000 001321 aa 000000 000000 001322 aa 000000 000000 001323 5a 000243 000000 001324 aa 000000 000000 001325 aa 000000 000000 001326 5a 000105 000000 001327 5a 000114 000000 001330 5a 000066 000000 001331 aa 000000 000000 001332 5a 000123 000000 001333 5a 000205 000000 001334 5a 000153 000000 001335 5a 000253 000000 001336 aa 000000 000000 001337 5a 000214 000000 001340 5a 000076 000000 001341 aa 000000 000000 001342 5a 000017 000000 001343 5a 000173 000000 001344 aa 000000 000000 001345 5a 000346 000000 001346 aa 000000 000000 001347 5a 000327 000000 001350 5a 000050 000000 001351 5a 000057 000000 001352 5a 000337 000000 001353 5a 000164 000000 001354 5a 000320 000000 001355 5a 000302 000000 001356 5a 000356 000000 001357 5a 000311 000000 001360 5a 000010 000000 001361 aa 000000 000000 001362 aa 000000 000000 001363 aa 000000 000000 001364 aa 000000 000000 001365 5a 000272 000000 001366 5a 000037 000000 001367 aa 000000 000000 001370 5a 000143 000000 001371 aa 000000 000000 001372 aa 000000 000000 001373 aa 000000 000000 001374 aa 000000 000000 001375 aa 000000 000000 001376 aa 000000 000000 001377 5a 000132 000000 001400 aa 000000 000000 001401 5a 000027 000000 001402 5a 000232 000000 001403 5a 000262 000000 001404 5a 000222 000000 NO EXTERNAL NAMES NO TRAP POINTER WORDS TYPE PAIR BLOCKS 001405 aa 000001 000000 001406 aa 000000 000000 INTERNAL EXPRESSION WORDS 001407 50 000453 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 000732 000050 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000046 000053 000007 a2 000000 000036 000046 9a 777732 0000 46 *text| 000047 5a 000455 0000 00 FIRST REFERENCE TRAP LIST 000050 aa 000000 000001 000051 aa 000000 000001 000052 2a 000046 000000 000053 aa 000000 000000 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000007 000004 aa 000000 115030 000005 aa 273207 326355 000006 aa 000000 115051 000007 aa 763131 033740 000010 aa 141154 155040 000011 aa 040040 040040 000012 aa 000024 000040 000013 aa 000034 000040 000014 aa 000044 000100 000015 aa 000002 000002 000016 aa 000064 000000 000017 aa 000000 000265 000020 aa 000000 000136 000021 aa 000204 000173 000022 aa 000255 000136 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 067056 063040 000030 aa 116157 166145 000031 aa 155142 145162 000032 aa 040061 071070 000033 aa 066040 040040 000034 aa 107112 157150 000035 aa 156163 157156 000036 aa 056123 171163 000037 aa 115141 151156 000040 aa 164056 141040 000041 aa 040040 040040 000042 aa 040040 040040 000043 aa 040040 040040 000044 aa 055164 141162 000045 aa 147145 164040 000046 aa 154066 070040 000047 aa 040040 040040 000050 aa 040040 040040 000051 aa 040040 040040 000052 aa 040040 040040 000053 aa 040040 040040 000054 aa 040040 040040 000055 aa 040040 040040 000056 aa 040154 151163 000057 aa 164040 163171 000060 aa 155142 157154 000061 aa 163040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000003 000066 aa 000102 000053 000067 aa 150505 453035 000070 aa 000000 115051 000071 aa 763062 400000 000072 aa 000115 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000125 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 076163 160145 >special_ldd>install>MR12.0-1241>le_et_.alm 000103 aa 143151 141154 000104 aa 137154 144144 000105 aa 076151 156163 000106 aa 164141 154154 000107 aa 076115 122061 000110 aa 062056 060055 000111 aa 061062 064061 000112 aa 076154 145137 000113 aa 145164 137056 000114 aa 141154 155040 000115 aa 076154 144144 >ldd>include>et_macros.incl.alm 000116 aa 076151 156143 000117 aa 154165 144145 000120 aa 076145 164137 000121 aa 155141 143162 000122 aa 157163 056151 000123 aa 156143 154056 000124 aa 141154 155040 000125 aa 076154 144144 >ldd>include>stack_header.incl.alm 000126 aa 076151 156143 000127 aa 154165 144145 000130 aa 076163 164141 000131 aa 143153 137150 000132 aa 145141 144145 000133 aa 162056 151156 000134 aa 143154 056141 000135 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number *text le_et_: 25. 14 .._00000 le_et_: 28. 36 .._00001 le_et_: 34. 52 .._00002 le_et_: 39. 65 .._00003 le_et_: 45. 106 .._00004 le_et_: 50. 125 .._00005 le_et_: 56. 141 .._00006 le_et_: 61. 166 .._00007 le_et_: 67. 211 .._00010 le_et_: 73. 231 .._00011 le_et_: 79. 253 .._00012 le_et_: 85. 273 .._00013 le_et_: 90. 313 .._00014 le_et_: 96. 333 .._00015 le_et_: 102. 356 .._00016 le_et_: 107. 403 .._00017 le_et_: 113. 417 .._00020 le_et_: 118. 441 .._00021 le_et_: 123. 462 .._00022 le_et_: 128. 503 .._00023 le_et_: 134. 517 .._00024 le_et_: 140. 540 .._00025 le_et_: 145. 552 .._00026 le_et_: 150. 567 .._00027 le_et_: 155. 604 .._00030 le_et_: 160. 627 .._00031 le_et_: 165. 642 .._00032 le_et_: 171. 660 .._00033 le_et_: 176. 701 .._00034 le_et_: 182. 714 .._00035 le_et_: 188. 46 .code_end le_et_: 25. 10 .code_start le_et_: 25. 5 .loop le_et_: 25. 77777 .segno le_et_: 25, 28, 34, 39, 45, 50, 56, 61, 67, 73, 79, 85, 90, 96, 102, 107, 113, 118, 123, 128, 134, 140, 145, 150, 155, 160, 165, 171, 176, 182, 188. 0 .trapproc le_et_: 25. 10 bad_def_reference le_et_: 28. 11 bad_ep_starname le_et_: 34. 12 bad_instr_format le_et_: 39. 13 bad_link_class le_et_: 45. 14 bad_link_ref le_et_: 50. 15 bad_link_type le_et_: 56. 1170 call_offset stack_header: 80. 16 cant_delete_table le_et_: 61. 10 codes le_et_: 25, 28, 34, 39, 45, 50, 56, 61, 67, 73, 79, 85, 90, 96, 102, 107, 113, 118, 123, 128, 134, 140, 145, 150, 155, 160, 165, 171, 176, 182, 188. 17 component_too_big le_et_: 67. 20 dup_ep_option le_et_: 73. 21 dup_global_option le_et_: 79. 22 dup_global_table_opt le_et_: 85. 23 dup_input_component le_et_: 90. 24 dup_segname le_et_: 96. 25 dup_table_opt le_et_: 102. 26 entrypoints_inaccessible le_et_: 107. 1174 entry_offset stack_header: 84. 27 has_break_map le_et_: 113. 30 implementation_error le_et_: 118. 31 incompatible_init le_et_: 123. 32 input_output_overlap le_et_: 128. 33 invalid_relinfo le_et_: 134. 34 link_not_found le_et_: 140. 0 messages le_et_: 25, 28, 34, 39, 45, 50, 56, 61, 67, 73, 79, 85, 90, 96, 102, 107, 113, 118, 123, 128, 134, 140, 145, 150, 155, 160, 165, 171, 176, 182, 188. 35 multiple_inits le_et_: 145. 36 nonrelocatable le_et_: 150. 37 nonstandard_object le_et_: 155. 40 not_an_object le_et_: 160. 41 not_linkfault le_et_: 165. 46 past_codes le_et_: 25. 1171 push_offset stack_header: 81. 42 recursive_invocation le_et_: 171. 1173 return_no_pop_offset stack_header: 83. 1172 return_offset stack_header: 82. 73 stach_header.trace_top_ptr stack_header: 62. 66 stack_header.assign_linkage_ptr stack_header: 59. 32 stack_header.bar_mode_sp stack_header: 42. 36 stack_header.call_op_ptr stack_header: 44. 10 stack_header.clr_ptr stack_header: 27. 6 stack_header.combined_stat_ptr stack_header: 25. 4 stack_header.cpm_data_ptr stack_header: 24. 13 stack_header.cpm_enabled stack_header: 32. 13 stack_header.cur_lot_size stack_header: 31. 64 stack_header.ect_ptr stack_header: 58. 46 stack_header.entry_op_ptr stack_header: 49. 70 stack_header.heap_header_ptr stack_header: 60. 74 stack_header.in_trace stack_header: 63. 52 stack_header.isot_ptr stack_header: 52. 26 stack_header.lot_ptr le_et_: 25, stack_header: 39. 12 stack_header.main_proc_invoked stack_header: 29. 12 stack_header.max_lot_size stack_header: 28. 20 stack_header.parent_ptr stack_header: 36. 34 stack_header.pl1_operators_ptr stack_header: 43. 40 stack_header.push_op_ptr stack_header: 46. 42 stack_header.return_op_ptr stack_header: 47. 44 stack_header.ret_no_pop_op_ptr stack_header: 48. 62 stack_header.rnt_ptr stack_header: 57. 12 stack_header.run_unit_depth stack_header: 30. 54 stack_header.sct_ptr stack_header: 53. 30 stack_header.signal_ptr stack_header: 41. 22 stack_header.stack_begin_ptr stack_header: 37. 24 stack_header.stack_end_ptr stack_header: 38. 14 stack_header.system_free_ptr stack_header: 33. 60 stack_header.sys_link_info_ptr stack_header: 56. 72 stack_header.trace_frames stack_header: 61. 50 stack_header.trans_op_tv_ptr stack_header: 51. 56 stack_header.unwinder_ptr stack_header: 54. 16 stack_header.user_free_ptr stack_header: 34. 100 stack_header_end stack_header: 64. 43 too_many_options le_et_: 176. 0 trace_frames.count stack_header: 69. 1 trace_frames.top_ptr stack_header: 70. 551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. 44 unsupported_relinfo le_et_: 182. 45 unused_option le_et_: 188. NO FATAL ERRORS ----------------------------------------------------------- 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