ObjectFileLoader.st
author ca
Thu, 22 Jun 2006 17:20:57 +0200
changeset 1765 a6234f291d72
parent 1760 09a5b2b97f29
child 1768 ebdb95696790
permissions -rw-r--r--
use invalidate to flush the code pointer of unloaded functions
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     1
"
7ad01559b262 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
45
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
     3
	      All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     4
7ad01559b262 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
"
7ad01559b262 Initial revision
claus
parents:
diff changeset
    12
1116
4cadfbecca99 methods send category-change notifications themself
Claus Gittinger <cg@exept.de>
parents: 1033
diff changeset
    13
"{ Package: 'stx:libcomp' }"
4cadfbecca99 methods send category-change notifications themself
Claus Gittinger <cg@exept.de>
parents: 1033
diff changeset
    14
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    15
Object subclass:#ObjectFileLoader
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    16
	instanceVariableNames:''
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    17
	classVariableNames:'MySymbolTable Verbose LastError LinkErrorMessage NextHandleID
149
3dc42a5ab417 default for SearchedLibraries
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    18
		LoadedObjects PreviouslyLoadedObjects ActuallyLoadedObjects
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
    19
		LoadLibraryPath ErrorPrinting LinkSharedArgs LastErrorNumber
1609
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
    20
		OldSpaceReserve'
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    21
	poolDictionaries:''
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    22
	category:'System-Compiler'
47
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
    23
!
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
    24
53
c5dd7abf8431 *** empty log message ***
claus
parents: 51
diff changeset
    25
!ObjectFileLoader primitiveDefinitions!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    26
%{
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
    27
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    28
/*
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    29
 * by default, use whatever the system provides
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    30
 */
95
claus
parents: 94
diff changeset
    31
#ifdef sunos    /* sunos (pre 5.4) dlopen interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    32
# define SUN_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    33
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    34
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    35
95
claus
parents: 94
diff changeset
    36
#ifdef NeXT     /* next rld interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    37
# define NEXT_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    38
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    39
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    40
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
    41
#if defined(SYSV4) || defined(HAS_DLOPEN)   /* sys5.4 dlopen interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    42
# define SYSV4_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    43
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    44
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    45
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    46
#if defined(hpux10)
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    47
# undef SYSV4_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    48
# define HPUX10_DL
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    49
# define HAS_DL
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    50
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    51
1613
7ee96f98afd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1612
diff changeset
    52
#if defined(hpux11)
7ee96f98afd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1612
diff changeset
    53
# define SYSV4_DL
7ee96f98afd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1612
diff changeset
    54
# define HAS_DL
7ee96f98afd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1612
diff changeset
    55
#endif
7ee96f98afd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1612
diff changeset
    56
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
    57
#if defined(__alpha__) && defined(__osf__)
587
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    58
# define SYSV4_DL
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    59
# define HAS_DL
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    60
#endif
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    61
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    62
#ifdef __VMS__
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    63
# undef __new
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    64
# define VMS_DL
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    65
#endif
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    66
95
claus
parents: 94
diff changeset
    67
#ifdef DL1_6    /* dl1.6 COFF loader */
claus
parents: 94
diff changeset
    68
# define HAS_DL
claus
parents: 94
diff changeset
    69
#endif
claus
parents: 94
diff changeset
    70
98
claus
parents: 97
diff changeset
    71
#ifdef _AIX
97
claus
parents: 96
diff changeset
    72
# define AIX_DL
claus
parents: 96
diff changeset
    73
# define HAS_DL
claus
parents: 96
diff changeset
    74
#endif
claus
parents: 96
diff changeset
    75
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    76
/*
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    77
 * but GNU_DL overwrites this - its better
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    78
 */
95
claus
parents: 94
diff changeset
    79
#ifdef GNU_DL   /* dld2.3.x interface */
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    80
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    81
# undef SYSV4_DL
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    82
# undef NEXT_DL
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    83
# undef SUN_DL
95
claus
parents: 94
diff changeset
    84
# undef DL1_6
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    85
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    86
801
0ab2ba78b26e newest stdio uses __new
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
    87
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    88
#include <stdio.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    89
801
0ab2ba78b26e newest stdio uses __new
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
    90
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    91
#if defined(WIN32)
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    92
# undef COFF
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    93
# undef ELF
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    94
# undef A_DOT_OUT
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    95
# define HAS_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    96
# define WIN_DL
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    97
#endif
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    98
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    99
#if defined(BEOS)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   100
# undef COFF
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   101
# undef ELF
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   102
# undef A_DOT_OUT
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   103
# define HAS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   104
# define BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   105
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   106
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   107
/*
95
claus
parents: 94
diff changeset
   108
 * if no dynamic link facilities, try it the hard way ...
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   109
 */
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   110
#if !defined(HAS_DL)
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   111
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   112
# ifdef A_DOT_OUT
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   113
#  include <a.out.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   114
#  ifndef N_MAGIC
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   115
#   if defined(sinix) && defined(BSD)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   116
#    define N_MAGIC(hdr) (hdr.a_magic & 0xFFFF)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   117
#   else
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   118
#    define N_MAGIC(hdr) (hdr.a_magic)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   119
#   endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   120
#  endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   121
# endif /* a.out */
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   122
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   123
# ifdef COFF
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
   124
#  ifdef __mips__
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   125
#    include <sys/exec.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   126
#  else
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   127
#    include <a.out.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   128
#  endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   129
# endif /* coff */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   130
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   131
# ifdef ELF
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   132
#  include <elf.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   133
# endif /* elf */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   134
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   135
#endif /* not HAS_DL */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   136
95
claus
parents: 94
diff changeset
   137
#ifdef NEXT_DL
claus
parents: 94
diff changeset
   138
# ifndef _RLD_H_
claus
parents: 94
diff changeset
   139
#  define _RLD_H_
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   140
#  ifdef NEXT3
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   141
#   include <mach-o/rld.h>
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   142
#  else
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   143
#   include <rld.h>
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   144
#  endif
95
claus
parents: 94
diff changeset
   145
# endif
claus
parents: 94
diff changeset
   146
#endif /* NEXT_DL */
claus
parents: 94
diff changeset
   147
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   148
#ifdef SYSV4_DL
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   149
# include <dlfcn.h>
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   150
# define dlcfn_h
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   151
#endif
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   152
45
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   153
#ifdef GNU_DL
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   154
#  ifndef dld_h
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   155
#   include "dld.h"
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   156
#   define dld_h
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   157
#  endif
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   158
#endif
95
claus
parents: 94
diff changeset
   159
claus
parents: 94
diff changeset
   160
#ifdef DL1_6
claus
parents: 94
diff changeset
   161
#  ifndef dl_h
claus
parents: 94
diff changeset
   162
#   include "dl.h"
claus
parents: 94
diff changeset
   163
#   define dl_h
claus
parents: 94
diff changeset
   164
#  endif
claus
parents: 94
diff changeset
   165
#endif
claus
parents: 94
diff changeset
   166
97
claus
parents: 96
diff changeset
   167
#ifdef AIX_DL
claus
parents: 96
diff changeset
   168
# include <nlist.h>
100
claus
parents: 98
diff changeset
   169
# include <sys/ldr.h>
claus
parents: 98
diff changeset
   170
# include <errno.h>
97
claus
parents: 96
diff changeset
   171
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   172
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   173
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   174
# include <dl.h>
524
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   175
# include <errno.h>
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   176
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   177
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   178
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   179
# include <be/kernel/image.h>
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   180
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   181
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   182
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   183
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   184
# ifdef WIN32
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   185
#  undef INT
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   186
#  undef Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   187
#  undef Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   188
#  undef Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   189
#  undef Block
857
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   190
#  undef Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   191
#  undef Date
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   192
#  undef Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   193
#  undef Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   194
#  undef Signal
1175
4b6d058ffea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
   195
#  undef Context
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   196
1608
24ec26053036 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   197
#  ifdef __i386__
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   198
#   ifndef _X86_
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   199
#    define _X86_
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   200
#   endif
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   201
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   202
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   203
#  ifdef __BORLANDC__
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   204
#   define NOATOM
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   205
#   define NOUSER
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   206
#   define NOGDI
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   207
#   define NOGDICAPMASKS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   208
#   define NOMETAFILE
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   209
#   define NOMINMAX
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   210
#   define NOMSG
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   211
#   define NOOPENFILE
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   212
#   define NORASTEROPS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   213
#   define NOSCROLL
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   214
#   define NOSOUND
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   215
#   define NOSYSMETRICS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   216
#   define NOTEXTMETRIC
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   217
#   define NOWH
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   218
#   define NOCOMM
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   219
#   define NOKANJI
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   220
#   define NOCRYPT
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   221
#   define NOMCX
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   222
#   define WIN32_LEAN_AND_MEAN
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   223
#   include <windows.h> /* */
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   224
#  else
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   225
/* #  include <windows.h> /* */
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   226
#  endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   227
#  include <windef.h> /* */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   228
#  include <winbase.h> /* */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   229
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   230
#  ifdef __DEF_Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   231
#   define Array __DEF_Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   232
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   233
#  ifdef __DEF_Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   234
#   define Number __DEF_Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   235
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   236
#  ifdef __DEF_Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   237
#   define Method __DEF_Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   238
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   239
#  ifdef __DEF_Block
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   240
#   define Block __DEF_Block
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   241
#  endif
857
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   242
#  ifdef __DEF_Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   243
#   define Time __DEF_Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   244
#  endif
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   245
#  ifdef __DEF_Date
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   246
#   define Date __DEF_Date
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   247
#  endif
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   248
# ifdef __DEF_Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   249
#  define Set __DEF_Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   250
# endif
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   251
# ifdef __DEF_Signal
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   252
#  define Signal __DEF_Signal
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   253
# endif
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   254
# ifdef __DEF_Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   255
#  define Delay __DEF_Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   256
# endif
1175
4b6d058ffea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
   257
# ifdef __DEF_Context
4b6d058ffea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
   258
#  define Context __DEF_Context
4b6d058ffea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1161
diff changeset
   259
# endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   260
# endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   261
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   262
#endif /* WIN_DL */
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   263
%}
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   264
! !
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   265
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   266
!ObjectFileLoader class methodsFor:'documentation'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   267
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   268
copyright
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   269
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   270
 COPYRIGHT (c) 1993 by Claus Gittinger
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   271
	      All Rights Reserved
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   272
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   273
 This software is furnished under a license and may be used
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   274
 only in accordance with the terms of that license and with the
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   275
 inclusion of the above copyright notice.   This software may not
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   276
 be provided or otherwise made available to, or used by, any
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   277
 other person.  No title to or ownership of the software is
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   278
 hereby transferred.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   279
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   280
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   281
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   282
documentation
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   283
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   284
    This class knowns how to dynamically load in external object-modules.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   285
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   286
    WARNING:
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   287
      As to date, this is still experimental and WITHOUT ANY WARRANTY.
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   288
      It is still being developed and the code may need some cleanup and more
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   289
      robustness.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   290
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   291
    There are basically two totally different mechanisms to do this:
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   292
	a) if there exists some dynamic-link facility such as:
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   293
	   GNU-DL, dlopen (sparc, SYS5.4), rld_open (NeXT),
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   294
	   or LoadLibrary (Win32), this is used
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   295
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   296
	b) if no such facility exists, the normal linker is used to
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   297
	   link the module to text/data address as previously malloced,
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   298
	   and the object file loaded into that space.
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   299
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   300
    Currently, not all mechanisms work fully satisfying.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   301
    For example, the sun dl*-functions do an exit on link-errors (which
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   302
    is certainly not what we want here :-(; the NeXT mechanism does not
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   303
    allow for selective unloading (only all or the last loaded module).
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   304
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   305
    The only really useful packages are the GNU-dl package,
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   306
    the SGI/Unixware/sys5.4/linux libdl packages and the win32 dll's.
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   307
    The GNU-dl package is only available for a.out file formats
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   308
    (which is more or less obsolete);
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   309
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   310
    For the above reasons, dynamic object loading is currently only
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   311
    officially released for SYS5.4-based, LINUX and win32 systems.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   312
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   313
    Once stable, the functionality contained herein will be moved into
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   314
    the VM.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   315
    (It is needed there, to allow reloading of objectfiles upon
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   316
     image restart; i.e. before any class is reinitialilized).
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   317
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   318
    Right now, reloading of object files is done by smalltalk code,
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   319
    which fails, if code is to be loaded which is required before the
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   320
    load takes place, or which is used by the loader itself.
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   321
    (i.e. for now, many primitives from libbasic cannot be dynamically
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   322
    loaded at image restart time).
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   323
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   324
    [author:]
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   325
	Claus Gittinger
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   326
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   327
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   328
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   329
!ObjectFileLoader class methodsFor:'initialization'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   330
7ad01559b262 Initial revision
claus
parents:
diff changeset
   331
initialize
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   332
    |systemType libDir linkCommand linkArgs libPath searchedLibraries|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   333
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   334
    OperatingSystem isMSDOSlike ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   335
        "/ default setup for msc
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   336
        OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   337
            libDir := '..\libbc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   338
            libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   339
                libDir := '..\lib\libbc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   340
                libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   341
                    libDir := '..\lib'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   342
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   343
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   344
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   345
            linkCommand isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   346
                linkCommand := 'tlink32'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   347
                linkCommand := 'ilink32'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   348
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   349
            linkArgs isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   350
                linkArgs := '-L',libDir,' -L\Programme\Borland\CBuilder3\lib -c -ap -Tpd -s -Gi -v -w-dup ',libDir,'\librun.lib'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   351
                linkArgs := '-L',libDir,' -L\Programme\Borland\CBuilder3\lib -r -c -ap -Tpd -Gi -w-dup'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   352
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   353
            searchedLibraries := #(
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   354
                                    'import32.lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   355
                                  ).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   356
        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   357
            linkCommand isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   358
                linkCommand := 'link'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   359
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   360
            linkArgs isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   361
                linkArgs := '/NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL /OUT:%1.dll /DEF:%1.def'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   362
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   363
        ].
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   364
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   365
201
66bd5f9c781c only init once
Claus Gittinger <cg@exept.de>
parents: 198
diff changeset
   366
    MySymbolTable isNil ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   367
        Verbose := false.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   368
        NextHandleID := 1.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   369
        ObjectMemory addDependent:self.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   370
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   371
        OperatingSystem isMSDOSlike ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   372
            searchedLibraries := #(
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   373
                                    'import32.lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   374
                                  ).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   375
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   376
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   377
        OperatingSystem isUNIXlike ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   378
            systemType := OperatingSystem getOSType.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   379
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   380
            "/ name of object file, where initial symbol table is found
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   381
            "/ not req'd for all architectures.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   382
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   383
            MySymbolTable := 'stx'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   384
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   385
            "/ default set of libraries to be considered when
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   386
            "/ unresolved symbols are encountered during the load.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   387
            "/ Only req'd for linux and sunos non-ELF systems.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   388
            "/ Can (should) be set in the smalltalk.rc file.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   389
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   390
            searchedLibraries := #().
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   391
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   392
            (systemType = 'linux'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   393
            or:[systemType = 'sunos']) ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   394
                '/usr/lib/libc.a' asFilename isReadable ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   395
                    searchedLibraries := #('/usr/lib/libc.a')
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   396
                ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   397
                    '/lib/libc.a' asFilename isReadable ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   398
                        searchedLibraries := #('/lib/libc.a')
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   399
                    ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   400
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   401
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   402
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   403
            "/ default libraryPath where shared objects are searched for
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   404
            "/ when a dynamic library is loaded without an explicit path.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   405
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   406
            LoadLibraryPath := OperatingSystem getEnvironment:'LD_LIBRARY_PATH'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   407
            LoadLibraryPath isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   408
                LoadLibraryPath := #('.'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   409
                                     'lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   410
                                     '/usr/local/smalltalk/lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   411
                                     '/usr/local/lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   412
                                     '/usr/lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   413
                                     '/lib'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   414
                                    ) asOrderedCollection.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   415
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   416
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   417
            "/ default libraryPath where shared objects are expected
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   418
            "/ when a sharedObject load requires other objects to be loaded.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   419
            "/ Only req'd for aix.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   420
            "/ For more compatibility with ELF systems, look for a shell variable
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   421
            "/ named LD_LIBRARY_PATH, and - if present - take that instead if a default.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   422
            "/ Can (should) be set in the smalltalk.rc file.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   423
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   424
            systemType = 'aix' ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   425
                libPath := OperatingSystem getEnvironment:'LD_LIBRARY_PATH'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   426
                libPath isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   427
                    libPath := '.:/usr/local/smalltalk/lib:/usr/local/lib:/usr/lib:/lib'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   428
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   429
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   430
        ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   431
    ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   432
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   433
    ParserFlags linkCommand:linkCommand.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   434
    ParserFlags linkArgs:linkArgs.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   435
    ParserFlags libPath:libPath. 
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   436
    ParserFlags searchedLibraries:searchedLibraries.
107
claus
parents: 106
diff changeset
   437
claus
parents: 106
diff changeset
   438
    "
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   439
     LinkArgs := LinkCommand := nil.
107
claus
parents: 106
diff changeset
   440
     ObjectFileLoader initialize
claus
parents: 106
diff changeset
   441
    "
316
ee3426730cfc on sunos: link dynamic objects against libc.a for unresolved symbols.
Claus Gittinger <cg@exept.de>
parents: 307
diff changeset
   442
1217
61cca5c6d4d1 link flag setup (win32)
Claus Gittinger <cg@exept.de>
parents: 1175
diff changeset
   443
    "Modified: / 10.11.2001 / 01:45:01 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   444
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   445
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   446
lastError
780
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   447
    ^ LastError ? 'unknown error'
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   448
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   449
    "Modified: / 30.9.1998 / 17:21:23 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   450
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   451
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   452
libPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   453
    "see comment in #libPath:"
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   454
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   455
    ^ ParserFlags libPath
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   456
!
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   457
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   458
libPath:aSharedLibraryPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   459
    "set the pathnames of directories, where other shared objects
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   460
     are searched, in case a loaded module requires another module shared
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   461
     library object to be loaded.
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   462
     Currently, this is only required to be set for AIX systems;
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   463
     ELF based linux and solaris systems specify the libPath in the
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   464
     LD_LIBRARY_PATH environment variable."
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   465
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   466
    ParserFlags libPath:aSharedLibraryPath
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   467
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   468
    "
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   469
     ObjectFileLoader libPath:'.:/usr/lib:/usr/local/lib'
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   470
    "
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   471
!
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   472
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   473
linkErrorMessage
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   474
    ^ LinkErrorMessage
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   475
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   476
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   477
searchedLibraries
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   478
    "see comment in #searchedLibraries:"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   479
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   480
    ^ ParserFlags searchedLibraries
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   481
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   482
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   483
searchedLibraries:aCollectionOfArchivePathNames
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   484
    "set the pathnames of archives which are to be searched
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   485
     when unresolved references occur while loading in an object
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   486
     file. On systems which support shared libraries (all SYS5.4 based
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   487
     systems), this is usually not required. Instead, modules which are to
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   488
     be filed in (.so files) are to be prelinked with the appropriate
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   489
     shared libraries. The dynamic loader then cares about loading those
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   490
     modules (keeping track of which modules are already loaded).
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   491
     Only systems in which the dynamic load is done 'manually' by st/x
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   492
     (i.e. currently only linux and a.out-sunos) need to set this."
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   493
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   494
    ParserFlags searchedLibraries:aCollectionOfArchivePathNames
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   495
!
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   496
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   497
verbose
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   498
    "return true, if debug traces are turned on"
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   499
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   500
    ^ Verbose
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   501
!
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   502
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   503
verbose:aBoolean
7ad01559b262 Initial revision
claus
parents:
diff changeset
   504
    "turn on/off debug traces"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   505
10
73e97b6175c4 *** empty log message ***
claus
parents: 6
diff changeset
   506
    Verbose := aBoolean
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   507
7ad01559b262 Initial revision
claus
parents:
diff changeset
   508
    "ObjectFileLoader verbose:true"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   509
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   510
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   511
!ObjectFileLoader class methodsFor:'change & update'!
291
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   512
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   513
update:something with:aParameter from:changedObject
107
claus
parents: 106
diff changeset
   514
    "sent, when image is saved or restarted"
claus
parents: 106
diff changeset
   515
claus
parents: 106
diff changeset
   516
    (something == #aboutToSnapshot) ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   517
	self invalidateAndRememberAllObjectFiles
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   518
    ].
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   519
    (something == #finishedSnapshot) ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   520
	self revalidateAllObjectFiles
107
claus
parents: 106
diff changeset
   521
    ].
226
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   522
"/    (something == #restarted) ifTrue:[
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   523
"/        self reloadAllRememberedObjectFiles
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   524
"/    ].
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   525
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   526
    "Modified: 5.10.1995 / 15:49:14 / claus"
226
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   527
    "Modified: 8.3.1996 / 23:34:29 / cg"
291
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   528
    "Created: 21.6.1996 / 19:50:01 / cg"
107
claus
parents: 106
diff changeset
   529
! !
claus
parents: 106
diff changeset
   530
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   531
!ObjectFileLoader class methodsFor:'defaults'!
115
claus
parents: 114
diff changeset
   532
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   533
hasValidBinaryExtension:aFilename
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   534
    "return true, if aFilename looks ok for binary loading.
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   535
     This checks only the extension - not its contents.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   536
     (So an attempt to load the file may fail due to format errors or unresolved symbols)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   537
     This is very machine specific."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   538
1697
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   539
    |suffix|
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   540
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   541
    suffix := aFilename asFilename suffix.
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   542
    ^ self validBinaryExtensions includes:suffix.
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   543
"/    |fn|
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   544
"/
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   545
"/    fn := aFilename asFilename.
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   546
"/    self validBinaryExtensions do:[:ext |
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   547
"/        (fn hasSuffix:ext) ifTrue:[^ true].
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   548
"/    ].
886b80091d5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1659
diff changeset
   549
"/    ^ false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   550
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   551
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   552
     ObjectFileLoader hasValidBinaryExtension:'foo.st'
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   553
     ObjectFileLoader hasValidBinaryExtension:'foo.o'
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   554
     ObjectFileLoader hasValidBinaryExtension:'foo.so'
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   555
     ObjectFileLoader hasValidBinaryExtension:'foo.dll'
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   556
     ObjectFileLoader hasValidBinaryExtension:'foo.DLL'
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   557
     ObjectFileLoader hasValidBinaryExtension:'foo.obj'
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   558
     ObjectFileLoader hasValidBinaryExtension:'foo.sl'
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   559
    "
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   560
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   561
    "Modified: / 1.10.1998 / 12:47:01 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   562
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   563
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   564
linkArgs
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   565
    ^ ParserFlags linkArgs
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   566
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   567
    "Created: / 12.8.1998 / 21:41:16 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   568
    "Modified: / 12.8.1998 / 21:42:50 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   569
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   570
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   571
linkArgs:anArgString
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   572
    ParserFlags linkArgs:anArgString
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   573
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   574
    "
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   575
     MSC:
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   576
        ParserFlags linkCommand:'link32'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   577
        ParserFlags linkArgs:' /NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL /OUT:%1.dll /DEF:%1.def'
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   578
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   579
     Borland:
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   580
        ParserFlags linkCommand:'ilink32'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   581
        ParserFlags linkArgs:'-ap -E0 -Tpd -s -c -L\Programme\Borland\CBuilder3\lib -L..\libbc librun.lib import32.lib'
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   582
'
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   583
'/NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL /OUT:%1.dll /DEF:%1.def'
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   584
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   585
     Unix:
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   586
        ParserFlags linkCommand:'ld'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   587
        ParserFlags linkArgs:'-shared'
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   588
    "
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   589
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   590
    "Created: / 12.8.1998 / 21:43:16 / cg"
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   591
    "Modified: / 4.9.1998 / 00:33:46 / cg"
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   592
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   593
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   594
linkCommand
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   595
    ^ ParserFlags linkCommand
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   596
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   597
    "Created: / 12.8.1998 / 21:41:16 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   598
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   599
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   600
linkCommand:aCommand
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
   601
    ParserFlags linkCommand:aCommand
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   602
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   603
    "Created: / 12.8.1998 / 21:40:44 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   604
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   605
1609
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   606
linkSharedArgs
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   607
    ^ LinkSharedArgs ? ''   "/ that default is ok for Unix
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   608
!
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   609
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   610
linkSharedArgs:anArgString
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   611
    LinkSharedArgs := anArgString
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   612
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   613
    "
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   614
     Linux on AMD64 in 32bit mode:
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
   615
	LinkSharedArgs := '-shared -m elf_i386'
1609
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   616
    "
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   617
!
ffccd234a5bb separate setting for shared-link-arguments
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   618
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   619
loadableBinaryObjectFormat
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   620
    "return a symbol describing the expected binary format
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   621
     for object files to be loadable.
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   622
     This is very machine specific."
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   623
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   624
%{  /* NOCONTEXT */
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   625
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   626
#ifdef HAS_DL
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   627
# if defined(SYSV4) || defined(ELF)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   628
    RETURN ( @symbol(elf));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   629
# endif
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
   630
# if defined(__alpha__) && defined(__osf__)
590
7c158fe9b754 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
   631
    RETURN ( @symbol(coff));
7c158fe9b754 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
   632
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   633
# if defined(GNU_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   634
    RETURN ( @symbol(aout));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   635
# endif
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   636
# if defined(AIX_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   637
    RETURN ( @symbol(xcoff));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   638
# endif
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   639
# if defined(HPUX10_DL)
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   640
    RETURN ( @symbol(hpcoff));
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   641
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   642
# if defined(DL1_6)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   643
    RETURN ( @symbol(coff));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   644
# endif
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   645
# if defined(WIN_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   646
    RETURN ( @symbol(dll));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   647
# endif
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   648
# if defined(BEOS_DL)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   649
    RETURN ( @symbol(beobj));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   650
# endif
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   651
# if defined(__VMS__)
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   652
    RETURN ( @symbol(exe));
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   653
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   654
#endif
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   655
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   656
%}.
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   657
    ^ nil
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   658
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   659
    "
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   660
     ObjectFileLoader loadableBinaryObjectFormat
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   661
    "
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   662
!
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   663
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   664
nm:file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   665
   "this should return a string to list the namelist of file.
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   666
    The output of the command should be one line for each symbol,
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   667
    formatted as:
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   668
	addr  segment  name
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   669
    This is parsed and read by #namesMatching:segment:in:.
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   670
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   671
    If your default nm command cannot produce this, write a little
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   672
    shell or awk script, to generate this and return a corresponding command
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   673
    below.
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   674
    This entry is obsolete (no longer req'd) and will vanish."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   675
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   676
    |os|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   677
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   678
    os := OperatingSystem getOSType.
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   679
    (os = 'irix' or:[os = 'osf']) ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   680
	^ 'nm -B ' , file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   681
    ].
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   682
    (os = 'solaris') ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   683
	^ 'nm -p ' , file
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   684
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   685
    ^ 'nm ' , file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   686
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   687
    "Modified: / 4.5.1998 / 12:18:47 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   688
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   689
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   690
objectFileExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   691
    "return the fileName extension used for objects,
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   692
     as generated by myself (output of cc).
115
claus
parents: 114
diff changeset
   693
     This is very machine specific."
claus
parents: 114
diff changeset
   694
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   695
    OperatingSystem isMSDOSlike ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   696
	"/ includes all of win32s, win95, winNT & os/2
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   697
	^ '.obj'
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   698
    ].
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   699
    OperatingSystem isVMSlike ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   700
	^ '.obj'
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   701
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   702
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   703
    ^ '.o'
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   704
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   705
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   706
     ObjectFileLoader objectFileExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   707
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   708
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   709
    "Modified: / 4.5.1998 / 12:17:34 / cg"
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   710
!
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   711
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   712
sharedLibraryExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   713
    "return the fileName extension used for dynamic loadable objects,
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   714
     as generated by myself (output of linker).
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   715
     This is very machine specific."
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   716
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   717
    |suff|
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   718
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   719
    suff := self sharedLibrarySuffix.
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   720
    suff notNil ifTrue:[^ '.' , suff].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   721
    ^ suff
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   722
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   723
    "
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   724
     ObjectFileLoader sharedLibraryExtension
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   725
    "
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   726
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   727
    "Modified: / 4.5.1998 / 12:17:34 / cg"
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   728
!
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   729
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   730
sharedLibrarySuffix
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   731
    "return the fileName suffix used for dynamic loadable objects,
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   732
     as generated by myself (output of linker).
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   733
     This is very machine specific."
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   734
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   735
    |os|
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   736
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   737
    OperatingSystem isMSDOSlike ifTrue:[
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   738
	"/ includes all of win32s, win95, winNT & os/2
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   739
	^ 'dll'
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   740
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   741
    OperatingSystem isVMSlike ifTrue:[
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   742
	^ 'exe'
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   743
    ].
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   744
115
claus
parents: 114
diff changeset
   745
    os := OperatingSystem getSystemType.
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   746
    (os = 'linux') ifTrue:[
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   747
	self loadableBinaryObjectFormat == #aout ifTrue:[
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   748
	    "/ not really shared, but loadable
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   749
	    ^ 'o'
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   750
	].
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   751
    ].
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   752
    (os = 'hpux') ifTrue:[^ 'sl'].
119
claus
parents: 118
diff changeset
   753
claus
parents: 118
diff changeset
   754
    "/ mhmh what is a useful default ?
claus
parents: 118
diff changeset
   755
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   756
    ^ 'so'
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   757
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   758
    "
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   759
     ObjectFileLoader sharedLibrarySuffix
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   760
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   761
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   762
    "Modified: / 4.5.1998 / 12:17:34 / cg"
115
claus
parents: 114
diff changeset
   763
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   764
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   765
validBinaryExtensions
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   766
    "return a collection of valid filename extension for binary files.
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   767
     This is very machine specific."
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   768
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   769
    |os|
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   770
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   771
    OperatingSystem isMSDOSlike ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   772
	"/ includes all of win32s, win95, winNT & os/2
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   773
	^ #('dll')
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   774
    ].
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   775
    OperatingSystem isVMSlike ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   776
	^ #('exe')
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   777
    ].
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   778
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   779
    os := OperatingSystem getSystemType.
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   780
    (os = 'sunos') ifTrue:[^ #('o' 'obj' 'a') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   781
    (os = 'ultrix') ifTrue:[^ #('o' 'obj' 'ld' 'obj.ld') ].
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
   782
    (os = 'linux') ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   783
	self loadableBinaryObjectFormat == #aout ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   784
	    ^ #('o' 'obj' 'a')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   785
	].
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   786
	^ #('so' 'o' 'obj' )
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
   787
    ].
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   788
    (os = 'aix') ifTrue:[^ #('so' 'o') ].
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   789
    (os = 'hpux') ifTrue:[^ #('sl') ].
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   790
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   791
    "/ mhmh what is a useful default ?
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   792
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   793
    ^ #('so')
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   794
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   795
    "
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   796
     ObjectFileLoader validBinaryExtensions
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   797
    "
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   798
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   799
    "Modified: / 1.10.1998 / 12:46:03 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   800
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   801
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   802
!ObjectFileLoader class methodsFor:'dynamic object loading'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   803
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   804
loadCPlusPlusObjectFile:aFileName
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   805
    "load a c++ object file (.o-file) into the image.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   806
     This method is not maintained (name mangling and static
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   807
     initialization is so different among systems ...)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   808
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   809
    |handle initAddr list|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   810
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   811
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   812
    handle isNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   813
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   814
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   815
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   816
    list := self namesMatching:'__GLOBAL_$I*' segment:'[tT?]' in:aFileName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   817
list size == 1 ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   818
"/    (self isCPlusPlusObject:handle) ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   819
	Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   820
	    'a c++ object file' infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   821
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   822
	"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   823
	 what I would like to get is the CTOR_LIST,
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   824
	 and call each function.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   825
	 But dld cannot (currently) handle SET-type symbols, therefore
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   826
	 we search (using nm) for all __GLOBAL_$I* syms, get their values
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   827
	 and call them each
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   828
	"
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   829
"/        list := self namesMatching:'__GLOBAL_$I*' segment:'[tT?]' in:aFileName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   830
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   831
"/        initAddr := self getFunction:'__CTOR_LIST__' from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   832
"/        Verbose ifTrue:[
478
b0d558152d80 *PrintNL eliminated
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   833
"/            ('calling CTORs at:' , (initAddr printStringRadix:16)) infoPrintCR
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   834
"/        ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   835
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   836
	initAddr := self getFunction:list first from:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   837
	initAddr isNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   838
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   839
	     try with added underscore
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   840
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   841
	    initAddr := self getFunction:('_' , list first) from:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   842
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   843
	(initAddr isNil and:[list first startsWith:'_']) ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   844
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   845
	     try with removed underscore
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   846
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   847
	    initAddr := self getFunction:(list first copyFrom:2) from:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   848
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   849
	initAddr isNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   850
	    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   851
		('no CTOR-func found (' , list first , ')') infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   852
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   853
	    self unloadDynamicObject:aFileName.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   854
	    ^ nil
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   855
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   856
	Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   857
	    ('calling CTORs at:' , (initAddr printStringRadix:16)) infoPrintCR
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   858
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   859
	self callInitFunctionAt:initAddr
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   860
	     specialInit:false
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   861
	     forceOld:false
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   862
	     interruptable:false
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   863
	     argument:0
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   864
	     identifyAs:nil
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   865
	     returnsObject:false.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   866
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   867
	Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   868
	    'done with CTORs.' infoPrintCR
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   869
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   870
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   871
	"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   872
	 cannot create a CPlusPlus class automatically (there could be more than
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   873
	 one classes in it too ...)
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   874
	"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   875
	^ handle
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   876
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   877
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   878
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   879
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   880
	'unknown object file' infoPrintCR
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   881
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   882
    self unloadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   883
    ^ nil
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
   884
478
b0d558152d80 *PrintNL eliminated
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   885
    "Modified: 10.1.1997 / 19:11:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   886
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   887
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   888
loadClass:aClassName fromObjectFile:aFileName
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   889
    "load a compiled class (.o-file) into the image.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   890
     Returns the class or nil."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   891
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   892
    |handle initAddr symName newClass moreHandles info status
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   893
     otherClass knownToBeOk|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   894
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   895
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   896
    handle isNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   897
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   898
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   899
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   900
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   901
     get the Init-function; let the class install itself
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   902
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   903
    symName := '_' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   904
    initAddr := self getFunction:symName from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   905
    initAddr isNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   906
	"try with added underscore"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   907
	symName := '__' , aClassName , '_Init'.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   908
	initAddr := self getFunction:symName from:handle.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   909
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   910
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   911
    knownToBeOk := true.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   912
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   913
"/    knownToBeOk ifFalse:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   914
"/        |list|
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
   915
"/
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   916
"/        Verbose ifTrue:[
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
   917
"/            'looking for undefs ...' infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   918
"/        ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   919
"/
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   920
"/        "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   921
"/         if there are any undefined symbols, we may have to load more
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   922
"/         files (libs, other modules)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   923
"/        "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   924
"/        list := self getListOfUndefinedSymbolsFrom:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   925
"/        list notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   926
"/            moreHandles := self loadModulesFromListOfUndefined:list.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   927
"/
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   928
"/            "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   929
"/             now, try again
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   930
"/            "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   931
"/            symName := '_' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   932
"/            initAddr := self getFunction:symName from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   933
"/            initAddr isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   934
"/                "try with added underscore"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   935
"/                symName := '__' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   936
"/                initAddr := self getFunction:symName from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   937
"/            ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   938
"/        ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   939
"/    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   940
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   941
    initAddr notNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   942
	Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   943
	    ('calling init at: ' , (initAddr printStringRadix:16)) infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   944
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   945
	info := self performModuleInitAt:initAddr for:aClassName identifyAs:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   946
	status := info at:1.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   947
	"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   948
	 if any classes are missing ...
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   949
	"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   950
	(status == #missingClass) ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   951
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   952
	     ... and we are loading a module ...
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   953
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   954
	    Transcript showCR:'try for missing class in same object ...'.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   955
	    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   956
		'try for missing class:' infoPrint. (info at:2) infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   957
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   958
	    otherClass := self loadClass:(info at:2) fromObjectFile:aFileName.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   959
	    otherClass notNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   960
		"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   961
		 try again ...
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   962
		"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   963
		Transcript showCR:'missing class is here; try again ...'.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   964
		info := self performModuleInitAt:initAddr for:aClassName identifyAs:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   965
		status := info at:1.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   966
	    ]
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   967
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   968
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   969
	Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   970
	    'done init status=' infoPrint. info infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   971
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   972
	(status == #unregisteredSuperclass) ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   973
	    Transcript showCR:'superclass is not registered'.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   974
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   975
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   976
	(Symbol hasInterned:aClassName) ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   977
	    newClass := Smalltalk at:aClassName asSymbol ifAbsent:[nil].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   978
	    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   979
		'newClass is: ' infoPrint. newClass infoPrintCR
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   980
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   981
	    newClass notNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   982
		Smalltalk at:aClassName asSymbol put:newClass.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   983
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   984
		(newClass includesSelector:#initialize) ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   985
		    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   986
			'initialize newClass ...' infoPrintCR
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   987
		    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   988
		    newClass initialize.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   989
		].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   990
		"force cache flush"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   991
		Smalltalk isInitialized ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   992
		    Smalltalk changed.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   993
		]
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   994
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   995
	] ifFalse:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   996
	    'ObjectFileLoader [warning]: class ' errorPrint. aClassName errorPrint.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   997
	    ' did not define itself' errorPrintCR
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   998
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
   999
	     do not unload - could have installed other classes/methods ...
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1000
	    "
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1001
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1002
	Smalltalk flushCachedClasses.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1003
	^ newClass
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1004
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1005
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1006
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1007
	('no symbol: ', symName,' in ',aFileName) infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1008
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1009
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1010
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1011
     unload
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1012
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1013
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1014
	'unloading due to init failure:' infoPrint. handle pathName infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1015
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1016
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1017
    moreHandles notNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1018
	moreHandles do:[:aHandle |
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1019
	    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1020
		('unloading: ', aHandle printString) infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1021
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1022
	    self unloadDynamicObject:handle.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1023
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1024
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1025
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1026
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1027
	('unloading: ', handle printString) infoPrintCR.
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1028
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1029
    self unloadDynamicObject:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1030
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1031
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1032
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1033
     ObjectFileLoader loadClass:'Tetris'      fromObjectFile:'../clients/Tetris/Tetris.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1034
     ObjectFileLoader loadClass:'TetrisBlock' fromObjectFile:'../clients/Tetris/TBlock.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1035
     ObjectFileLoader loadClass:'Foo'         fromObjectFile:'classList.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1036
    "
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  1037
582
9a00e2dbdc97 must flush cached classes after loading (in case of private classes)
Claus Gittinger <cg@exept.de>
parents: 580
diff changeset
  1038
    "Modified: 6.7.1997 / 12:34:48 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1039
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1040
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1041
loadLibrary:aLibraryFileName
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1042
    "load a library; search in some standard places and using
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1043
     standard suffixes (i.e. no suffix should be given in the arg).
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1044
     Returns a handle or nil.
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1045
     Use this to attach C-libraries."
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1046
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1047
    |s suffixes handle libFilename|
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1048
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1049
    libFilename := aLibraryFileName asFilename.
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1050
    (s := libFilename suffix) isEmpty ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1051
	suffixes := self validBinaryExtensions
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1052
    ] ifFalse:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1053
	suffixes := #('')
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1054
    ].
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1055
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1056
    "/ try each suffix ...
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1057
    suffixes do:[:aSuffix |
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1058
	|fn f|
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1059
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1060
	fn := aLibraryFileName , '.' , aSuffix.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1061
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1062
	(libFilename isAbsolute
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1063
	or:[(aLibraryFileName startsWith:'./')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1064
	or:[(aLibraryFileName startsWith:'../')]]) ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1065
	    f := fn asFilename.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1066
	    f exists ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1067
		handle := self loadObjectFile:fn.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1068
		handle notNil ifTrue:[^ handle].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1069
	    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1070
	] ifFalse:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1071
	    "/ try each directory
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1072
	    LoadLibraryPath size > 0 ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1073
		(LoadLibraryPath asCollectionOfSubstringsSeparatedBy:$:)
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1074
		do:[:aDir |
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1075
		    f := aDir asFilename construct:fn.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1076
		    f exists ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1077
			handle := self loadObjectFile:f pathName.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1078
			handle notNil ifTrue:[^ handle].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1079
		    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1080
		]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1081
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1082
	    "/ try to load it by name - maybe someone else knows
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1083
	    "/ how to find it (the system itself)
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1084
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1085
	    handle := self loadObjectFile:fn.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1086
	    handle notNil ifTrue:[^ handle].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1087
	]
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1088
    ].
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1089
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1090
    ^ nil
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1091
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1092
    "
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1093
     ObjectFileLoader loadLibrary:'libjpeg'
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
  1094
     ObjectFileLoader loadLibrary:'odbc32'
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1095
    "
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1096
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
  1097
    "Modified: / 4.5.1999 / 17:01:47 / cg"
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1098
!
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1099
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1100
loadMethodObjectFile:aFileName
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1101
    "load an object file (.o-file) for a single method into the image;
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1102
     This does a slightly different initialization.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1103
     Return an object handle; nil on error"
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1104
346
29fe74c22e1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1105
    |handle initAddr initName m|
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1106
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1107
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1108
    "/ load the objectfile
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1109
    "/
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1110
    handle := self loadDynamicObject:aFileName.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1111
    handle isNil ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1112
	^ nil
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1113
    ].
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1114
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1115
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1116
    "/ find the entry function
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1117
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1118
    initName := aFileName asFilename withoutSuffix baseName.
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1119
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1120
    initAddr := self getFunction:'__' , initName , '_Init' from:handle.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1121
    initAddr isNil ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1122
	initAddr := ObjectFileLoader getFunction:'_' , initName , '_Init' from:handle.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1123
	initAddr isNil ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1124
	    (self getListOfUndefinedSymbolsFrom:handle) size > 0 ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1125
		self listUndefinedSymbolsIn:handle.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1126
		'ObjectFileLoader [info]: undefined symbols in primitive code' infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1127
	    ] ifFalse:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1128
		('ObjectFileLoader [info]: ' , initName , '_Init() lookup failed') errorPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1129
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1130
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1131
	    "/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1132
	    "/ not found - unload
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1133
	    "/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1134
	    self unloadDynamicObject:handle.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1135
	    ^ nil
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1136
	]
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1137
    ].
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1138
1555
9650c861704b Use class based signals
Stefan Vogel <sv@exept.de>
parents: 1543
diff changeset
  1139
    OSSignalInterrupt handle:[:ex |
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1140
	('ObjectFileLoader [warning]: hard error in initFunction: ' , initName , ' of method-module ' , aFileName) errorPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1141
	self unloadDynamicObject:handle.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1142
	^ nil
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1143
    ] do:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1144
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1145
	"/ call it - it returns the new method object
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1146
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1147
	self                              "/ registration
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1148
	    callInitFunctionAt:initAddr
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1149
	    specialInit:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1150
	    forceOld:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1151
	    interruptable:false
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1152
	    argument:0
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1153
	    identifyAs:handle
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1154
	    returnsObject:false.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1155
	m := self
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1156
	    callInitFunctionAt:initAddr   "/ initialization
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1157
	    specialInit:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1158
	    forceOld:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1159
	    interruptable:false
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1160
	    argument:2
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1161
	    identifyAs:handle
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  1162
	    returnsObject:true.
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1163
    ].
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1164
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1165
    handle method:m.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1166
    ^ handle
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1167
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1168
    "Created: / 5.12.1995 / 20:59:46 / cg"
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1169
    "Modified: / 21.10.1998 / 15:17:31 / cg"
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1170
!
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1171
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1172
loadObjectFile:aFileName
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1173
    "load an object file (.o-file) into the image;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1174
     the class name is not needed (multiple definitions may be in the file).
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1175
     This may be either a smalltalk object or a C-object file.
472
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1176
     The object files init function (if any) is called, and the module
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1177
     is unloaded if it returns failure (use lowLevel load, to load a file
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1178
     without automatic initialization).
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1179
     Return nil on error, an objectFile handle if ok."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1180
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1181
    ^ self
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1182
	loadObjectFile:aFileName
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1183
	invokeInitializeMethods:true
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1184
!
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1185
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1186
loadObjectFile:aFileName invokeInitializeMethods:invokeInitializeMethods
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1187
    "load an object file (.o-file) into the image;
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1188
     the class name is not needed (multiple definitions may be in the file).
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1189
     This may be either a smalltalk object or a C-object file.
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1190
     The object files init function (if any) is called, and the module
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1191
     is unloaded if it returns failure (use lowLevel load, to load a file
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1192
     without automatic initialization).
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1193
     Return nil on error, an objectFile handle if ok."
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1194
346
29fe74c22e1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1195
    |handle initAddr className initNames didInit info status
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1196
     dummyHandle msg isCModule|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1197
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1198
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1199
    handle isNil ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1200
        ^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1201
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1202
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1203
    didInit := false.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1204
    isCModule := false.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1205
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1206
    "/ with dld, load may have worked, even if undefined symbols
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1207
    "/ are to be resolved. If thats the case, load all libraries ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1208
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1209
    ParserFlags searchedLibraries notNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1210
        (self hasUndefinedSymbolsIn:handle) ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1211
            self initializeLoader.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1212
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1213
            ParserFlags searchedLibraries do:[:libName |
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1214
                (self hasUndefinedSymbolsIn:handle) ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1215
                    Transcript showCR:'   ... trying ' , libName , ' to resolve undefined symbols ...'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1216
                    dummyHandle := Array new:4.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1217
                    dummyHandle := self primLoadDynamicObject:libName into:dummyHandle.
228
be9939d96cfe removed a wrong debug message
Claus Gittinger <cg@exept.de>
parents: 227
diff changeset
  1218
"/                    dummyHandle isNil ifTrue:[
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  1219
"/                        Transcript showCR:'   ... load of library ' , libName , ' failed.'.
228
be9939d96cfe removed a wrong debug message
Claus Gittinger <cg@exept.de>
parents: 227
diff changeset
  1220
"/                    ]
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1221
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1222
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1223
            (self hasUndefinedSymbolsIn:handle) isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1224
                Transcript showCR:('LOADER: still undefined symbols in ',aFileName,'.').
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1225
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1226
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1227
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1228
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1229
    "
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1230
     first, expect the classes-name to be the fileNames-baseName
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1231
     (if its not, it may be a method or function module;
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1232
      in this case, the Init function is supposed to use that naming
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1233
      scheme as well)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1234
    "
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1235
    className := self initFunctionBasenameForFile:aFileName.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1236
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1237
    "/
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1238
    "/ look for explicit init (xxx_Init) function
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1239
    "/ This is used in ST object files
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1240
    "/
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1241
    initAddr := self findInitFunction:className in:handle.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1242
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1243
    initAddr notNil ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1244
        Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1245
            ('calling init at:' , (initAddr printStringRadix:16)) infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1246
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1247
        info := self
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1248
                    performModuleInitAt:initAddr
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1249
                    invokeInitializeMethods:invokeInitializeMethods
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1250
                    for:nil
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1251
                    identifyAs:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1252
        status := info at:1.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1253
        status == #ok ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1254
            didInit := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1255
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1256
    ] ifFalse:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1257
        "/
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1258
        "/ look for explicit C-init (xxx__Init) function
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1259
        "/ This is used in C object files
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1260
        "/
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1261
        initAddr := self findFunction:className suffix:'__Init' in:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1262
        initAddr notNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1263
            isCModule := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1264
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1265
            OSSignalInterrupt handle:[:ex |
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1266
                ('ObjectFileLoader [warning]: hard error in initFunction of class-module: ' , aFileName) errorPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1267
                status := #initFailed.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1268
            ] do:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1269
                (self callInitFunctionAt:initAddr
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1270
                     specialInit:false
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1271
                     forceOld:true
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1272
                     interruptable:false
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1273
                     argument:0
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1274
                     identifyAs:handle
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1275
                     returnsObject:false) < 0 ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1276
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1277
                    Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1278
                        'init function return failure ... unload' infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1279
                    ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1280
                    status := #initFailed.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1281
                ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1282
                    didInit := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1283
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1284
            ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1285
        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1286
            status := #noInitFunction.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1287
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1288
            "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1289
             look for any init-function(s); call them all
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1290
            "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1291
            Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1292
                'no good init functions found; looking for candidates ...' infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1293
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1294
            initNames := self namesMatching:'*_Init' segment:'[tT?]' in:aFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1295
            initNames notNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1296
                initNames do:[:aName |
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1297
                    initAddr := self getFunction:aName from:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1298
                    initAddr isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1299
                        (aName startsWith:'_') ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1300
                            initAddr := self getFunction:(aName copyFrom:2) from:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1301
                        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1302
                    ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1303
                    initAddr isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1304
                        Transcript showCR:('no symbol: ',aName,' in ',aFileName).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1305
                    ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1306
                        Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1307
                            ('calling init at:' , (initAddr printStringRadix:16)) infoPrintCR
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1308
                        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1309
                        self
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1310
                            performModuleInitAt:initAddr
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1311
                            invokeInitializeMethods:invokeInitializeMethods
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1312
                            for:nil
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1313
                            identifyAs:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1314
                        didInit := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1315
                    ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1316
                ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1317
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1318
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1319
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1320
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1321
    didInit ifFalse:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1322
        status == #noInitFunction ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1323
            msg := 'LOADER: no init function; assume load ok'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1324
        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1325
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1326
            (status ~~ #registrationFailed
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1327
            and:[status ~~ #initFailed
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1328
            and:[status ~~ #missingClass
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1329
            and:[status ~~ #versionMismatch]]])
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1330
            ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1331
                self listUndefinedSymbolsIn:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1332
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1333
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1334
            Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1335
                'unloading, since init failed ...' infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1336
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1337
            self unloadDynamicObject:handle.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1338
            Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1339
                'unloaded.' infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1340
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1341
            handle := nil.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1342
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1343
            status == #initFailed ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1344
                msg := 'LOADER: module not loaded (init function signalled failure).'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1345
            ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1346
                status == #missingClass ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1347
                    msg := 'LOADER: module not loaded (superclass missing: ' , (info at:2) , ').'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1348
                ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1349
                    status == #registrationFailed ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1350
                        msg :=  'LOADER: module registration failed (incompatible object or missing superclass)'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1351
                    ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1352
                        status == #versionMismatch ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1353
                            msg :=  'LOADER: module registration failed (class version mismatch ' , (info at:2) printString , ')'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1354
                        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1355
                            (self namesMatching:'*__sepInitCode__*' segment:'[tT?]' in:aFileName) notNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1356
                                msg := 'LOADER: module not loaded (unknown error reason).'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1357
                            ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1358
                                msg := 'LOADER: module not loaded (no _Init entry in object file ?).'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1359
                            ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1360
                        ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1361
                    ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1362
                ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1363
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1364
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1365
        Transcript showCR:msg
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1366
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1367
471
508fa84cb122 no init function: assume load ok.
Claus Gittinger <cg@exept.de>
parents: 470
diff changeset
  1368
    isCModule ifFalse:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1369
        Smalltalk isInitialized ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1370
            "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1371
             really dont know, if it has changed ...
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1372
             ... but assume, that new classes have been installed.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1373
            "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1374
            Smalltalk changed.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  1375
        ]
157
d7f68808a258 reload objects in the previous order
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  1376
    ].
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1377
    ^ handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1378
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1379
    "Modified: / 21.10.1998 / 15:19:10 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1380
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1381
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1382
unloadAllObsoleteObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1383
    "unload all dynamically loaded object files for which the classes/method
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1384
     has been already garbage collected."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1385
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1386
    LoadedObjects notNil ifTrue:[
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1387
	LoadedObjects keys copy do:[:name |
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1388
	    |handle|
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1389
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1390
	    handle := LoadedObjects at:name ifAbsent:nil.
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1391
	    (handle notNil and:[handle isObsolete]) ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1392
		self unloadObjectFile:name
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1393
	    ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1394
	]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1395
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1396
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1397
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1398
     ObjectFileLoader unloadAllObsoleteObjectFiles
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1399
    "
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1400
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1401
    "Modified: 5.12.1995 / 18:16:52 / cg"
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1402
!
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1403
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1404
unloadObjectFile:aFileName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1405
    "unload an object file (.o-file) from the image.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1406
     DANGER ALERT: currently, you have to make sure that no references to
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1407
     objects of this module exist - in future versions, the system will keep
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1408
     track of these. For now, use at your own risk.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1409
     (especially critical are blocks-functions)."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1410
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1411
    |handle|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1412
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1413
    LoadedObjects notNil ifTrue:[
153
90df8e05815c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1414
	handle := LoadedObjects at:aFileName ifAbsent:nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1415
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1416
    handle isNil ifTrue:[
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1417
	('OBJFLOADER: oops file to be unloaded was not loaded dynamically (', aFileName , ')') infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1418
	^ self
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1419
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1420
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1421
    "/ call the modules deInit-function ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1422
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1423
    "/ unload ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1424
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1425
    self unloadDynamicObject:handle
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1426
!
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1427
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1428
unloadObjectFileAndRemoveClasses:aFileName
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1429
    "unload an object file (.o-file) from the image and remove all
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1430
     corresponding classes from the system.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1431
     DANGER ALERT: currently, you have to make sure that no references to
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1432
     objects of this module exist - in future versions, the system will keep
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1433
     track of these. For now, use at your own risk.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1434
     (especially critical are blocks-functions)."
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1435
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1436
    |handle|
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1437
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1438
    LoadedObjects notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1439
	handle := LoadedObjects at:aFileName ifAbsent:nil
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1440
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1441
    handle isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1442
	('OBJFLOADER: oops file to be unloaded was not loaded dynamically (', (aFileName ? 'unknown-file') , ')') infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1443
	^ self
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1444
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1445
    handle isClassLibHandle ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1446
	self warn:'module is not a classLib module'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1447
	^ self
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1448
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1449
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1450
    "/ remove the classes ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1451
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1452
    Class withoutUpdatingChangesDo:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1453
	handle classes do:[:aClass |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1454
	    aClass notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1455
		aClass isMeta ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1456
		    aClass removeFromSystem
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1457
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1458
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1459
	]
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1460
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1461
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1462
    "/ call the modules deInit-function ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1463
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1464
    "/ unload ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1465
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1466
    self unloadDynamicObject:handle
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1467
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1468
    "Modified: / 12.12.1997 / 22:12:28 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1469
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1470
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1471
!ObjectFileLoader class methodsFor:'dynamic object queries'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1472
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1473
findFunction:functionName suffix:suffix in:handle
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1474
    "look for the init function and returns its address"
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1475
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1476
    |initAddr className nm|
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1477
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1478
    "/ care for colons, as found in nameSpace classes ...
747
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1479
    nm := functionName asString copyReplaceAll:$: with:$_.
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1480
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1481
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1482
     look for explicit init function
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1483
    "
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1484
    initAddr := self getFunction:(nm , suffix) from:handle.
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1485
    initAddr notNil ifTrue:[^ initAddr].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1486
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1487
    initAddr := self getFunction:('_' , nm , suffix) from:handle.
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1488
    initAddr notNil ifTrue:[^ initAddr].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1489
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1490
    "/
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1491
    "/ special for broken ultrix nlist
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1492
    "/ (will not find symbol with single underscore)
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1493
    "/ workaround: add another underscore and retry
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1494
    "/
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1495
    initAddr := self getFunction:('__' , nm , suffix) from:handle.
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1496
    initAddr notNil ifTrue:[^ initAddr].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1497
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1498
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1499
     look for reverse abbreviation
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1500
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1501
    className := Smalltalk classNameForFile:functionName.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1502
    className notNil ifTrue:[
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1503
	initAddr := self getFunction:(className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1504
	initAddr notNil ifTrue:[^ initAddr].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1505
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1506
	initAddr := self getFunction:('_' , className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1507
	initAddr isNil ifTrue:[
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1508
	    "/
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1509
	    "/ special for broken ultrix nlist
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1510
	    "/ (will not find symbol with single underscore)
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1511
	    "/ workaround: add another underscore and retry
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1512
	    "/
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1513
	    initAddr := self getFunction:('__' , className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1514
	].
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1515
    ].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1516
    ^ initAddr
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1517
747
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1518
    "Created: / 13.7.1996 / 00:38:01 / cg"
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1519
    "Modified: / 18.7.1998 / 22:59:12 / cg"
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1520
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1521
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1522
findInitFunction:functionName in:handle
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1523
    "look for the init function and returns its address"
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1524
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1525
    ^ self findFunction:functionName suffix:'_Init' in:handle
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1526
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1527
    "Modified: 13.7.1996 / 00:38:33 / cg"
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1528
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1529
1745
1f6a7769faf0 allow for symbol-names
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1530
getFunction:aStringOrSymbol from:handle
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1531
    "return the address of a function from a dynamically loaded object file.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1532
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1533
     Return the address of the function, or nil on any error."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1534
1745
1f6a7769faf0 allow for symbol-names
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1535
    ^ self getSymbol:aStringOrSymbol asString function:true from:handle
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1536
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1537
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1538
getListOfUndefinedSymbolsFrom:aHandle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1539
    "return a collection of undefined symbols in a dynamically loaded object file.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1540
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1541
     Not all systems allow an object with undefined symbols to be
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1542
     loaded (actually, only dld does)."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1543
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1544
    |list|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1545
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1546
%{  /* STACK: 20000 */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1547
#ifdef GNU_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1548
    void (*func)();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1549
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1550
    char *name;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1551
    int nMax;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1552
    char **undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1553
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1554
    undefNames = dld_list_undefined_sym();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1555
    if (dld_undefined_sym_count > 0) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1556
	char **nm;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1557
	int index;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1558
	int count = dld_undefined_sym_count;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1559
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1560
	if (count > 100) count = 100;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1561
	list = __ARRAY_NEW_INT(count);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1562
	if (list) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1563
	    nm = undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1564
	    for (index = 0; index < count; index++) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1565
		OBJ s;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1566
238
4d80cc4b86dd underscore cleanup
Claus Gittinger <cg@exept.de>
parents: 228
diff changeset
  1567
		s = __MKSTRING(*nm);
4d80cc4b86dd underscore cleanup
Claus Gittinger <cg@exept.de>
parents: 228
diff changeset
  1568
		__ArrayInstPtr(list)->a_element[index] = s;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1569
		__STORE(list, s);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1570
		nm++;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1571
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1572
	    free(undefNames);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1573
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1574
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1575
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1576
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1577
#ifdef DL1_6
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1578
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1579
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1580
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1581
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1582
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1583
#ifdef SYSV4_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1584
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1585
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1586
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1587
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1588
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1589
#ifdef SUN_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1590
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1591
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1592
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1593
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1594
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1595
#ifdef NEXT_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1596
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1597
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1598
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1599
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1600
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1601
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1602
    /*
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1603
     * dont know how to do it
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1604
     */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1605
#endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1606
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1607
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1608
    /*
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1609
     * dont know how to do it
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1610
     */
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1611
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1612
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1613
%}.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1614
    ^ list
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1615
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1616
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1617
getSymbol:aString function:isFunction from:aHandle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1618
    "return the address of a symbol/function from a dynamically loaded object file.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1619
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1620
     Return the address of the symbol, or nil on any error."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1621
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1622
    |sysHandle1 sysHandle2 pathName address|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1623
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1624
    sysHandle1 := aHandle sysHandle1.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1625
    sysHandle2 := aHandle sysHandle2.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1626
    pathName := aHandle pathName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1627
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1628
%{  /* STACK: 20000 */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1629
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1630
#ifdef GNU_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1631
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1632
    void (*func)();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1633
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1634
    char *name;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1635
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1636
    if (__isString(aString)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1637
	name = (char *) __stringVal(aString);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1638
	if (isFunction == false) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1639
	    addr = dld_get_symbol(name);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1640
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1641
		if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1642
		    printf("addr of %s = %x\n", name, addr);
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1643
		}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1644
		address = __MKUINT( addr );
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1645
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1646
	} else {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1647
	    func = (void (*) ()) dld_get_func(name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1648
	    if (func) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1649
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1650
		    printf("addr of %s = %x\n", name, (INT)func);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1651
		}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1652
		if (dld_function_executable_p(name)) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1653
		    address = __MKUINT( (INT)func );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1654
		} else {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1655
		    char **undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1656
		    char **nm;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1657
		    int i;
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1658
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1659
		    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1660
			printf ("function %s not executable\n", name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1661
			dld_perror("not executable");
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1662
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1663
			printf("undefined:\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1664
			nm = undefNames = dld_list_undefined_sym();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1665
			for (i=dld_undefined_sym_count; i; i--) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1666
			    printf("    %s\n", *nm++);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1667
			}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1668
			free(undefNames);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1669
		    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1670
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1671
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1672
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1673
		    printf ("function %s not found\n", name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1674
		    dld_perror("get_func");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1675
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1676
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1677
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1678
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1679
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1680
#endif /* GNU_DL */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1681
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1682
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1683
  {
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1684
    void *h;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1685
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1686
    INT val;
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1687
    FARPROC entry;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1688
    HMODULE handle;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1689
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1690
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1691
	val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1692
	handle = (HMODULE)(val);
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1693
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1694
	    if (@global(Verbose) == true)
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1695
		printf("get sym <%s> handle = %x\n", __stringVal(aString), (int)handle);
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1696
	    entry = GetProcAddress(handle, (char *) __stringVal(aString));
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1697
	    if (entry != NULL) {
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1698
		addr = (void *)entry;
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1699
		if (@global(Verbose) == true) {
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1700
		    printf("GetProcAddr %s ok; addr = %x\n", __stringVal(aString), addr);
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1701
		}
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1702
		address = __MKUINT( (int)addr );
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1703
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1704
		if (@global(Verbose) == true) {
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1705
		    printf("GetProcAddr %s error: %x\n", __stringVal(aString), GetLastError());
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1706
		}
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1707
	    }
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1708
	}
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1709
    }
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1710
  }
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1711
#endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1712
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1713
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1714
  {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1715
    void *h;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1716
    void *addr;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1717
    INT val;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1718
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1719
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1720
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1721
	val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1722
	handle = (void *)(val);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1723
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1724
	if (__isString(aString)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1725
	    if (@global(Verbose) == true)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1726
		printf("get sym <%s> handle = %x\n", __stringVal(aString), (int)handle);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1727
	    entry = NULL;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1728
	    get_image_symbol((image_id) handle, (char *) __stringVal(aString), B_SYMBOL_TYPE_TEXT, &entry);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1729
	    if (entry != NULL) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1730
		addr = (void *)entry;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1731
		if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1732
		    printf("get_image_symbol %s ok; addr = %x\n", __stringVal(aString), addr);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1733
		}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1734
		address = __MKUINT( (int)addr );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1735
	    } else {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1736
		if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1737
		    printf("get_image_symbol %s error\n", __stringVal(aString));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1738
		}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1739
	    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1740
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1741
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1742
  }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1743
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1744
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1745
#ifdef DL1_6
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1746
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1747
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1748
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1749
    INT val;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1750
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1751
    if (__isString(aString)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1752
	if (__isString(sysHandle1)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1753
	    if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1754
		printf("get sym <%s> handle = %x\n",
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1755
			__stringVal(aString), __stringVal(sysHandle1));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1756
	    addr = dl_getsymbol(__stringVal(sysHandle1), __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1757
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1758
		if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1759
		    printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1760
		address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1761
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1762
		if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1763
		    printf("dl_getsymbol %s failed\n", __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1764
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1765
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1766
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1767
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1768
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1769
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1770
#ifdef SYSV4_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1771
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1772
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1773
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1774
    INT val;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1775
    OBJ low = sysHandle1, hi = sysHandle2;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1776
    extern void *dlsym();
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1777
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1778
    if (__bothSmallInteger(low, hi)) {
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
  1779
#if __POINTER_SIZE__ == 8
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1780
	val = (__intVal(hi) << 32) + __intVal(low);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1781
#else
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1782
	val = (__intVal(hi) << 16) + __intVal(low);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1783
#endif
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1784
	h = (void *)(val);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1785
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1786
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1787
		printf("get sym <%s> handle = %x\n", __stringVal(aString), h);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1788
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1789
	    addr = dlsym(h, (char *) __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1790
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1791
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1792
		    printf("dlsym %s ok; addr = %x\n", __stringVal(aString), addr);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1793
		}
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1794
		address = __MKUINT( (INT)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1795
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1796
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1797
		    printf("dlsym %s error: %s\n", __stringVal(aString), dlerror());
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1798
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1799
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1800
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1801
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1802
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1803
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1804
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1805
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1806
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1807
    void *h;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1808
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1809
    INT val, ret;
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1810
    OBJ low = sysHandle1, hi = sysHandle2;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1811
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1812
    if (__bothSmallInteger(low, hi)) {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1813
	val = (_intVal(hi) << 16) + _intVal(low);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1814
	h = (void *)(val);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1815
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1816
	    if (@global(Verbose) == true) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1817
		printf("get sym <%s> handle = %x\n", __stringVal(aString), h);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1818
	    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1819
	    ret = shl_findsym(h, __stringVal(aString), TYPE_UNDEFINED, &addr);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1820
	    if (ret != 0) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1821
		if (@global(Verbose) == true) {
804
0fe603902669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
  1822
		    printf("dlsym %s error; errno=%d\n", __stringVal(aString), errno);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1823
		}
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1824
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1825
		if (@global(Verbose) == true) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1826
		    printf("dlsym %s ok; addr = %x\n", __stringVal(aString), addr);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1827
		}
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1828
		address = __MKUINT( (INT)addr );
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1829
	    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1830
	}
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1831
    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1832
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1833
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1834
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1835
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1836
#ifdef AIX_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1837
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1838
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1839
    void *addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1840
    int val;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1841
    struct nlist nl[2];
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1842
    OBJ low = sysHandle1, hi = sysHandle2;
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1843
    char nameBuffer[256];
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1844
    static struct funcDescriptor {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1845
	unsigned vaddr;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1846
	unsigned long2;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1847
	unsigned long3;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1848
    } descriptor;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1849
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1850
    if (__bothSmallInteger(low, hi)
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1851
     && __isString(aString) && __isString(pathName)) {
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1852
	val = (__intVal(hi) << 16) + __intVal(low);
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1853
	h = (void *)(val);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1854
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1855
	if (@global(Verbose) == true) {
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1856
	    printf("get sym <%s> handle = %x path= %s\n",
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1857
			__stringVal(aString), h, __stringVal(pathName));
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1858
	}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1859
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1860
#define USE_ENTRY
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1861
#ifdef USE_ENTRY
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1862
	/*
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1863
	 * only works, if the entry-function is the Init function
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1864
	 * (i.e. linked with -e _xxx_Init)
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1865
	 */
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1866
	if (@global(Verbose) == true) {
858
2697c8300306 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1867
	    printf("returned handle as addr = %x\n", h);
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1868
	}
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1869
	address = __MKUINT( (int)(h) );
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1870
#else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1871
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1872
# ifdef USE_DESCRIPTOR
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1873
	if (isFunction == true) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1874
# else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1875
	if (0) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1876
# endif
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1877
	    nameBuffer[0] = '.';
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1878
	    strcpy(nameBuffer+1, aString);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1879
	    nl[0].n_name = nameBuffer;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1880
	} else {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1881
	    nl[0].n_name = __stringVal(aString);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1882
	}
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1883
	nl[1].n_name = "";
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1884
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1885
	if (nlist(__stringVal(pathName), &nl) == -1) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1886
	    if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1887
		printf("nlist error\n");
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1888
	    }
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1889
	} else {
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1890
	    addr = (void *)((unsigned)nl[0].n_value + (unsigned)h);
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1891
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1892
	    if (isFunction == true) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1893
# ifdef USE_DESCRIPTOR
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1894
		printf("daddr = %x\n", addr);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1895
		printf("daddr[0] = %x\n", ((long *)addr)[0]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1896
		printf("daddr[1] = %x\n", ((long *)addr)[1]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1897
		printf("daddr[2] = %x\n", ((long *)addr)[2]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1898
# endif
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1899
	    }
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1900
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1901
	    if (@global(Verbose) == true) {
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  1902
		printf("value=%x section=%d type=%x sclass=%d\n",
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1903
			nl[0].n_value, nl[0].n_scnum, nl[0].n_type, nl[0].n_sclass);
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1904
		printf("vaddr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1905
	    }
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1906
# ifdef DOES_NOT_WORK
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1907
	    address = __MKUINT( (int)addr );
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1908
# else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1909
	    descriptor.vaddr = (unsigned) addr;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1910
	    descriptor.long2 = 0;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1911
	    descriptor.long3 = 0;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1912
	    address = __MKUINT( (int)(&descriptor) );
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1913
# endif
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1914
	}
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1915
#endif /* dont USE_ENTRY */
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1916
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1917
  }
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1918
#endif /* AIX_DL */
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1919
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1920
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1921
#ifdef SUN_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1922
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1923
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1924
    void *addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1925
    int val;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1926
    OBJ low = sysHandle1, hi = sysHandle2;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1927
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1928
    if (__bothSmallInteger(low, hi)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1929
	val = (_intVal(hi) << 16) + _intVal(low);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1930
	h = (void *)(val);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1931
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1932
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1933
		printf("get sym <%s> handle = %x\n", __stringVal(aString), h);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1934
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1935
	    addr = dlsym(h, __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1936
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1937
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1938
		    printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1939
		}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1940
		address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1941
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1942
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1943
		    printf("dlsym %s error: %s\n", __stringVal(aString), dlerror());
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1944
		}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1945
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1946
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1947
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1948
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1949
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1950
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1951
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1952
#ifdef NEXT_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1953
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1954
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1955
    long result;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1956
    NXStream *errOut;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1957
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1958
    if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1959
	if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1960
	    printf("get sym <%s>\n", __stringVal(aString));
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  1961
	}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1962
	errOut = NXOpenFile(2, 2);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1963
	result = rld_lookup(errOut,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1964
			    (char *) __stringVal(aString),
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1965
			    &addr);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1966
	NXClose(errOut);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1967
	if (result) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1968
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1969
		printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1970
	    }
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1971
	    address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1972
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1973
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1974
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1975
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1976
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1977
%}.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1978
    ^ address
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1979
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1980
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1981
hasUndefinedSymbolsIn:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1982
    "return true, if a module has undefined symbols in it.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1983
     This is only possible if the system supports loading
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1984
     modules with undefined things in it - most do not"
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1985
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1986
    ^ (self getListOfUndefinedSymbolsFrom:handle) size > 0
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1987
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1988
    "Modified: 25.4.1996 / 09:47:27 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1989
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1990
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1991
initFunctionBasenameForFile:aFileName
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1992
    "return the expected initFunctions name, given a fileName"
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1993
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1994
    |name suffixLen|
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1995
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1996
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1997
     first, expect the classes-name to be the fileName-base
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1998
    "
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1999
    name := aFileName asFilename.
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2000
    suffixLen := 0.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2001
    self validBinaryExtensions do:[:suffix |
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2002
	suffixLen == 0 ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2003
	    (name hasSuffix:suffix) ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2004
		suffixLen := suffix size + 1
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2005
	    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2006
	]
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2007
    ].
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2008
    name := name baseName.
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
  2009
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2010
    suffixLen ~~ 0 ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2011
	name := name copyWithoutLast:suffixLen
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2012
    ].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2013
    ^ name.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2014
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2015
    "
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2016
     ObjectFileLoader initFunctionBasenameForFile:'libbasic.so'
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2017
     ObjectFileLoader initFunctionBasenameForFile:'demo.so'
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2018
     ObjectFileLoader initFunctionBasenameForFile:'demo.o'
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2019
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2020
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2021
    "Created: / 13.7.1996 / 00:01:54 / cg"
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2022
    "Modified: / 1.10.1998 / 12:47:50 / cg"
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2023
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2024
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2025
isCPlusPlusObject:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2026
    "return true, if the loaded object is a c++ object module.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2027
     This is not yet fully implemented/supported."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2028
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2029
    (self getSymbol:'__gnu_compiled_cplusplus' function:true from:handle) notNil ifTrue:[^ true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2030
    (self getSymbol:'__CTOR_LIST__' function:true from:handle) notNil ifTrue:[^ true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2031
    (self getSymbol:'__CTOR_LIST__' function:false from:handle) notNil ifTrue:[^ true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2032
    (self getSymbol:'__gnu_compiled_cplusplus' function:false from:handle) notNil ifTrue:[^ true].
6
0cd4e7480440 *** empty log message ***
claus
parents: 3
diff changeset
  2033
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2034
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2035
    "Modified: 25.4.1996 / 09:48:19 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2036
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2037
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2038
isObjectiveCObject:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2039
    "return true, if the loaded object is an objective-C object module.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2040
     This is not yet implemented/supported"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2041
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2042
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2043
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2044
    "Modified: 25.4.1996 / 09:47:59 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2045
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2046
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2047
isSmalltalkObject:handle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2048
    "return true, if the loaded object is a smalltalk object module"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2049
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2050
    "not yet implemented - stc_compiled_smalltalk is a static symbol,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2051
     not found in list - need nm-interface, or nlist-walker
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2052
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2053
    ^ true.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2054
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  2055
"/    (self getSymbol:'__stc_compiled_smalltalk' function:true from:handle) notNil ifTrue:[^ true].
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  2056
"/    (self getSymbol:'__stc_compiled_smalltalk' function:false from:handle) notNil ifTrue:[^ true].
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  2057
"/    ^ false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2058
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2059
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2060
listUndefinedSymbolsIn:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2061
    "list undefined objects in a module on the transcript"
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2062
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2063
    |undefinedNames|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2064
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2065
    undefinedNames := self getListOfUndefinedSymbolsFrom:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2066
    undefinedNames size > 0 ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2067
	Transcript showCR:'undefined:'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2068
	undefinedNames do:[:aName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2069
	    Transcript showCR:'    ' , aName
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2070
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2071
    ].
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2072
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  2073
    "Modified: 18.5.1996 / 15:43:45 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2074
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2075
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2076
namesMatching:aPattern segment:segmentPattern in:aFileName
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2077
    "search for entries which match a pattern.
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2078
     This is obsolete & rubbish - it will vanish soon"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2079
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2080
    |p l s addr segment name entry|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2081
766
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2082
    OperatingSystem isVMSlike ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2083
	"/ no nm command
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2084
	^ nil
766
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2085
    ].
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2086
    OperatingSystem isMSDOSlike ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2087
	"/ no nm command
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2088
	^ nil
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  2089
    ].
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2090
    OperatingSystem getOSType = 'aix' ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2091
	"/ no useful nm info
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2092
	^ nil
749
86cf38f5a961 win32 change.
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  2093
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2094
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2095
    l := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2096
    p := PipeStream readingFrom:(self nm:aFileName).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2097
    p isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2098
	('ObjectFileLoader [info]: cannot read names from ' , aFileName) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2099
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2100
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2101
    [p atEnd] whileFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2102
	entry := p nextLine.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2103
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2104
	    entry infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2105
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2106
	entry notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2107
	    s := ReadStream on:entry.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2108
	    addr := s nextAlphaNumericWord.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2109
	    s skipSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2110
	    segment := s upToSeparator.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2111
	    s skipSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2112
	    name := s upToEnd withoutSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2113
	    (addr notNil and:[segment notNil and:[name notNil]]) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2114
		(aPattern match:name) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2115
		    (segmentPattern isNil or:[segmentPattern match:segment]) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2116
			l add:name.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2117
			Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2118
			    ('found name: ' , name) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2119
			]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2120
		    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2121
			Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2122
			    name infoPrint. ' segment mismatch ' infoPrint.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2123
			    segmentPattern infoPrint. ' ' infoPrint. segment infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2124
			]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2125
		    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2126
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2127
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2128
	]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2129
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2130
    p close.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2131
    ^ l
225
122d8ff18aff nicer message
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
  2132
749
86cf38f5a961 win32 change.
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  2133
    "Modified: / 27.7.1998 / 20:10:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2134
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2135
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2136
releaseSymbolTable
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2137
    "this is needed on NeXT to forget loaded names. If this wasnt done,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2138
     the same class could not be loaded in again due to multiple defines.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2139
     On other architectures, this is not needed and therefore a noop."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2140
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2141
%{
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2142
#ifdef NEXT_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2143
    NXStream *errOut;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2144
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2145
    errOut = NXOpenFile(2, 2);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2146
    rld_unload_all(errOut, (long)0);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2147
    rld_load_basefile(errOut, "smalltalk");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2148
    NXClose(errOut);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2149
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2150
%}
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2151
! !
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2152
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2153
!ObjectFileLoader class methodsFor:'image save/restart'!
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2154
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2155
invalidateAndRememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2156
    "invalidate code refs into all dynamically loaded object files.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2157
     Required before writing a snapshot image."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2158
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2159
    LoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2160
	ActuallyLoadedObjects := LoadedObjects.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2161
	self rememberAllObjectFiles.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2162
	ActuallyLoadedObjects keys do:[:aFileName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2163
	    |handle|
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2164
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2165
	    handle := ActuallyLoadedObjects at:aFileName.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2166
	    handle isNil ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2167
		self error:'oops, no handle'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2168
	    ] ifFalse:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2169
		(handle isClassLibHandle or:[handle isMethodHandle]) ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2170
		    self invalidateModule:handle
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2171
		]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2172
	    ]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2173
	].
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2174
	LoadedObjects := nil.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2175
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2176
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2177
    "Created: 5.10.1995 / 15:48:56 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2178
    "Modified: 5.10.1995 / 16:48:51 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2179
    "Modified: 12.7.1996 / 17:13:45 / cg"
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
  2180
!
6
0cd4e7480440 *** empty log message ***
claus
parents: 3
diff changeset
  2181
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2182
reloadAllRememberedObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2183
    "reload all object modules as were loaded when the image was saved.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2184
     Some care has to be taken, if files are missing or otherwise corrupted."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2185
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2186
    |oldDummyMethod who m newHandle
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2187
     savedOldClasses savedByteCodeMethods savedMethods
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2188
     functions newFunction
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  2189
     saveOldMethodsPerClass anyModulesToInitialize|
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2190
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2191
    PreviouslyLoadedObjects notNil ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2192
        anyModulesToInitialize := false.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2193
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2194
        PreviouslyLoadedObjects do:[:entry |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2195
            |fileName handle cls sel|
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2196
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2197
            fileName := entry key.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2198
            handle := entry value.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2199
            handle moduleID:nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2200
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2201
            handle isClassLibHandle ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2202
                ('ObjectFileLoader [info]: reloading classes in ' , fileName , ' ...') infoPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2203
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2204
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2205
                "/ remember all byteCode methods (as added in the session)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2206
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2207
                savedByteCodeMethods := Dictionary new.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2208
                savedOldClasses := IdentitySet new.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2209
                saveOldMethodsPerClass := Dictionary new.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2210
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2211
                handle classes do:[:aClass |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2212
                    |clsName mthdDict|
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2213
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2214
                    (aClass notNil and:[aClass ~~ 0]) ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2215
                        clsName := aClass name.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2216
                        mthdDict := aClass methodDictionary.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2217
                        saveOldMethodsPerClass at:clsName put:mthdDict copy.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2218
                        savedMethods := IdentityDictionary new.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2219
                        savedOldClasses add:aClass.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2220
                        mthdDict keysAndValuesDo:[:sel :m |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2221
                            m byteCode notNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2222
                                "/ an interpreted method - must be preserved
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2223
                                savedMethods at:sel put:m
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2224
                            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2225
                        ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2226
                        savedMethods notEmpty ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2227
                            savedByteCodeMethods at:clsName put:savedMethods
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2228
                        ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2229
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2230
                ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2231
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2232
                "/ load the class binary
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2233
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2234
                handle := self loadObjectFile:fileName invokeInitializeMethods:false.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2235
                handle notNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2236
                    anyModulesToInitialize := true
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2237
                ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2238
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2239
                "/ after reloading of the objectFile,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2240
                "/ some of the changes made in the previous life have to be
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2241
                "/ redone here - otherwise, we will be left with the
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2242
                "/ state contained in the loaded objectModule - instead of
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2243
                "/ what we had when saving the image ...
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2244
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2245
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2246
                "/ reinstall the byteCode methods
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2247
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2248
                savedByteCodeMethods keysAndValuesDo:[:nm :savedMethods |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2249
                    |cls|
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2250
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2251
                    cls := Smalltalk classNamed:nm.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2252
                    savedMethods keysAndValuesDo:[:sel :m |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2253
                        cls primAddSelector:sel withMethod:m.
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2254
"/ ('preserved ' , cls name , '>>' , sel) printCR.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2255
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2256
                ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2257
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2258
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2259
                "/ re-remove removed methods
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2260
                "/ and re-change method categories
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2261
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2262
                savedOldClasses do:[:oldClass |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2263
                    |newClass oldMethods newMethodDict oldMthd newMthd
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2264
                     oldCat oldClassVarString oldClassCategory|
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2265
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2266
                    newClass := Smalltalk classNamed:(oldClass name).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2267
                    newClass notNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2268
                        oldClassVarString := oldClass classVariableString.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2269
                        newClass classVariableString ~= oldClassVarString ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2270
                            "/ there is no need to recreate the variable
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2271
                            "/ (its in the smalltalk dictionary)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2272
                            newClass setClassVariableString:oldClassVarString
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2273
                        ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2274
                        newClass isMeta ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2275
                            oldClassCategory := oldClass category.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2276
                            newClass category ~= oldClassCategory ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2277
                                newClass setCategory:oldClassCategory
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2278
                            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2279
                        ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2280
                        oldMethods := saveOldMethodsPerClass at:oldClass name.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2281
                        newMethodDict := newClass methodDictionary.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2282
                        newMethodDict keys copy do:[:newSelector |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2283
                            (oldMethods includesKey:newSelector) ifFalse:[
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2284
"/                                ('ObjectFileLoader [info]: remove method #' , newSelector , ' from reloaded ' , oldClass name , '.') infoPrintCR.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2285
                                newMethodDict removeKey:newSelector
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2286
                            ] ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2287
                                oldMthd := oldMethods at:newSelector.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2288
                                newMthd := newMethodDict at:newSelector.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2289
                                newMthd category:oldMthd category
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2290
                            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2291
                        ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2292
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2293
                ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2294
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2295
                "/
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2296
                "/ validate old-classes vs. new classes.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2297
                "/ and if things look ok, get rid of old stuff
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2298
                "/ and make instances become instances of the new class
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2299
                "/
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2300
"/                ('ObjectFileLoader [info]: migrating classes ...') infoPrintCR.
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2301
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2302
                savedOldClasses do:[:oldClass |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2303
                    |newClass oldCat oldCVars|
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2304
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2305
                    newClass := Smalltalk classNamed:(oldClass name).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2306
                    newClass == oldClass ifTrue:[
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2307
"/                        ('ObjectFileLoader [info]: class ' , oldClass name , ' reloaded.') infoPrintCR.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2308
                    ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2309
                        (newClass isNil or:[newClass == oldClass]) ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2310
                            ('ObjectFileLoader [warning]: reload of ' , oldClass name , ' seemed to fail.') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2311
                        ] ifFalse:[
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2312
"/'oldSize: ' print. oldClass instSize print. ' (' print. oldClass instSize class name print. ') ' print.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2313
"/'newSize: ' print. newClass instSize print. ' (' print. oldClass instSize class name print. ') ' printCR.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2314
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2315
                            oldClass instSize ~~ newClass instSize ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2316
                                ('ObjectFileLoader [warning]: ' , oldClass name , ' has changed its size.') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2317
                            ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2318
                                oldClass class instSize ~~ newClass class instSize ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2319
                                    ('ObjectFileLoader [warning]: ' , oldClass name , ' class has changed its size.') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2320
                                ] ifFalse:[
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2321
"/                                    ('ObjectFileLoader [info]: migrating ' , oldClass name) infoPrintCR.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2322
                                    (oldCat := oldClass category) ~= newClass category ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2323
                                        newClass setCategory:oldCat.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2324
                                    ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2325
                                    (oldCVars := oldClass classVariableString) ~= newClass classVariableString ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2326
                                        newClass setClassVariableString:oldCVars
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2327
                                    ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2328
                                    "/ copy over the oldClasses class-instVars
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2329
                                    (Class instSize + 1) to:(oldClass class instSize) do:[:idx |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2330
                                        newClass instVarAt:idx put:(oldClass instVarAt:idx)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2331
                                    ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2332
                                    oldClass becomeSameAs:newClass
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2333
"/                                    oldClass become:newClass
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2334
                                ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2335
                            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2336
                        ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2337
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2338
                ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2339
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2340
            ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2341
                handle isMethodHandle ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2342
                    oldDummyMethod := handle method.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2343
                    (oldDummyMethod isKindOf:Method) ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2344
                        ('ObjectFileLoader [info]: ignore obsolete (already collected) method in ' , fileName) infoPrintCR
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2345
                    ] ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2346
                        ('ObjectFileLoader [info]: reloading method in ' , fileName , ' ...') infoPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2347
                        who := oldDummyMethod who.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2348
                        newHandle := self loadMethodObjectFile:fileName.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2349
                        newHandle isNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2350
                            ('ObjectFileLoader [warning]: failed to reload method in ' , fileName , ' ...') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2351
                            handle moduleID:nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2352
                        ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2353
                            m := newHandle method.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2354
                            oldDummyMethod sourceFilename notNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2355
                                m sourceFilename:(oldDummyMethod sourceFilename)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2356
                                  position:(oldDummyMethod sourcePosition).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2357
                            ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2358
                                m source:(oldDummyMethod source).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2359
                            ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2360
                            m setPackage:(oldDummyMethod package).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2361
                            who notNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2362
                                cls := who methodClass.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2363
                                sel := who methodSelector.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2364
                                m == (cls compiledMethodAt:sel) ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2365
                                    'ObjectFileLoader [warning]: oops - loaded method installed wrong' errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2366
                                ] ifTrue:[
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2367
"/                                  cls changed:#methodDictionary with:(Array with:sel with:oldDummyMethod).
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2368
                                ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2369
                            ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2370
                        ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2371
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2372
                ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2373
                    handle isFunctionObjectHandle ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2374
                        functions := handle functions.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2375
                        functions isEmpty ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2376
                            ('ObjectFileLoader [info]: ignore obsolete (unreferenced) functions in ' , fileName) infoPrintCR
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2377
                        ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2378
                            newHandle := self loadDynamicObject:fileName.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2379
                            newHandle isNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2380
                                ('ObjectFileLoader [warning]: failed to reload ' , fileName , ' ...') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2381
                                handle moduleID:nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2382
                            ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2383
                                ('ObjectFileLoader [info]: reloading ' , fileName , ' ...') infoPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2384
                                functions do:[:oldFunction |
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2385
                                    newFunction := newHandle getFunction:(oldFunction name).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2386
                                    newFunction isNil ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2387
                                        ('ObjectFileLoader [info]: function: ''' , oldFunction name , ''' no longer present.') errorPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2388
                                        oldFunction code:nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2389
                                        oldFunction setName:oldFunction name moduleHandle:nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2390
                                    ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2391
                                        oldFunction code:(newFunction code).
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2392
                                        oldFunction setName:oldFunction name moduleHandle:newHandle.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2393
                                        ('ObjectFileLoader [info]: rebound function: ''' , oldFunction name , '''.') infoPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2394
                                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2395
                                ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2396
                                handle becomeSameAs:newHandle.      "/ the old handle is now void
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2397
                            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2398
                        ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2399
                    ] ifFalse:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2400
                        ('ObjectFileLoader [info]: ignored invalid (obsolete) objectFile handle: ' , handle printString) infoPrintCR.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2401
                    ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2402
                ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2403
            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2404
        ].
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2405
        PreviouslyLoadedObjects := nil.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2406
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2407
        "/ now, as we hopefully have all loaded,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2408
        "/ send #reinitializeAfterLoad to each of them
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2409
        anyModulesToInitialize ifTrue:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2410
            AbortOperationRequest catch:[
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2411
                self moduleInit:4 forceOld:false interruptable:true.
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2412
            ]
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2413
        ]
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2414
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2415
716
3c0668dceb1e dont try to set a metaclasses category when reloading obj-modules.
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
  2416
    "Modified: / 16.5.1998 / 14:23:12 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2417
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2418
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2419
rememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2420
    "remember all loaded objectModules in the
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2421
     PreviouslyLoadedObjects classVariable.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2422
     Called when an image is restarted to reload all modules which
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2423
     were loaded in the previous life"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2424
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2425
    LoadedObjects notNil ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2426
	PreviouslyLoadedObjects := OrderedCollection new.
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2427
	LoadedObjects keysAndValuesDo:[:name :handle |
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2428
	    handle isForCollectedObject ifTrue:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2429
		('ObjectFileLoader [info]: ignore object for already collected objects in ' , name) infoPrintCR
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2430
	    ] ifFalse:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2431
		PreviouslyLoadedObjects add:(name -> handle)
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2432
	    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2433
	].
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2434
	PreviouslyLoadedObjects sort:[:a :b |
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2435
		|h1 h2|
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2436
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2437
		h1 := a value moduleID.
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2438
		h2 := b value moduleID.
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2439
		h1 isNil
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2440
		    ifTrue:[true]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2441
		    ifFalse:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2442
			h2 isNil
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2443
			    ifTrue:[false]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2444
			    ifFalse:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2445
				h1 < h2
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2446
			    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2447
		    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2448
	].
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2449
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2450
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2451
    "Created: 5.12.1995 / 20:51:07 / cg"
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2452
    "Modified: 10.1.1997 / 15:06:25 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2453
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2454
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2455
revalidateAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2456
    "revalidate code refs into all dynamically loaded object files.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2457
     Required after writing a snapshot image."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2458
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2459
    ActuallyLoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2460
	ActuallyLoadedObjects keys do:[:aFileName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2461
	    |handle|
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2462
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2463
	    handle := ActuallyLoadedObjects at:aFileName.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2464
	    handle isNil ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2465
		self error:'oops, no handle'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2466
	    ] ifFalse:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2467
		(handle isClassLibHandle or:[handle isMethodHandle]) ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2468
		    self revalidateModule:handle
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2469
		]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2470
	    ]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2471
	].
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2472
	LoadedObjects := ActuallyLoadedObjects.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2473
	ActuallyLoadedObjects := PreviouslyLoadedObjects := nil.
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
  2474
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2475
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2476
    "Created: 5.10.1995 / 15:49:08 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2477
    "Modified: 5.10.1995 / 16:49:18 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2478
    "Modified: 12.7.1996 / 17:14:48 / cg"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2479
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2480
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2481
unloadAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2482
    "unload all dynamically loaded object files from the image.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2483
     see DANGER ALERT in ObjectFileLoader>>unloadObjectFile:"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2484
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2485
    LoadedObjects notNil ifTrue:[
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2486
	LoadedObjects keys copy do:[:aFileName |
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2487
	    self unloadObjectFile:aFileName
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2488
	]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2489
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2490
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2491
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2492
     ObjectFileLoader unloadAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2493
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2494
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2495
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2496
unloadAndRememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2497
    "remember all modules and unload them"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2498
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2499
    LoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2500
	self rememberAllObjectFiles.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2501
	self unloadAllObjectFiles
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2502
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2503
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2504
    "Modified: 25.4.1996 / 09:46:27 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2505
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2506
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2507
!ObjectFileLoader class methodsFor:'linking objects'!
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2508
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2509
createLoadableObjectFor:baseFileName
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2510
    "given an oFile, arrange for it to be loadable.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2511
     On ELF systems, this means that it has to be linked with the
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2512
     -shared option into a .so file;
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2513
     DLD based loaders (linux a.out) can directly load a .o file;
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2514
     Other systems may require more ..."
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2515
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2516
    |osType oFileName soFileName expFileName librunExpFileName
1217
61cca5c6d4d1 link flag setup (win32)
Claus Gittinger <cg@exept.de>
parents: 1175
diff changeset
  2517
     needSharedObject ld ldArg expFile ok outfile output libDir|
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2518
750
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2519
    osType := OperatingSystem getOSType.
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2520
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2521
    osType = 'win32' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2522
        self activityNotification:'create def file'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2523
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2524
        "/ create a .def file.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2525
        expFileName := '.\' , baseFileName , '.def'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2526
        [
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2527
            expFile := expFileName asFilename writeStream.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2528
            OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2529
                expFile nextPutLine:'LIBRARY ' , baseFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2530
                expFile nextPutLine:'SEGMENTS'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2531
                expFile nextPutLine:'    INITCODE PRELOAD SHARED'.
1375
e6c119263aad Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 1358
diff changeset
  2532
"/                    expFile nextPutLine:'    INITDATA READ WRITE'.
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2533
                expFile nextPutLine:'EXPORTS'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2534
                expFile nextPutLine:' __' , baseFileName , '_Init'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2535
            ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2536
                expFile nextPutLine:'LIBRARY ' , baseFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2537
                expFile nextPutLine:'CODE EXECUTE READ SHARED'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2538
                expFile nextPutLine:'DATA READ WRITE'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2539
                expFile nextPutLine:'SECTIONS'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2540
                expFile nextPutLine:' INITCODE READ EXECUTE SHARED'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2541
                expFile nextPutLine:' INITDATA READ WRITE'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2542
                expFile nextPutLine:' RODATA READ SHARED'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2543
                expFile nextPutLine:'EXPORTS'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2544
                expFile nextPutLine:' _' , baseFileName , '_Init'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2545
                expFile nextPutLine:'IMPORTS'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2546
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2547
            expFile close.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2548
        ] on:FileStream openErrorSignal do:[:ex| "do nothing"].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2549
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2550
        self activityNotification:'generating shared object'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2551
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2552
        ParserFlags linkArgs isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2553
            ld := ParserFlags linkCommand , ' ' , baseFileName , '.obj'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2554
            ld := ld
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2555
               , ' /NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2556
               , ' /OUT:' , baseFileName , '.dll '
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2557
               , ' /DEF:' , baseFileName , '.def'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2558
        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2559
            libDir := '..\libbc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2560
            libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2561
                libDir := '..\lib\libbc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2562
                libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2563
                    libDir := '..\lib'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2564
                    libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2565
                        libDir := '..\..\libbc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2566
                        libDir asFilename exists ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2567
                            self error:'could not locate directory where .lib files are'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2568
                        ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2569
                    ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2570
                ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2571
            ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2572
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2573
            OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2574
                ld := ParserFlags linkCommand , ' ' , (ParserFlags linkArgs bindWith:baseFileName).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2575
                ld := ld , ' c0d32.obj ' , baseFileName , '.obj '.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2576
                ld := ld , ',' , baseFileName , '.dll,,',libDir,'\librun.lib '.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2577
                ld := ld , (ParserFlags searchedLibraries asStringCollection asStringWith: $ ).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2578
                ld := ld , ' ',libDir,'\cs32i.lib,,'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2579
            ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2580
                LastError := 'currently only borlandC is supported'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2581
                self error:LastError.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2582
            ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2583
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2584
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2585
        outfile := (baseFileName , '.out').
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2586
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2587
        false "OperatingSystem isMSWINDOWSNTlike" ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2588
            ok := OperatingSystem executeCommand:ld
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2589
        ] ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2590
            ok := OperatingSystem executeCommand:(ld , ' >' , outfile).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2591
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2592
            ok ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2593
                output := (baseFileName , '.out') asFilename contents asString.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2594
                Transcript showCR:output; endEntry.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2595
            ]
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2596
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2597
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2598
        (baseFileName , '.out') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2599
        (baseFileName , '.tds') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2600
        (baseFileName , '.ilc') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2601
        (baseFileName , '.ild') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2602
        (baseFileName , '.ilf') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2603
        (baseFileName , '.ils') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2604
        (baseFileName , '.lib') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2605
        (baseFileName , '.map') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2606
        (baseFileName , '.def') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2607
        (baseFileName , '.obj') asFilename delete.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2608
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2609
        ok ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2610
            LastError := output.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2611
            ^ nil
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2612
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2613
        oFileName := (Filename currentDirectory construct:(baseFileName , self sharedLibraryExtension)) name.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2614
        ^ oFileName
750
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2615
    ].
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2616
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2617
    "/ UNIX systems
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2618
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2619
    ld := ParserFlags linkCommand ? 'ld'.
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
  2620
    needSharedObject := false.
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2621
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
  2622
    ObjectFileLoader loadableBinaryObjectFormat == #elf ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2623
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2624
         link it to a shared object with 'ld -shared'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2625
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2626
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2627
        ldArg := LinkSharedArgs ? '-shared'.
1287
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
  2628
    ].
d1199118e73d sharedLib loading (esp. freeBSD)
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
  2629
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2630
    osType = 'irix' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2631
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2632
         link it to a shared object with 'ld -shared'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2633
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2634
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2635
        ldArg := LinkSharedArgs ? '-shared'.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2636
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2637
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2638
    osType = 'sys5_4' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2639
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2640
         link it to a shared object with 'ld -G'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2641
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2642
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2643
        ldArg := LinkSharedArgs ? '-G'.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2644
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2645
698
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2646
    osType = 'osf' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2647
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2648
         link it to a shared object with 'ld -shared'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2649
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2650
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2651
        ldArg := LinkSharedArgs ? '-shared'.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2652
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2653
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2654
    osType = 'solaris' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2655
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2656
         link it to a shared object with 'ld -G -B dynamic'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2657
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2658
        needSharedObject := true.
841
45f929ae2ca0 use 'ld -Bdynamic' instead of 'ld -B dynamic'
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  2659
"/        ldArg := '-G -B dynamic'.
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2660
        ldArg := LinkSharedArgs ? '-G -Bdynamic'.
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2661
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2662
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2663
    osType = 'hpux' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2664
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2665
         link it to a shared object with 'ld -b -B immediate'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2666
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2667
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2668
        ldArg := LinkSharedArgs ? '-b -B immediate'.
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2669
    ].
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2670
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2671
    osType = 'aix' ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2672
        self activityNotification:'create export file'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2673
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2674
        "/ create an exports file.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2675
        expFileName := './' , baseFileName , '.exp'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2676
        [
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2677
            expFile := expFileName asFilename writeStream.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2678
            expFile nextPutAll:'#!! ./' , baseFileName , (self sharedLibraryExtension).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2679
            expFile cr.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2680
            expFile nextPutAll:'_' , baseFileName , '_Init'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2681
            expFile close.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2682
        ] on:FileStream openErrorSignal do:[:ex| "do nothing"].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2683
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2684
        self activityNotification:'generating shared object'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2685
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2686
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2687
         link it to a shared object with 'cc -bI:...librun.exp -bE -bMSRE'
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2688
        "
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2689
        needSharedObject := true.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2690
        ld := 'cc'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2691
        librunExpFileName := Smalltalk getSystemFileName:'lib/librun_aix.exp'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2692
        librunExpFileName isNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2693
            LastError := 'missing exports file: ''lib/librun_aix.exp'' - cannot link'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2694
            ^ nil
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2695
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2696
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2697
        ldArg := '-bI:' , librunExpFileName ,
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2698
                ' -bE:' , baseFileName , '.exp' ,
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2699
                ' -bM:SRE -e _' , baseFileName , '_Init'.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2700
    ].
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2701
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2702
    oFileName := './' , baseFileName , (self objectFileExtension).
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2703
    needSharedObject ifTrue:[
1659
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2704
        self activityNotification:'generating shared object'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2705
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2706
        soFileName := './' , baseFileName , (self sharedLibraryExtension).
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2707
        OperatingSystem removeFile:soFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2708
        ld := ld , ' ' , ldArg , ' ',
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2709
                 (ParserFlags searchedLibraries asStringCollection asStringWith: $ ),
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2710
                 ' -o ' , soFileName , ' ' , oFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2711
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2712
        Verbose ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2713
            'linking with:' infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2714
            '   ' infoPrint. ld infoPrintCR.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2715
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2716
        ok := OperatingSystem
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2717
                executeCommand:(ld , ' >errorOutput 2>&1').
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2718
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2719
        ok ifFalse:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2720
            output := 'errorOutput' asFilename contents asString.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2721
            Transcript showCR:'linker error message:'.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2722
            Transcript showCR:output; endEntry.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2723
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2724
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2725
        OperatingSystem removeFile:oFileName.
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2726
        expFileName notNil ifTrue:[
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2727
            OperatingSystem removeFile:expFileName
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2728
        ].
5ba3deaefc09 flags moved to ParserFlags
Claus Gittinger <cg@exept.de>
parents: 1613
diff changeset
  2729
        ^ soFileName.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2730
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2731
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2732
    "
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2733
     assume we can load an ordinary binary
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2734
    "
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2735
    ^ oFileName
698
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2736
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2737
    "Modified: / 10-11-2001 / 02:01:43 / cg"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2738
    "Modified: / 29-07-2004 / 17:29:44 / stefan"
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2739
! !
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2740
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2741
!ObjectFileLoader class methodsFor:'lowlevel object loading'!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2742
633
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2743
initializeLoader
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2744
    "initialize dynamic loader if required"
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2745
633
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2746
    |stxName stxPathName|
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2747
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2748
    stxPathName := OperatingSystem pathOfSTXExecutable.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2749
%{
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2750
#ifdef GNU_DL
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2751
  {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2752
    static alreadyInitialized = 0;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2753
    extern dld_ignore_redefinitions;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2754
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2755
    if (! alreadyInitialized) {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2756
	alreadyInitialized = 1;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2757
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2758
	if (@global(Verbose) == true) {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2759
	    printf ("dld_init(%s)\n", __stringVal(stxPathName));
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2760
	}
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2761
	/*
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2762
	 * dld requires the running executables name,
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2763
	 * to resolve symbols.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2764
	 */
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2765
	(void) dld_init (__stringVal(stxPathName));
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2766
	dld_ignore_redefinitions = 1;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2767
    }
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2768
  }
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2769
#endif
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2770
%}.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2771
!
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2772
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2773
loadDynamicObject:pathName
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2774
    "load an object-file (load/map into my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2775
     Return a non-nil handle if ok, nil otherwise.
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2776
     No bindings or automatic initializations are done
472
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2777
     - only a pure (low-level) load is performed.
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2778
     For class-files or C-objects to be loaded with this method,
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2779
     it is your responsibility to fetch any init-functions and
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2780
     call them as appropriate.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2781
     This function is not supported on all architectures.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2782
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2783
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2784
    |handle buffer|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2785
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2786
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2787
	('loadDynamic: ' , pathName , ' ...') infoPrintCR
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2788
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2789
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2790
    "/ already loaded ?
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2791
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2792
    LoadedObjects notNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2793
	handle := LoadedObjects at:pathName ifAbsent:nil.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2794
	handle notNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2795
	    Verbose ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2796
		('... ' , pathName , ' already loaded.') infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2797
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2798
	    ^ handle
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2799
	].
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2800
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2801
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2802
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2803
	('initializeLoader...') infoPrintCR
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2804
    ].
589
ee0cc3ae769a care for stx's path; req'd for dld if stx is not found in the current dir.
Claus Gittinger <cg@exept.de>
parents: 587
diff changeset
  2805
    self initializeLoader.
ee0cc3ae769a care for stx's path; req'd for dld if stx is not found in the current dir.
Claus Gittinger <cg@exept.de>
parents: 587
diff changeset
  2806
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2807
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2808
    "/ the 1st two entries are system dependent;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2809
    "/ entry 3 is the pathName
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2810
    "/ entry 4 is a unique ID
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2811
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2812
    buffer := Array new:4.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2813
    buffer at:3 put:pathName.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2814
    buffer at:4 put:NextHandleID. NextHandleID := NextHandleID + 1.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2815
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2816
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2817
	('primLoadDynamicObject...') infoPrintCR
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2818
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2819
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2820
    buffer := self primLoadDynamicObject:pathName into:buffer.
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2821
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2822
	('done') infoPrintCR
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2823
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2824
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2825
    buffer isNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2826
	LastError == #notImplemented ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2827
	    'ObjectFileLoader [warning]: no dynamic load facility present.' infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2828
	] ifFalse:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2829
	    LastError == #linkError ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2830
		LinkErrorMessage notNil ifTrue:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2831
		    ('ObjectFileLoader [warning]: load error:' , LinkErrorMessage) infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2832
		] ifFalse:[
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2833
		    ('ObjectFileLoader [warning]: load error') infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2834
		].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2835
	    ].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2836
	].
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2837
	('ObjectFileLoader [warning]: failed to load: ' , pathName) infoPrintCR.
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2838
	Transcript showCR:('ObjectFileLoader [warning]: failed to load: ' , pathName).
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2839
	^ nil
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2840
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2841
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2842
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2843
     remember loaded object for later unloading
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2844
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2845
    handle := ObjectFileHandle new.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2846
    handle sysHandle1:(buffer at:1).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2847
    handle sysHandle2:(buffer at:2).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2848
    handle pathName:(buffer at:3).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2849
    handle moduleID:(buffer at:4).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2850
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2851
    LoadedObjects isNil ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2852
	LoadedObjects := Dictionary new.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2853
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2854
    LoadedObjects at:pathName put:handle.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2855
    Smalltalk flushCachedClasses.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2856
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2857
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2858
	('loadDynamic ok; handle is: ' , handle printString) infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2859
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2860
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2861
    ^ handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2862
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2863
    "sys5.4:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2864
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2865
     handle := ObjectFileLoader loadDynamicObject:'../stc/mod1.so'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2866
     ObjectFileLoader getFunction:'module1' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2867
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2868
    "next:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2869
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2870
     handle := ObjectFileLoader loadDynamicObject:'../goodies/Path/AbstrPath.o'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2871
     ObjectFileLoader getFunction:'__AbstractPath_Init' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2872
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2873
    "GLD:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2874
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2875
     handle := ObjectFileLoader loadDynamicObject:'../clients/Tetris/Tetris.o'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2876
     ObjectFileLoader getFunction:'__TetrisBlock_Init' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2877
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2878
525
3af9e82358b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 524
diff changeset
  2879
    "Modified: 16.5.1997 / 12:56:33 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2880
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2881
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2882
loadModulesFromListOfUndefined:list
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2883
    "try to figure out what has to be loaded to resolve symbols from list.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2884
     return a list of handles of loaded objects
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2885
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2886
    |inits classNames|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2887
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2888
    inits := list select:[:symbol | symbol notNil and:[symbol endsWith:'_Init']].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2889
    inits notNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2890
	classNames := inits collect:[:symbol |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2891
	    (symbol startsWith:'___') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2892
		symbol copyFrom:4 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2893
	    ] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2894
		(symbol startsWith:'__') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2895
		    symbol copyFrom:3 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2896
		] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2897
		    (symbol startsWith:'_') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2898
			symbol copyFrom:2 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2899
		    ] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2900
			symbol
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2901
		    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2902
		]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2903
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2904
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2905
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2906
	 autoload those classes
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2907
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2908
	classNames do:[:aClassName |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2909
	    |cls|
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2910
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2911
	    (cls := Smalltalk classNamed:aClassName) notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2912
		'ObjectFileLoader [info]: autoloading ' infoPrint. aClassName infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2913
		cls autoload
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2914
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2915
	]
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2916
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2917
    ^ nil
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2918
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  2919
    "Modified: 10.1.1997 / 17:58:23 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2920
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2921
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2922
primLoadDynamicObject:pathName into:anInfoBuffer
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2923
    "load an object-file (map into my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2924
     Return an OS-handle (whatever that is) - where some space
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2925
     (a 3-element array) has to be passed in for this.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2926
     The first two entries are used in a machine dependent way,
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2927
     and callers may not depend on what is found there
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2928
     (instead, only pass around handles transparently).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2929
     This function is not supported on all architectures."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2930
1760
09a5b2b97f29 WindCVS: ----------------------------------------------------------------------
Stefan Vogel <sv@exept.de>
parents: 1759
diff changeset
  2931
%{  /* CALLSUNLIMITEDSTACK(noWIN32) */
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2932
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2933
    if (! __isArray(anInfoBuffer)
646
02b5ea95f888 eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
  2934
     || (__arraySize(anInfoBuffer) < 3)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2935
        RETURN(nil);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2936
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2937
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2938
#ifdef GNU_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2939
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2940
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2941
        if (dld_link(__stringVal(pathName))) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2942
            if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2943
                printf ("link file %s failed\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2944
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2945
            if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2946
                dld_perror("ObjectFileLoader - DLD error cant link");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2947
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2948
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2949
            @global(LinkErrorMessage) = __MKSTRING("DLD error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2950
            RETURN ( nil );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2951
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2952
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = pathName;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2953
        __STORE(anInfoBuffer, pathName);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2954
        RETURN ( anInfoBuffer );
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2955
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2956
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2957
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2958
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2959
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2960
#ifdef WIN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2961
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2962
    HINSTANCE handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2963
    int err;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2964
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2965
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2966
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2967
            fprintf(stderr, "ObjectFileLoader [info]: loading dll: %s...\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2968
            fflush(stderr);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2969
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2970
        handle = LoadLibrary(__stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2971
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2972
            fprintf(stderr, "ObjectFileLoader [info]: handle: %x\n", handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2973
            fflush(stderr);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2974
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2975
        if (handle == NULL) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2976
            char *msg;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2977
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2978
            err = GetLastError();
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2979
            if ((@global(ErrorPrinting) == true)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2980
             || (@global(Verbose) == true)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2981
                fprintf (stderr,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2982
                                 "ObjectFileLoader [warning]: LoadLibrary %s failed; error: %x\n",
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2983
                                 __stringVal(pathName), err);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2984
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2985
            @global(LastError) = @symbol(loadError);;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2986
            @global(LastErrorNumber) = __MKINT(__WIN32_ERR(err));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2987
            switch (err) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2988
                case ERROR_BAD_FORMAT:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2989
                    msg = "LoadLibrary error - bad format";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2990
                default:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2991
                    msg = "LoadLibrary error";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2992
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2993
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2994
            @global(LinkErrorMessage) = __MKSTRING(msg);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2995
            RETURN ( nil );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2996
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2997
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2998
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  2999
        RETURN ( anInfoBuffer );
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3000
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3001
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3002
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3003
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3004
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3005
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3006
  {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3007
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3008
    int err;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3009
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3010
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3011
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3012
            fprintf(stderr, "ObjectFileLoader [info]: loading : %s...\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3013
            fflush(stderr);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3014
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3015
        handle = load_add_on(__stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3016
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3017
            fprintf(stderr, "ObjectFileLoader [info]: handle: %x\n", handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3018
            fflush(stderr);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3019
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3020
        if (handle == NULL) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3021
            char *msg;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3022
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3023
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3024
            @global(LinkErrorMessage) = __MKSTRING("unknown error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3025
            RETURN ( nil );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3026
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3027
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3028
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3029
        RETURN ( anInfoBuffer );
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3030
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3031
    RETURN ( nil );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3032
  }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3033
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3034
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3035
#ifdef DL1_6
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3036
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3037
    extern char *__myName__;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3038
    char *ldname;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3039
    OBJ tmpName;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3040
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3041
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3042
        if ( dl_loadmod_only(__myName__, __stringVal(pathName), &ldname) == 0 ) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3043
            if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3044
                printf ("link file %s failed\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3045
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3046
            @global(LinkErrorMessage) = __MKSTRING("dl_load error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3047
            RETURN ( nil );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3048
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3049
        /*
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3050
         * returns the name of the temporary ld-file
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3051
         * use that as handle ...
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3052
         */
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3053
        tmpName = __MKSTRING(ldname);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3054
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = tmpName;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3055
        __STORE(anInfoBuffer, tmpName);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3056
        RETURN ( anInfoBuffer );
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3057
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3058
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3059
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3060
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3061
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3062
#ifdef AIX_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3063
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3064
    char *objName, *libPath;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3065
    int *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3066
    extern errno;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3067
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3068
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3069
        objName = __stringVal(pathName);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3070
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3071
        if (__isString(@global(LibPath))) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3072
            libPath = __stringVal(@global(LibPath));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3073
        } else {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3074
            libPath = (char *)0;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3075
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3076
        if ( (handle = (int *) load(objName, 0, libPath)) == 0 ) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3077
            if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3078
                char *messages[64];
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3079
                int i;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3080
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3081
                fprintf (stderr,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3082
                         "ObjectFileLoader [info]: load file %s failed errno=%d\n",
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3083
                         objName, errno);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3084
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3085
                switch (errno) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3086
                    case ENOEXEC:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3087
                        fprintf(stderr, "   load messages:\n");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3088
                        loadquery(L_GETMESSAGES, messages, sizeof(messages));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3089
                        for (i=0; messages[i]; i++) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3090
                            fprintf(stderr, "      %s\n", messages[i]);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3091
                        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3092
                        break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3093
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3094
            } else {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3095
                if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3096
                    fprintf (stderr,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3097
                             "ObjectFileLoader [warning]: load file %s failed errno=%d\n",
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3098
                             objName, errno);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3099
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3100
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3101
            @global(LinkErrorMessage) = __MKSTRING("load error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3102
            RETURN ( nil );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3103
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3104
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3105
            fprintf(stderr, "ObjectFIleLoader [info]: load %s handle = %x\n", objName, handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3106
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3107
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3108
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3109
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3110
        RETURN (anInfoBuffer);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3111
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3112
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3113
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3114
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3115
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3116
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3117
#ifdef SYSV4_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3118
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3119
    void *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3120
    char *nm;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3121
    char *errMsg;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3122
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3123
    if ((pathName == nil) || __isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3124
        INT lowHandle, hiHandle;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3125
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3126
        handle = (void *)dlopen(pathName == nil ? 0 : __stringVal(pathName), RTLD_NOW);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3127
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3128
        if (! handle) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3129
            errMsg = (char *) dlerror();
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3130
            if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3131
                fprintf(stderr, "ObjectFileLoader [warning]: dlopen %s error:\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3132
                fprintf(stderr, "    <%s>\n", errMsg);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3133
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3134
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3135
            @global(LinkErrorMessage) = __MKSTRING(errMsg);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3136
            RETURN (nil);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3137
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3138
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3139
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3140
            fprintf(stderr, "ObjectFileLoader [info]: open %s handle = %x\n", __stringVal(pathName), handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3141
        }
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3142
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
  3143
#if __POINTER_SIZE__ == 8
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3144
        lowHandle = (INT)handle & 0xFFFFFFFFL;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3145
        hiHandle = ((INT)handle >> 32) & 0xFFFFFFFFL;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3146
#else
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3147
        lowHandle = (INT)handle & 0xFFFF;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3148
        hiHandle = ((INT)handle >> 16) & 0xFFFF;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3149
#endif
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3150
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT(lowHandle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3151
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT(hiHandle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3152
        RETURN (anInfoBuffer);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3153
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3154
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3155
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3156
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3157
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3158
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3159
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3160
    void *handle;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3161
    char *nm;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3162
    char *errMsg;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3163
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3164
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3165
        handle = (void *)shl_load(__stringVal(pathName),
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3166
                                  BIND_IMMEDIATE, 0L /* address */);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3167
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3168
        if (! handle) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3169
            if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3170
                fprintf(stderr, "shl_load %s error:\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3171
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3172
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3173
            switch (errno) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3174
                case ENOEXEC:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3175
                    errMsg = "not a shared library";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3176
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3177
                case ENOSYM:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3178
                    errMsg = "undefined symbols";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3179
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3180
                case ENOMEM:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3181
                    errMsg = "out of memory";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3182
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3183
                case ENOENT:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3184
                    errMsg = "non existing library";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3185
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3186
                case EACCES:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3187
                    errMsg = "permission denied";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3188
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3189
                default:
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3190
                    errMsg = "unspecified error";
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3191
                    break;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3192
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3193
            @global(LinkErrorMessage) = __MKSTRING(errMsg);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3194
            RETURN (nil);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3195
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3196
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3197
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3198
            printf("open %s handle = %x\n", __stringVal(pathName), handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3199
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3200
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3201
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3202
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3203
        RETURN (anInfoBuffer);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3204
    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3205
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3206
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3207
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3208
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3209
#ifdef SUN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3210
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3211
    void *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3212
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3213
    if ((pathName == nil) || __isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3214
        if (pathName == nil)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3215
            handle = dlopen((char *)0, 1);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3216
        else
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3217
            handle = dlopen(__stringVal(pathName), 1);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3218
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3219
        if (! handle) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3220
            if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3221
                fprintf(stderr, "dlopen %s error: <%s>\n",
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3222
                                __stringVal(pathName), dlerror());
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3223
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3224
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3225
            @global(LinkErrorMessage) = __MKSTRING("dlopen error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3226
            RETURN (nil);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3227
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3228
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3229
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3230
            printf("open %s handle = %x\n", __stringVal(pathName), handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3231
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3232
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3233
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3234
        __ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3235
        RETURN (anInfoBuffer);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3236
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3237
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3238
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3239
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3240
#ifdef NEXT_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3241
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3242
    long result;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3243
    char *files[2];
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3244
    NXStream *errOut;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3245
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3246
    if (__isString(pathName)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3247
        files[0] = (char *) __stringVal(pathName);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3248
        files[1] = (char *) 0;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3249
        errOut = NXOpenFile(2, 2);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3250
        result = rld_load(errOut,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3251
                          (struct mach_header **)0,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3252
                          files,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3253
                          (char *)0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3254
        NXClose(errOut);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3255
        if (! result) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3256
            @global(LinkErrorMessage) = __MKSTRING("rld_load error");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3257
            @global(LastError) = @symbol(linkError);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3258
            if (@global(ErrorPrinting) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3259
                fprintf(stderr, "rld_load %s failed\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3260
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3261
            RETURN (nil);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3262
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3263
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3264
        if (@global(Verbose) == true)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3265
            printf("rld_load %s ok\n", __stringVal(pathName));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3266
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3267
        __ArrayInstPtr(anInfoBuffer)->a_element[0] = pathName;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3268
        __STORE(anInfoBuffer, pathName);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3269
        RETURN ( anInfoBuffer );
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3270
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3271
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3272
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3273
%}.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3274
    LastError := #notImplemented.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3275
    ^ nil
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3276
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3277
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3278
primUnloadDynamicObject:aHandle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3279
    "unload an object-file (unmap from my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3280
     This is a low-level entry, which does not care if there are
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3281
     still any code references (from blocks or methods) to this
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3282
     module. Calling it for still living classes will definitely
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3283
     lead to some fatal conditions to occur later."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3284
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3285
    |sysHandle1 sysHandle2|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3286
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3287
    sysHandle1 := aHandle sysHandle1.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3288
    sysHandle2 := aHandle sysHandle2.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3289
1760
09a5b2b97f29 WindCVS: ----------------------------------------------------------------------
Stefan Vogel <sv@exept.de>
parents: 1759
diff changeset
  3290
%{ /* CALLSUNLIMITEDSTACK(noWIN32) */
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3291
#ifdef GNU_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3292
    if (__isString(sysHandle1)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3293
        if (dld_unlink_by_file(__stringVal(sysHandle1), 1)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3294
            if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3295
                printf ("unlink file %s failed\n", __stringVal(sysHandle1));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3296
                dld_perror("cant unlink");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3297
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3298
            RETURN (false);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3299
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3300
        RETURN (true);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3301
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3302
    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3303
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3304
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3305
#ifdef WIN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3306
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3307
    HINSTANCE handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3308
    int err;
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3309
    jmp_buf exitJmpBuf;
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3310
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3311
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3312
        val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3313
        handle = (HINSTANCE)(val);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3314
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3315
       if (setjmp(exitJmpBuf)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3316
           __setAtExitLongJmp(exitJmpBuf);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3317
            if (FreeLibrary(handle) != TRUE) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3318
               __setAtExitLongJmp(0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3319
                err = GetLastError();
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3320
                if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3321
                    fprintf (stderr,
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3322
                                     "ObjectFileLoader [warning]: FreeLibrary %s failed; error: %x\n",
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3323
                                     __stringVal(sysHandle1), err);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3324
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3325
                @global(LastErrorNumber) = __WIN32_ERR(err);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3326
                RETURN (false);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3327
            }
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3328
       } else {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3329
           __setAtExitLongJmp(0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3330
           fprintf(stderr, "ObjectFileLoader [warning]: FreeLibrary called exit() - ignored\n");
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3331
       }
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3332
        RETURN (true);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3333
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3334
    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3335
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3336
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3337
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3338
    int val;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3339
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3340
    int ok, err;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3341
    jmp_buf exitJmpBuf;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3342
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3343
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3344
        val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3345
        handle = (HINSTANCE)(val);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3346
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3347
        if (setjmp(exitJmpBuf)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3348
            __setAtExitLongJmp(exitJmpBuf);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3349
            ok = unload_add_on((image_id) handle);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3350
            __setAtExitLongJmp(0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3351
            if (ok != 0) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3352
                @global(LastErrorNumber) = __MKSMALLINT(ok);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3353
                RETURN (false);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3354
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3355
        } else {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3356
            __setAtExitLongJmp(0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3357
            fprintf(stderr, "ObjectFileLoader [warning]: FreeLibrary called exit() - ignored\n");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3358
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3359
        RETURN (true);
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3360
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3361
    RETURN (false);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3362
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3363
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3364
#ifdef SYSV4_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3365
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3366
    void *h;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3367
    INT val;
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3368
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3369
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3370
    if (__bothSmallInteger(low, hi)) {
1607
074a99bb9a50 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
  3371
#if __POINTER_SIZE__ == 8
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3372
        val = (__intVal(hi) << 32) + __intVal(low);
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3373
#else
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3374
        val = (_intVal(hi) << 16) + _intVal(low);
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3375
#endif
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3376
        h = (void *)(val);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3377
        if (@global(Verbose) == true)
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3378
            printf("close handle = %x\n", h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3379
        if (dlclose(h) != 0) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3380
            fprintf(stderr, "dlclose failed with:<%s>\n", dlerror());
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3381
            RETURN (false);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3382
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3383
        RETURN (true);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3384
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3385
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3386
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3387
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3388
#ifdef SUN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3389
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3390
    void *h;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3391
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3392
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3393
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3394
    if (__bothSmallInteger(low, hi)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3395
        val = (_intVal(hi) << 16) + _intVal(low);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3396
        h = (void *)(val);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3397
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3398
            printf("close handle = %x\n", h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3399
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3400
        dlclose(h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3401
        RETURN (true);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3402
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3403
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3404
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3405
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3406
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3407
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3408
    int *h;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3409
    int val;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3410
    OBJ low = sysHandle1, hi = sysHandle2;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3411
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3412
    if (__bothSmallInteger(low, hi)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3413
        val = (_intVal(hi) << 16) + _intVal(low);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3414
        h = (void *)(val);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3415
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3416
            printf("unload handle = %x\n", h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3417
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3418
        shl_unload(h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3419
        RETURN (true);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3420
    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3421
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3422
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3423
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3424
#ifdef AIX_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3425
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3426
    int *h;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3427
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3428
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3429
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3430
    if (__bothSmallInteger(low, hi)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3431
        val = (_intVal(hi) << 16) + _intVal(low);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3432
        h = (int *)(val);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3433
        if (@global(Verbose) == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3434
            printf("unload handle = %x\n", h);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3435
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3436
        if ( unload(h) != 0) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3437
            fprintf(stderr, "unload failed\n");
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3438
            RETURN (false);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3439
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3440
        RETURN (true);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3441
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3442
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3443
#endif
529
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3444
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3445
#ifdef NEXT_DL
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3446
  {
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3447
    fprintf(stderr, "ObjectFileLoader [warning]: Sorry, NeXTStep does not support selective unloading\n");
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3448
  }
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3449
#endif
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3450
%}.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3451
    ^ false
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3452
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3453
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3454
unloadDynamicObject:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3455
    "close an object-file (unmap from my address space)
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3456
     and remove the entry from the remembered object file set.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3457
     This is a low-level entry, which does not care if there are
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3458
     still any code references (from blocks or methods) to this
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3459
     module. Calling it for still living classes will definitely
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3460
     lead to some fatal conditions to occur later."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3461
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3462
    |key fileName functionName deInitAddr m|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3463
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3464
    Verbose ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3465
        'unload module name=' infoPrint. handle pathName infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3466
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3467
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3468
    handle isUnknownHandle ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3469
        Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3470
            'module type is not known - assume uninitialized classLib' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3471
        ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3472
        self unregisterModule:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3473
        handle makeClassLibHandle.
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3474
    ] ifFalse:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3475
        handle isClassLibHandle ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3476
            Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3477
                'a classLib - deinit classes' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3478
            ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3479
            self deinitializeClassesFromModule:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3480
            Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3481
                'unregister' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3482
            ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3483
            self unregisterModule:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3484
        ] ifFalse:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3485
            handle isMethodHandle ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3486
                Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3487
                    'a methodHandle - unregister' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3488
                ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3489
                self unregisterModule:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3490
            ] ifFalse:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3491
                handle isFunctionObjectHandle ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3492
                    Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3493
                        'a functionObject - fixup functionRefs' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3494
                    ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3495
                    handle functions do:[:f |
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3496
                                    f notNil ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3497
                                        f invalidate
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3498
                                    ]
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3499
                                ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3500
                ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3501
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3502
                "/
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3503
                "/ call its deInit function (if present)
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3504
                "/
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3505
                Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3506
                    'search for deInit function...' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3507
                ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3508
                fileName := handle pathName asFilename baseName.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3509
                functionName := self initFunctionBasenameForFile:fileName.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3510
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3511
                deInitAddr := self findFunction:functionName suffix:'__deInit' in:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3512
                deInitAddr notNil ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3513
                    Verbose ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3514
                        'invoke deInit function...' infoPrintCR.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3515
                    ].
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3516
                    self callInitFunctionAt:deInitAddr
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3517
                         specialInit:false
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3518
                         forceOld:true
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3519
                         interruptable:false
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3520
                         argument:0
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3521
                         identifyAs:handle
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3522
                         returnsObject:false.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3523
                ]
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3524
            ]
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3525
        ].
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3526
    ].
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3527
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3528
    Verbose ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3529
        'cleanup done - now unload...' infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3530
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3531
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3532
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3533
    "/ now, really unload
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3534
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3535
    (self primUnloadDynamicObject:handle) ifFalse:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3536
        ^ self error:'unloadDynamic failed' mayProceed:true
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3537
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3538
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3539
    Verbose ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3540
        'unload done ...' infoPrintCR.
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3541
    ].
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3542
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3543
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3544
    "/ remove from loaded objects
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3545
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3546
    LoadedObjects notNil ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3547
        key := LoadedObjects keyAtEqualValue:handle.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3548
        key notNil ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3549
            LoadedObjects removeKey:key
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3550
        ]
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3551
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3552
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3553
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3554
     for individual methods, we keep the methodObject,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3555
     but make it unexecutable. Its still visible in the browser.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3556
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3557
    handle isMethodHandle ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3558
        ((m := handle method) notNil
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3559
        and:[m ~~ 0]) ifTrue:[
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3560
            m makeUnloaded.
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3561
        ]
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3562
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3563
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3564
    handle isClassLibHandle ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3565
        Smalltalk flushCachedClasses.
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3566
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3567
    handle isMethodHandle ifTrue:[
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  3568
        ObjectMemory flushCaches.
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3569
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3570
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3571
    handle moduleID:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3572
    handle sysHandle1:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3573
    handle sysHandle2:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3574
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3575
    "Modified: / 21.10.1998 / 21:31:48 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3576
! !
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3577
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  3578
!ObjectFileLoader class methodsFor:'queries'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3579
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3580
canLoadObjectFiles
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  3581
    "return true, if dynamic loading is possible.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3582
     Currently, only ELF based systems, AIX and linux a.out can do this."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3583
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3584
    self primCanLoadObjectFiles ifTrue:[^true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3585
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3586
    "/ can add a return true here, if I ever get manual loading to work
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3587
    "/ for some specific machine
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3588
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  3589
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3590
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3591
     ObjectFileLoader canLoadObjectFiles
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3592
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3593
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3594
    "Modified: 8.1.1997 / 18:13:01 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3595
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3596
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3597
loadedObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3598
    "return a collection containing the names of all
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3599
     dynamically loaded objects."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3600
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3601
    LoadedObjects isNil ifTrue:[^ #()].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3602
    ^ LoadedObjects keys copy
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3603
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3604
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3605
     ObjectFileLoader loadedObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3606
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3607
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3608
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3609
loadedObjectHandles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3610
    "return a collection of all handles"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3611
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3612
    LoadedObjects isNil ifTrue:[^ #()].
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  3613
    ^ LoadedObjects
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3614
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3615
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3616
     ObjectFileLoader loadedObjectHandles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3617
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3618
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3619
    "Created: 17.9.1995 / 14:28:55 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3620
    "Modified: 17.9.1995 / 16:13:48 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3621
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3622
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3623
loadedObjectHandlesDo:aBlock
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3624
    "enumerate all handles"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3625
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3626
    LoadedObjects notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3627
	LoadedObjects copy do:aBlock.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3628
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3629
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3630
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3631
     ObjectFileLoader loadedObjectHandlesDo:[:h | h pathName printNL]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3632
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3633
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3634
    "Created: 14.9.1995 / 22:03:13 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3635
    "Modified: 14.9.1995 / 22:32:48 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3636
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3637
1602
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3638
moduleNamed:aNameString
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3639
    "return the module named aNameString"
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3640
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3641
    |moduleDescriptor|
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3642
1742
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3643
    moduleDescriptor := 
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3644
        ObjectMemory binaryModuleInfo 
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3645
            detect:[:eachModuleDescriptor | eachModuleDescriptor libraryName = aNameString]
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3646
            ifNone:[^ nil].
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3647
2a2f0bf6342d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
  3648
    ^ LoadedObjects at:(moduleDescriptor pathName) ifAbsent:[].
1602
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3649
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3650
    "
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3651
     ObjectFileLoader moduleNamed:'ctypes'
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3652
    "
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3653
!
dd778e6d381e New: #moduleNamed:
Stefan Vogel <sv@exept.de>
parents: 1555
diff changeset
  3654
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3655
pathNameFromID:id
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3656
    "given an id, return the pathName, or nil for static modules"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3657
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3658
    LoadedObjects notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3659
	LoadedObjects keysAndValuesDo:[:name :handle |
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3660
	    handle moduleID == id ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3661
		^ handle pathName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3662
	    ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3663
	].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3664
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3665
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3666
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3667
    "
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  3668
     ObjectFileLoader pathNameFromID:1
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3669
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3670
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3671
    "Modified: 28.8.1995 / 18:08:28 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3672
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3673
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3674
primCanLoadObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3675
    "return true, if loading is possible using a standard mechanism"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3676
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3677
%{  /* NOCONTEXT */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3678
#ifdef HAS_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3679
# if !defined(OS_DEFINE) || defined(unknownOS)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3680
    fprintf(stderr, "*** OS_DEFINE not correct\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3681
# else
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3682
#  if !defined(CPU_DEFINE) || defined(unknownCPU)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3683
    fprintf(stderr, "*** CPU_DEFINE not correct\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3684
#  else
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3685
    RETURN (true);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3686
#  endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3687
# endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3688
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3689
%}.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3690
    ^ false
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3691
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3692
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3693
     ObjectFileLoader primCanLoadObjectFiles
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3694
    "
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  3695
! !
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  3696
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  3697
!ObjectFileLoader class methodsFor:'st object file handling'!
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3698
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3699
callInitFunctionAt:address specialInit:special forceOld:forceOld interruptable:interruptable argument:argument identifyAs:handle returnsObject:returnsObject
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3700
    "call a function at address - a very dangerous operation.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3701
     This is needed to call the classes init-function after loading in a
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3702
     class-object file or to call the CTORS when c++ modules are loaded.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3703
     ForceOld (if true) will have the memory manager
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3704
     allocate things in oldSpace instead of newSpace.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3705
     If special is true, this is a smalltalk moduleInit (i.e. pass the vm-entries table);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3706
     otherwise, its called without arguments.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3707
     If its a smalltalk-moduleInit, it may be either for a classPackage (which should
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3708
     install all of its classes) or for a single incrementally compiled methdod
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3709
     (it should then NOT install it, but return the method object instead).
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3710
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3711
     DANGER: Internal & highly specialized. Dont use in your programs.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3712
             This interface may change without notice."
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3713
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3714
    |moduleID retVal oldSpaceReserve|
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3715
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3716
    handle notNil ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3717
        moduleID := handle moduleID
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3718
    ].
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3719
    "/
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3720
    "/ for various reasons, classes, methods, literals, methodDicts etc.
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3721
    "/ must be allocated in oldSpace when coming from a compiled
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3722
    "/ classLibrary, and no compressing garbage collect is allowed during
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3723
    "/ the creation of those.
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3724
    "/ Therefore, we must ensure, that enough oldSpace reserve is available ...
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3725
    "/ (how much is enough ?)
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3726
    "/
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3727
    oldSpaceReserve := OldSpaceReserve ? (1024*1024).
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3728
1033
f5bad5027056 More Stack when calling init function.
Stefan Vogel <sv@exept.de>
parents: 1024
diff changeset
  3729
%{  /* CALLSSTACK: 128000 */
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3730
    OBJ (*addr)();
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3731
    int savInt;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3732
    int prevSpace, force;
591
9c48953d9fab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 590
diff changeset
  3733
    INT arg = 0, ret = 0;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3734
    int wasBlocked = 1;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3735
    extern int __oldSpaceSize(), __oldSpaceUsed();
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3736
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3737
    if (__isInteger(address)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3738
        if (_isSmallInteger(argument)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3739
            arg = __intVal(argument);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3740
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3741
            addr = (OBJFUNC)(__longIntVal(address));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3742
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3743
            /*
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3744
             * allow function to be interrupted
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3745
             */
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3746
            if (interruptable != true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3747
                wasBlocked = (__BLOCKINTERRUPTS() == true);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3748
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3749
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3750
            force = (forceOld == true);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3751
            if (force) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3752
                int reserve = __intVal(oldSpaceReserve);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3753
                if ((__oldSpaceSize() - __oldSpaceUsed()) < reserve) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3754
                    __moreOldSpace(__thisContext, reserve);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3755
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3756
                prevSpace = __allocForceSpace(OLDSPACE);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3757
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3758
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3759
            if (@global(Verbose) == true) {
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3760
#ifdef __NEED_L_MODIFIER_IN_PRINTF__
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3761
                printf("calling initfunc %lx ...\n", addr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  3762
#else
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3763
                printf("calling initfunc %x ...\n", addr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  3764
#endif
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3765
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3766
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3767
            if (special == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3768
                if (__isSmallInteger(moduleID)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3769
                    __SET_MODULE_ID(__intVal(moduleID));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3770
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3771
                retVal = (*addr)(arg, __pRT__);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3772
                __SET_MODULE_ID(0);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3773
                if (returnsObject != true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3774
                    retVal = nil;
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3775
                }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3776
            } else {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3777
                if (returnsObject == true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3778
                    retVal = (*addr)(arg);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3779
                } else {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3780
                    ret = (INT) ((*addr)(arg));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3781
                    retVal = __mkSmallInteger(ret);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3782
               }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3783
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3784
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3785
            if (force) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3786
                __allocForceSpace(prevSpace);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3787
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3788
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3789
            if (! wasBlocked) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3790
                __UNBLOCKINTERRUPTS();
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3791
            }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3792
            RETURN (retVal);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3793
        }
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3794
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3795
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3796
    self primitiveFailed
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3797
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3798
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3799
deinitializeClassesFromModule:handle
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  3800
    "send #deinitialize and an #aboutToUnload notification
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  3801
     to all classes of a module."
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3802
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3803
    |classes|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3804
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3805
    classes := handle classes.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3806
    classes notNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3807
	classes do:[:aClass |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3808
	    aClass notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3809
		aClass isMeta ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3810
		    Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3811
			'send #deinitialize to:' infoPrint. aClass name infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3812
		    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3813
		    aClass deinitialize.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3814
		    aClass update:#aboutToUnload with:nil from:self
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3815
		]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3816
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3817
	]
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3818
    ]
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  3819
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3820
    "Modified: 10.1.1997 / 17:56:50 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3821
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3822
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3823
invalidateModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3824
    "invalidate all of the classes code objects ..."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3825
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3826
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3827
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3828
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3829
	'invalidate module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3830
	' id=' infoPrint. handle moduleID infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3831
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3832
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3833
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3834
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3835
    __INVALIDATE_BY_ID(__intVal(id));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3836
%}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3837
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3838
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3839
loadStatusFor:className
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3840
    "ask VM if class-hierarchy has been completely loaded, and return the status."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3841
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3842
    |checker checkSymbol statusCode status badClassName|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3843
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3844
    checker := self.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3845
    checkSymbol := #superClassCheck:.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3846
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3847
%{  /* NOREGISTER */
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3848
    char *badName;
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  3849
    char *interestingClassName;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3850
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3851
    if (__isStringLike(className)) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3852
        interestingClassName = (char *)__stringVal(className);
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3853
    } else {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3854
        interestingClassName = (char *)0;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3855
    }
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  3856
    statusCode = __MKSMALLINT(__check_registration__(interestingClassName,
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3857
                                                     &checker, &checkSymbol, &badName));
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3858
    if (badName) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3859
        badClassName = __MKSTRING(badName);
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3860
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3861
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3862
    statusCode == 0 ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3863
        status := #ok
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3864
    ] ifFalse:[ statusCode == -1 ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3865
        status := #missingClass
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3866
    ] ifFalse:[ statusCode == -2 ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3867
        status := #versionMismatch
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3868
    ] ifFalse:[ statusCode == -3 ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3869
        status := #unregisteredSuperclass
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3870
    ] ifFalse:[ statusCode == -4 ifTrue:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3871
        status := #tryAgain
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3872
    ] ifFalse:[
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3873
        status := #loadFailed
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3874
    ] ] ] ] ].
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3875
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3876
    ^ Array with:status with:badClassName.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3877
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3878
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3879
moduleInit:phase forceOld:forceOld interruptable:interruptable
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3880
    "initialization phases after registration.
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3881
     DANGER: Pure magic; internal only -> don't use in your programs."
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3882
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3883
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3884
    int savInt;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3885
    int prevSpace, force;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3886
    int arg = 0;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3887
    int wasBlocked = 1;
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  3888
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  3889
    if (__isSmallInteger(phase)) {
1759
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3890
        if (interruptable != true) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3891
            wasBlocked = (__BLOCKINTERRUPTS() == true);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3892
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3893
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3894
        force = (forceOld == true);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3895
        if (force) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3896
            prevSpace = __allocForceSpace(OLDSPACE);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3897
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3898
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3899
        __init_registered_modules__(__intVal(phase));
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3900
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3901
        if (force) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3902
            __allocForceSpace(prevSpace);
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3903
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3904
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3905
        if (! wasBlocked) {
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3906
            __UNBLOCKINTERRUPTS();
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3907
        }
a49b7066594c UNLIMITEDSTACK for windows, too
Stefan Vogel <sv@exept.de>
parents: 1745
diff changeset
  3908
        RETURN (self);
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3909
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3910
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3911
    self primitiveFailed
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3912
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3913
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3914
performModuleInitAt:initAddr for:className identifyAs:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3915
    "Initialize a loaded smalltalk module."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3916
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3917
    ^ self
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3918
	performModuleInitAt:initAddr invokeInitializeMethods:true for:className identifyAs:handle.
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3919
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3920
!
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3921
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3922
performModuleInitAt:initAddr invokeInitializeMethods:invokeInitializeMethods for:className identifyAs:handle
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3923
    "Initialize a loaded smalltalk module."
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3924
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3925
    |status badClassName infoCollection info classNames classes
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3926
     stillTrying|
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3927
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3928
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3929
     need 4 passes to init: 0: let module register itself & create its pools/globals
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3930
			    0b check if modules superclasses are all loaded
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3931
			    1: let it get var-refs to other pools/globals
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3932
			    2: let it install install class, methods and literals
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3933
			    3: let it send #initialize to its class object
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3934
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3935
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3936
    stillTrying := true.
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3937
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3938
    [stillTrying] whileTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3939
	stillTrying := false.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3940
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3941
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3942
	"/ let it register itself
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3943
	"/ and define its globals
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3944
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3945
	Verbose ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3946
	    'phase 0 (module registration) ...' infoPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3947
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3948
	self callInitFunctionAt:initAddr
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3949
	     specialInit:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3950
	     forceOld:true
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3951
	     interruptable:false
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3952
	     argument:0
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3953
	     identifyAs:handle
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3954
	     returnsObject:false.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3955
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3956
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3957
	"/ check if superclasses are present
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3958
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3959
	info := self loadStatusFor:className.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3960
	status := info at:1.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3961
	badClassName := info at:2.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3962
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3963
	Verbose ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3964
	    '... status is ' infoPrint. info infoPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3965
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3966
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3967
	(status ~~ #ok) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3968
	    (status == #missingClass) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3969
		('ObjectFileLoader [error]: load failed - missing class: ' , badClassName) infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3970
		^ info
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3971
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3972
	    (status == #versionMismatch) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3973
		('ObjectFileLoader [error]: load failed - version mismatch: ' , badClassName) infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3974
		^ info
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3975
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3976
	    (status == #unregisteredSuperclass) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3977
		('ObjectFileLoader [error]: load failed - unregistered: ' , badClassName) infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3978
		^ info
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3979
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3980
	    (status ~~ #tryAgain) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3981
		'ObjectFileLoader [error]: load failed' infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3982
		^ Array with:#loadFailed with:nil
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3983
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3984
	    (status == #tryAgain) ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3985
		"/ tryAgain:
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3986
		"/   must retry after initialization, to initialize
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3987
		"/   sub-subclasses of autoloaded classes
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3988
		"/   (sigh - class objects are created in phase 3,
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3989
		"/    so we must first complete the initialization cycle,
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3990
		"/    then do all again, for remaining modules)
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3991
		stillTrying := true.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3992
		'ObjectFileLoader [info]: retry registration after init' infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3993
	    ]
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3994
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3995
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3996
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3997
	"/ remaining initialization
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3998
	"/
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  3999
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4000
	"/ module exports: declare module-globals & symbols ...
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4001
	Verbose ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4002
	    'phase 1 (resolve globals) ...' infoPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4003
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4004
	self moduleInit:1 forceOld:true interruptable:false.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4005
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4006
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4007
	"/ module-imports: resolve globals ...
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4008
	"/ create methods & install ...
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4009
	Verbose ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4010
	    'phase 2 (create objects) ...' infoPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4011
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4012
	self moduleInit:2 forceOld:true interruptable:false.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4013
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4014
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4015
    ObjectMemory flushCaches.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4016
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4017
    "/ ask objectMemory for the classes we have just loaded
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4018
    "/ and register them in the handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4019
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4020
    infoCollection := ObjectMemory binaryModuleInfo.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4021
    info := infoCollection at:handle moduleID ifAbsent:nil.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4022
    info isNil ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4023
	"/ mhmh registration failed -
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4024
	'ObjectFileLoader [error]: registration failed' infoPrintCR.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4025
	^ Array with:#registrationFailed with:nil
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4026
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4027
405
92cb91b82cf7 changes for new moduleInfo reply
Claus Gittinger <cg@exept.de>
parents: 404
diff changeset
  4028
    classNames := info classNames.
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4029
    classNames notEmptyOrNil ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4030
	classes := OrderedSet new:classNames size.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4031
	classNames do:[:eachClassName | |class|
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4032
	    class := Smalltalk classNamed:eachClassName.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4033
	    class notNil ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4034
		classes add:class.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4035
	    ].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4036
	].
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4037
    ].
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4038
    classes notEmptyOrNil ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4039
	classes := classes asArray.
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4040
	classes := classes , (classes collect:[:aClass | aClass class]).
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4041
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4042
    handle classes:classes.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4043
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  4044
    invokeInitializeMethods ifTrue:[
1611
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4045
	Verbose ifTrue:[
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4046
	    'phase 3 (send #initialize) ...' infoPrintCR
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4047
	].
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4048
	"/ initialize ...
de72a21f1017 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 1609
diff changeset
  4049
	self moduleInit:3 forceOld:false interruptable:true.
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  4050
    ].
881
ed4efb1b161e perform moduleInit3 AFTER registering the module.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
  4051
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4052
    ^ Array with:#ok with:nil
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4053
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4054
    "Modified: / 10-01-1997 / 17:58:41 / cg"
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4055
    "Modified: / 29-07-2004 / 17:12:28 / stefan"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4056
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4057
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4058
revalidateModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4059
    "revalidate all of the classes code objects ..."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4060
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4061
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4062
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4063
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4064
	'revalidate module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4065
	' id=' infoPrint. handle moduleID infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4066
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4067
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4068
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4069
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4070
    __REVALIDATE_BY_ID(__intVal(id));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4071
%}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4072
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4073
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4074
superClassCheck:aClass
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4075
    "callBack from class registration code in VM:
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  4076
     make certain, that aClass is loaded too ...
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  4077
     (req'd if a subclass of an autoloaded class has been loaded)"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4078
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4079
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4080
	'checkCall for:' infoPrint. aClass name infoPrint. ' -> ' infoPrint.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4081
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4082
    aClass isBehavior ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4083
	Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4084
	    'false' infoPrintCR.
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4085
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4086
	'ObjectFileLoader [warning]: check failed - no behavior' errorPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4087
	^ false
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4088
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4089
    Verbose ifTrue:[
1540
72bdddf92706 Avoid error messages about nil classes
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  4090
	'true' infoPrintCR.
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4091
	('ObjectFileLoader [info]: check for ' , aClass name , ' being loaded') infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4092
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4093
    aClass autoload.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4094
    (aClass isBehavior and:[aClass isLoaded]) ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4095
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4096
	    ('ObjectFileLoader [info]: ok, loaded. continue registration of actual class') infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4097
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4098
	aClass signature.       "/ req'd in VM for validation
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4099
	^ true
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4100
    ].
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4101
    ('ObjectFileLoader [warning]: superclass not loaded; registration of ' , aClass name , ' fails') errorPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4102
    ^ false
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4103
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  4104
    "Modified: 10.1.1997 / 17:58:48 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4105
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4106
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4107
unregisterModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4108
    "unregister classes in the VM.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4109
     This invalidates all of the classes code objects ..."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4110
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4111
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4112
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4113
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4114
	'unregister module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4115
	' id=' infoPrint. handle moduleID infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4116
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4117
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4118
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4119
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4120
    __UNREGISTER_BY_ID(__intVal(id));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4121
%}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4122
! !
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4123
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  4124
!ObjectFileLoader class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4125
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4126
version
1765
a6234f291d72 use invalidate to flush the code pointer of unloaded
ca
parents: 1760
diff changeset
  4127
    ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.245 2006-06-22 15:20:57 ca Exp $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4128
! !
1358
d36c7e6c9e45 refactored
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  4129
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4130
ObjectFileLoader initialize!