ObjectFileLoader.st
author Claus Gittinger <cg@exept.de>
Mon, 19 Jun 2000 14:03:02 +0200
changeset 1046 8e5818442eb9
parent 1033 f5bad5027056
child 1116 4cadfbecca99
permissions -rw-r--r--
newCode (for rel5)
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
7ad01559b262 Initial revision
claus
parents:
diff changeset
    13
Object subclass:#ObjectFileLoader
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    14
	instanceVariableNames:''
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    15
	classVariableNames:'MySymbolTable Verbose LastError LinkErrorMessage NextHandleID
149
3dc42a5ab417 default for SearchedLibraries
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    16
		LoadedObjects PreviouslyLoadedObjects ActuallyLoadedObjects
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
    17
		SearchedLibraries LibPath LoadLibraryPath ErrorPrinting
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
    18
		LinkCommand LinkArgs LastErrorNumber OldSpaceReserve'
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    19
	poolDictionaries:''
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
    20
	category:'System-Compiler'
47
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
    21
!
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
    22
53
c5dd7abf8431 *** empty log message ***
claus
parents: 51
diff changeset
    23
!ObjectFileLoader primitiveDefinitions!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    24
%{
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
    25
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    26
/*
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    27
 * by default, use whatever the system provides
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    28
 */
95
claus
parents: 94
diff changeset
    29
#ifdef sunos    /* sunos (pre 5.4) dlopen interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    30
# define SUN_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    31
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    32
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    33
95
claus
parents: 94
diff changeset
    34
#ifdef NeXT     /* next rld interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    35
# define NEXT_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    36
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    37
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    38
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
    39
#if defined(SYSV4) || defined(HAS_DLOPEN)   /* sys5.4 dlopen interface */
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    40
# define SYSV4_DL
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    41
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    42
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    43
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    44
#if defined(hpux10)
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    45
# undef SYSV4_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    46
# define HPUX10_DL
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
    47
# define HAS_DL
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    48
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
    49
587
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    50
#if defined(alpha) && defined(__osf__)
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    51
# define SYSV4_DL
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    52
# define HAS_DL
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    53
#endif
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
    54
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    55
#ifdef __VMS__
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    56
# undef __new
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    57
# define VMS_DL
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    58
#endif
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
    59
95
claus
parents: 94
diff changeset
    60
#ifdef DL1_6    /* dl1.6 COFF loader */
claus
parents: 94
diff changeset
    61
# define HAS_DL
claus
parents: 94
diff changeset
    62
#endif
claus
parents: 94
diff changeset
    63
98
claus
parents: 97
diff changeset
    64
#ifdef _AIX
97
claus
parents: 96
diff changeset
    65
# define AIX_DL
claus
parents: 96
diff changeset
    66
# define HAS_DL
claus
parents: 96
diff changeset
    67
#endif
claus
parents: 96
diff changeset
    68
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    69
/*
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    70
 * but GNU_DL overwrites this - its better
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    71
 */
95
claus
parents: 94
diff changeset
    72
#ifdef GNU_DL   /* dld2.3.x interface */
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    73
# define HAS_DL
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    74
# undef SYSV4_DL
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    75
# undef NEXT_DL
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    76
# undef SUN_DL
95
claus
parents: 94
diff changeset
    77
# undef DL1_6
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    78
#endif
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
    79
801
0ab2ba78b26e newest stdio uses __new
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
    80
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    81
#include <stdio.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    82
801
0ab2ba78b26e newest stdio uses __new
Claus Gittinger <cg@exept.de>
parents: 791
diff changeset
    83
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    84
#if defined(WIN32)
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    85
# undef COFF
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    86
# undef ELF
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    87
# undef A_DOT_OUT
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    88
# define HAS_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
    89
# define WIN_DL
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    90
#endif
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    91
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    92
#if defined(BEOS)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    93
# undef COFF
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    94
# undef ELF
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    95
# undef A_DOT_OUT
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    96
# define HAS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    97
# define BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    98
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
    99
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   100
/*
95
claus
parents: 94
diff changeset
   101
 * if no dynamic link facilities, try it the hard way ...
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   102
 */
175
f94969b034c7 make it compilable (at least) on WIN32 (which defines COFF ?!)
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   103
#if !defined(HAS_DL)
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   104
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   105
# ifdef A_DOT_OUT
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   106
#  include <a.out.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   107
#  ifndef N_MAGIC
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   108
#   if defined(sinix) && defined(BSD)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   109
#    define N_MAGIC(hdr) (hdr.a_magic & 0xFFFF)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   110
#   else
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   111
#    define N_MAGIC(hdr) (hdr.a_magic)
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   112
#   endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   113
#  endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   114
# endif /* a.out */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   115
 
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   116
# ifdef COFF
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   117
#  ifdef mips
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   118
#    include <sys/exec.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   119
#  else
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   120
#    include <a.out.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   121
#  endif
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   122
# endif /* coff */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   123
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   124
# ifdef ELF
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   125
#  include <elf.h>
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   126
# endif /* elf */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   127
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   128
#endif /* not HAS_DL */
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   129
95
claus
parents: 94
diff changeset
   130
#ifdef NEXT_DL
claus
parents: 94
diff changeset
   131
# ifndef _RLD_H_
claus
parents: 94
diff changeset
   132
#  define _RLD_H_
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   133
#  ifdef NEXT3
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   134
#   include <mach-o/rld.h>
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   135
#  else
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   136
#   include <rld.h>
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   137
#  endif
95
claus
parents: 94
diff changeset
   138
# endif
claus
parents: 94
diff changeset
   139
#endif /* NEXT_DL */
claus
parents: 94
diff changeset
   140
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   141
#ifdef SYSV4_DL
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   142
# include <dlfcn.h>
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   143
# define dlcfn_h
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   144
#endif
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
   145
45
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   146
#ifdef GNU_DL
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   147
#  ifndef dld_h
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   148
#   include "dld.h"
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   149
#   define dld_h
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   150
#  endif
e8331ba8ad5d *** empty log message ***
claus
parents: 37
diff changeset
   151
#endif
95
claus
parents: 94
diff changeset
   152
claus
parents: 94
diff changeset
   153
#ifdef DL1_6
claus
parents: 94
diff changeset
   154
#  ifndef dl_h
claus
parents: 94
diff changeset
   155
#   include "dl.h"
claus
parents: 94
diff changeset
   156
#   define dl_h
claus
parents: 94
diff changeset
   157
#  endif
claus
parents: 94
diff changeset
   158
#endif
claus
parents: 94
diff changeset
   159
97
claus
parents: 96
diff changeset
   160
#ifdef AIX_DL
claus
parents: 96
diff changeset
   161
# include <nlist.h>
100
claus
parents: 98
diff changeset
   162
# include <sys/ldr.h>
claus
parents: 98
diff changeset
   163
# include <errno.h>
97
claus
parents: 96
diff changeset
   164
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   165
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   166
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   167
# include <dl.h>
524
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   168
# include <errno.h>
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   169
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   170
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   171
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   172
# include <be/kernel/image.h>
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   173
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   174
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   175
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   176
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   177
# ifdef WIN32
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   178
#  undef INT
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   179
#  undef Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   180
#  undef Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   181
#  undef Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   182
#  undef Block
857
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   183
#  undef Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   184
#  undef Date
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   185
#  undef Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   186
#  undef Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   187
#  undef Signal
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   188
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   189
#  ifdef i386
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   190
#   ifndef _X86_
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   191
#    define _X86_
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   192
#   endif
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   193
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   194
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   195
#  ifdef __BORLANDC__
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   196
#   define NOATOM
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   197
#   define NOUSER
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   198
#   define NOGDI
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   199
#   define NOGDICAPMASKS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   200
#   define NOMETAFILE
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   201
#   define NOMINMAX
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   202
#   define NOMSG
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   203
#   define NOOPENFILE
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   204
#   define NORASTEROPS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   205
#   define NOSCROLL
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   206
#   define NOSOUND
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   207
#   define NOSYSMETRICS
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   208
#   define NOTEXTMETRIC
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   209
#   define NOWH
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   210
#   define NOCOMM
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   211
#   define NOKANJI
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   212
#   define NOCRYPT
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   213
#   define NOMCX
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   214
#   define WIN32_LEAN_AND_MEAN
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   215
#   include <windows.h> /* */
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   216
#  else
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   217
/* #  include <windows.h> /* */
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   218
#  endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   219
#  include <windef.h> /* */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   220
#  include <winbase.h> /* */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   221
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   222
#  ifdef __DEF_Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   223
#   define Array __DEF_Array
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   224
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   225
#  ifdef __DEF_Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   226
#   define Number __DEF_Number
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   227
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   228
#  ifdef __DEF_Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   229
#   define Method __DEF_Method
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   230
#  endif
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   231
#  ifdef __DEF_Block
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   232
#   define Block __DEF_Block
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   233
#  endif
857
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   234
#  ifdef __DEF_Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   235
#   define Time __DEF_Time
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   236
#  endif
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   237
#  ifdef __DEF_Date
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   238
#   define Date __DEF_Date
72baf41f3bc9 *** empty log message ***
ps
parents: 850
diff changeset
   239
#  endif
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   240
# ifdef __DEF_Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   241
#  define Set __DEF_Set
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   242
# endif
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   243
# ifdef __DEF_Signal
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   244
#  define Signal __DEF_Signal
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   245
# endif
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   246
# ifdef __DEF_Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   247
#  define Delay __DEF_Delay
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   248
# endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   249
# endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
   250
729
924ccc3434df borland-C support
Claus Gittinger <cg@exept.de>
parents: 724
diff changeset
   251
#endif /* WIN_DL */
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   252
%}
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   253
! !
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   254
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   255
!ObjectFileLoader class methodsFor:'documentation'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   256
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   257
copyright
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   258
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   259
 COPYRIGHT (c) 1993 by Claus Gittinger
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   260
	      All Rights Reserved
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   261
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   262
 This software is furnished under a license and may be used
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   263
 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
   264
 inclusion of the above copyright notice.   This software may not
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   265
 be provided or otherwise made available to, or used by, any
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   266
 other person.  No title to or ownership of the software is
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   267
 hereby transferred.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   268
"
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
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   271
documentation
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 class knowns how to dynamically load in external object-modules.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   274
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   275
    WARNING:
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   276
      As to date, this is still experimental and WITHOUT ANY WARRANTY.
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   277
      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
   278
      robustness.
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
    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
   281
	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
   282
	   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
   283
	   or LoadLibrary (Win32), this is used
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   284
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   285
	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
   286
	   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
   287
	   and the object file loaded into that space.
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   288
           
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   289
    Currently, not all mechanisms work fully satisfying.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   290
    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
   291
    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
   292
    allow for selective unloading (only all or the last loaded module).
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   293
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   294
    The only really useful packages are the GNU-dl package, 
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   295
    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
   296
    The GNU-dl package is only available for a.out file formats
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   297
    (which is more or less obsolete); 
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   298
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   299
    For the above reasons, dynamic object loading is currently only
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
   300
    officially released for SYS5.4-based, LINUX and win32 systems.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   301
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   302
    Once stable, the functionality contained herein will be moved into
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   303
    the VM. 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   304
    (It is needed there, to allow reloading of objectfiles upon
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   305
     image restart; i.e. before any class is reinitialilized).
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   306
809
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   307
    Right now, reloading of object files is done by smalltalk code,
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   308
    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
   309
    load takes place, or which is used by the loader itself.
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   310
    (i.e. for now, many primitives from libbasic cannot be dynamically
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   311
    loaded at image restart time).
09213d35c1cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
   312
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   313
    [author:]
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   314
	Claus Gittinger
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   315
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   316
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   317
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   318
!ObjectFileLoader class methodsFor:'initialization'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   319
7ad01559b262 Initial revision
claus
parents:
diff changeset
   320
initialize
317
e1b5f51f1532 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   321
    |systemType|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   322
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   323
    OperatingSystem isMSDOSlike ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   324
	"/ default setup for msc
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   325
	OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   326
	    LinkCommand isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   327
		LinkCommand := 'tlink32'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   328
		LinkCommand := 'ilink32'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   329
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   330
	    LinkArgs isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   331
		LinkArgs := '-L..\libbc -L\Programme\Borland\CBuilder3\lib -c -ap -Tpd -s -Gi -v -w-dup ..\libbc\librun.lib'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   332
		LinkArgs := '-L..\libbc -L\Programme\Borland\CBuilder3\lib -r -c -ap -Tpd -Gi -w-dup'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   333
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   334
	    SearchedLibraries := #(
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   335
				    'import32.lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   336
				  ).
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   337
	] ifFalse:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   338
	    LinkCommand isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   339
		LinkCommand := 'link'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   340
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   341
	    LinkArgs isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   342
		LinkArgs := '/NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL /OUT:%1.dll /DEF:%1.def'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   343
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   344
	].
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   345
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   346
201
66bd5f9c781c only init once
Claus Gittinger <cg@exept.de>
parents: 198
diff changeset
   347
    MySymbolTable isNil ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   348
	Verbose := false.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   349
	NextHandleID := 1.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   350
	ObjectMemory addDependent:self.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   351
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   352
	OperatingSystem isMSDOSlike ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   353
	    SearchedLibraries := #(
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   354
				    'import32.lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   355
				  ).
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   356
	].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   357
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   358
	OperatingSystem isUNIXlike ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   359
	    systemType := OperatingSystem getOSType.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   360
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   361
	    "/ name of object file, where initial symbol table is found
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   362
	    "/ not req'd for all architectures.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   363
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   364
	    MySymbolTable := 'stx'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   365
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   366
	    "/ default set of libraries to be considered when
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   367
	    "/ unresolved symbols are encountered during the load.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   368
	    "/ Only req'd for linux and sunos non-ELF systems.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   369
	    "/ Can (should) be set in the smalltalk.rc file.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   370
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   371
	    SearchedLibraries := #().
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   372
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   373
	    (systemType = 'linux' 
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   374
	    or:[systemType = 'sunos']) ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   375
		'/usr/lib/libc.a' asFilename isReadable ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   376
		    SearchedLibraries := #('/usr/lib/libc.a')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   377
		] ifFalse:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   378
		    '/lib/libc.a' asFilename isReadable ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   379
			SearchedLibraries := #('/lib/libc.a')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   380
		    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   381
		]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   382
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   383
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   384
	    "/ default libraryPath where shared objects are searched for
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   385
	    "/ when a dynamic library is loaded without an explicit path.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   386
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   387
	    LoadLibraryPath := OperatingSystem getEnvironment:'LD_LIBRARY_PATH'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   388
	    LoadLibraryPath isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   389
		LoadLibraryPath := #('.'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   390
				     'lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   391
				     '/usr/local/smalltalk/lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   392
				     '/usr/local/lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   393
				     '/usr/lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   394
				     '/lib'
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   395
				    ) asOrderedCollection.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   396
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   397
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   398
	    "/ default libraryPath where shared objects are expected
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   399
	    "/ when a sharedObject load requires other objects to be loaded.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   400
	    "/ Only req'd for aix.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   401
	    "/ For more compatibility with ELF systems, look for a shell variable
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   402
	    "/ named LD_LIBRARY_PATH, and - if present - take that instead if a default.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   403
	    "/ Can (should) be set in the smalltalk.rc file.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   404
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   405
	    systemType = 'aix' ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   406
		LibPath := OperatingSystem getEnvironment:'LD_LIBRARY_PATH'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   407
		LibPath isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   408
		    LibPath := '.:/usr/local/smalltalk/lib:/usr/local/lib:/usr/lib:/lib'.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   409
		]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   410
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   411
	]
201
66bd5f9c781c only init once
Claus Gittinger <cg@exept.de>
parents: 198
diff changeset
   412
    ]
107
claus
parents: 106
diff changeset
   413
claus
parents: 106
diff changeset
   414
    "
claus
parents: 106
diff changeset
   415
     ObjectFileLoader initialize
claus
parents: 106
diff changeset
   416
    "
316
ee3426730cfc on sunos: link dynamic objects against libc.a for unresolved symbols.
Claus Gittinger <cg@exept.de>
parents: 307
diff changeset
   417
826
908ab4ca9dff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 818
diff changeset
   418
    "Modified: / 5.10.1998 / 19:39:16 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   419
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   420
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   421
lastError
780
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   422
    ^ LastError ? 'unknown error'
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   423
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   424
    "Modified: / 30.9.1998 / 17:21:23 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   425
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   426
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   427
libPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   428
    "see comment in #libPath:"
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   429
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   430
    ^ LibPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   431
!
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   432
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   433
libPath:aSharedLibraryPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   434
    "set the pathnames of directories, where other shared objects
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   435
     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
   436
     library object to be loaded.
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   437
     Currently, this is only required to be set for AIX systems;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   438
     ELF based linux and solaris systems specify the libPath in the 
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   439
     LD_LIBRARY_PATH environment variable."
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   440
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   441
    LibPath := aSharedLibraryPath
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   442
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   443
    "
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   444
     ObjectFileLoader libPath:'.:/usr/lib:/usr/local/lib'
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   445
    "
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   446
!
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
   447
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   448
linkErrorMessage
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   449
    ^ LinkErrorMessage
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
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   452
searchedLibraries
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   453
    "see comment in #searchedLibraries:"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   454
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   455
    ^ SearchedLibraries
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   456
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   457
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   458
searchedLibraries:aCollectionOfArchivePathNames
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   459
    "set the pathnames of archives which are to be searched
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   460
     when unresolved references occur while loading in an object
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   461
     file. On systems which support shared libraries (all SYS5.4 based
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   462
     systems), this is usually not required. Instead, modules which are to
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   463
     be filed in (.so files) are to be prelinked with the appropriate
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   464
     shared libraries. The dynamic loader then cares about loading those
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   465
     modules (keeping track of which modules are already loaded).
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   466
     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
   467
     (i.e. currently only linux and a.out-sunos) need to set this."
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   468
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   469
    SearchedLibraries := aCollectionOfArchivePathNames
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   470
!
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   471
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   472
verbose
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   473
    "return true, if debug traces are turned on"
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   474
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   475
    ^ Verbose
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   476
!
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   477
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   478
verbose:aBoolean
7ad01559b262 Initial revision
claus
parents:
diff changeset
   479
    "turn on/off debug traces"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   480
10
73e97b6175c4 *** empty log message ***
claus
parents: 6
diff changeset
   481
    Verbose := aBoolean
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   482
7ad01559b262 Initial revision
claus
parents:
diff changeset
   483
    "ObjectFileLoader verbose:true"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   484
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   485
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   486
!ObjectFileLoader class methodsFor:'change & update'!
291
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   487
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   488
update:something with:aParameter from:changedObject
107
claus
parents: 106
diff changeset
   489
    "sent, when image is saved or restarted"
claus
parents: 106
diff changeset
   490
claus
parents: 106
diff changeset
   491
    (something == #aboutToSnapshot) ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   492
	self invalidateAndRememberAllObjectFiles
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   493
    ].
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   494
    (something == #finishedSnapshot) ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   495
	self revalidateAllObjectFiles
107
claus
parents: 106
diff changeset
   496
    ].
226
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   497
"/    (something == #restarted) ifTrue:[
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   498
"/        self reloadAllRememberedObjectFiles
f0771f42256d reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   499
"/    ].
125
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   500
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   501
    "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
   502
    "Modified: 8.3.1996 / 23:34:29 / cg"
291
c0d5159014be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 286
diff changeset
   503
    "Created: 21.6.1996 / 19:50:01 / cg"
107
claus
parents: 106
diff changeset
   504
! !
claus
parents: 106
diff changeset
   505
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   506
!ObjectFileLoader class methodsFor:'defaults'!
115
claus
parents: 114
diff changeset
   507
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   508
hasValidBinaryExtension:aFilename
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   509
    "return true, if aFilename looks ok for binary loading.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   510
     This checks only the extension - not its contents. 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   511
     (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
   512
     This is very machine specific."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   513
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   514
    |fn|
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   515
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   516
    fn := aFilename asFilename.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   517
    self validBinaryExtensions do:[:ext |
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   518
	(fn hasSuffix:ext) ifTrue:[^ true].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   519
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   520
    ^ false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   521
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   522
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   523
     ObjectFileLoader hasValidBinaryExtension:'foo.st'
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   524
     ObjectFileLoader hasValidBinaryExtension:'foo.o' 
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   525
     ObjectFileLoader hasValidBinaryExtension:'foo.so'
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   526
     ObjectFileLoader hasValidBinaryExtension:'foo.dll'
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   527
     ObjectFileLoader hasValidBinaryExtension:'foo.DLL' 
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   528
     ObjectFileLoader hasValidBinaryExtension:'foo.obj'
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   529
     ObjectFileLoader hasValidBinaryExtension:'foo.sl'
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   530
    "
516
a8de1f7bb496 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 515
diff changeset
   531
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   532
    "Modified: / 1.10.1998 / 12:47:01 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   533
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   534
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   535
linkArgs
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   536
    ^ LinkArgs ? ''   "/ that default is ok for Unix
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   537
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   538
    "Created: / 12.8.1998 / 21:41:16 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   539
    "Modified: / 12.8.1998 / 21:42:50 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   540
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   541
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   542
linkArgs:anArgString
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   543
    LinkArgs := anArgString
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   544
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   545
    "
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   546
     MSC:
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   547
	LinkCommand := 'link32'.
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   548
	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
   549
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   550
     Borland:
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   551
	LinkCommand := 'ilink32'.
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   552
	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
   553
'
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   554
'/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
   555
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   556
     Unix:
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   557
	LinkCommand := 'ld'
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
   558
	LinkArgs := '-shared'
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   559
    "
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   560
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   561
    "Created: / 12.8.1998 / 21:43:16 / cg"
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   562
    "Modified: / 4.9.1998 / 00:33:46 / cg"
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   563
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   564
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   565
linkCommand
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   566
    ^ LinkCommand ? 'ld'   "/ that default is ok for Unix
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   567
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   568
    "Created: / 12.8.1998 / 21:41:16 / 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
linkCommand:aCommand
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   572
    LinkCommand := aCommand
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
    "Created: / 12.8.1998 / 21:40:44 / cg"
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   575
!
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
   576
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   577
loadableBinaryObjectFormat
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   578
    "return a symbol describing the expected binary format
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   579
     for object files to be loadable.
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   580
     This is very machine specific."
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   581
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   582
%{  /* NOCONTEXT */
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   583
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   584
#ifdef HAS_DL
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   585
# if defined(SYSV4) || defined(ELF)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   586
    RETURN ( @symbol(elf));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   587
# endif
590
7c158fe9b754 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
   588
# if defined(alpha) && defined(__osf__)
7c158fe9b754 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
   589
    RETURN ( @symbol(coff));
7c158fe9b754 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
   590
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   591
# if defined(GNU_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   592
    RETURN ( @symbol(aout));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   593
# endif
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   594
# if defined(AIX_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   595
    RETURN ( @symbol(xcoff));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   596
# endif
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   597
# if defined(HPUX10_DL)
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   598
    RETURN ( @symbol(hpcoff));
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
   599
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   600
# if defined(DL1_6)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   601
    RETURN ( @symbol(coff));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   602
# endif
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   603
# if defined(WIN_DL)
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   604
    RETURN ( @symbol(dll));
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   605
# endif
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   606
# if defined(BEOS_DL)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   607
    RETURN ( @symbol(beobj));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
   608
# endif
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   609
# if defined(__VMS__)
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   610
    RETURN ( @symbol(exe));
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   611
# endif
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   612
#endif
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   613
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   614
%}.
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   615
    ^ nil
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   616
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   617
    "
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   618
     ObjectFileLoader loadableBinaryObjectFormat
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   619
    "
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   620
!
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
   621
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   622
nm:file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   623
   "this should return a string to list the namelist of file.
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   624
    The output of the command should be one line for each symbol,
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   625
    formatted as:
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   626
	addr  segment  name
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   627
    This is parsed and read by #namesMatching:segment:in:.
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   628
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   629
    If your default nm command cannot produce this, write a little
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   630
    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
   631
    below.
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   632
    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
   633
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   634
    |os|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   635
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   636
    os := OperatingSystem getOSType.
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   637
    (os = 'irix' or:[os = 'osf']) ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   638
	^ 'nm -B ' , file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   639
    ].
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   640
    (os = 'solaris') ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   641
	^ 'nm -p ' , file
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   642
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   643
    ^ 'nm ' , file
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   644
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   645
    "Modified: / 4.5.1998 / 12:18:47 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   646
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   647
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   648
objectFileExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   649
    "return the fileName extension used for objects,
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   650
     as generated by myself (output of cc).
115
claus
parents: 114
diff changeset
   651
     This is very machine specific."
claus
parents: 114
diff changeset
   652
claus
parents: 114
diff changeset
   653
    |os|
claus
parents: 114
diff changeset
   654
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   655
    OperatingSystem isMSDOSlike ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   656
	"/ includes all of win32s, win95, winNT & os/2
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   657
	^ '.obj'
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   658
    ].
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   659
    OperatingSystem isVMSlike ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   660
	^ '.obj'
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   661
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   662
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   663
    ^ '.o'
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   664
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   665
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   666
     ObjectFileLoader objectFileExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   667
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   668
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   669
    "Modified: / 4.5.1998 / 12:17:34 / cg"
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   670
!
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   671
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   672
sharedLibraryExtension
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   673
    "return the fileName extension used for dynamic loadable objects,
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   674
     as generated by myself (output of linker).
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   675
     This is very machine specific."
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   676
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   677
    |suff|
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   678
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   679
    suff := self sharedLibrarySuffix.
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   680
    suff notNil ifTrue:[^ '.' , suff].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   681
    ^ suff
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   682
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   683
    "
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   684
     ObjectFileLoader sharedLibraryExtension
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   685
    "
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   686
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   687
    "Modified: / 4.5.1998 / 12:17:34 / cg"
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   688
!
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   689
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   690
sharedLibrarySuffix
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   691
    "return the fileName suffix used for dynamic loadable objects,
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   692
     as generated by myself (output of linker).
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   693
     This is very machine specific."
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   694
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   695
    |os|
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   696
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   697
    OperatingSystem isMSDOSlike ifTrue:[
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   698
        "/ includes all of win32s, win95, winNT & os/2
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   699
        ^ 'dll'
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   700
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   701
    OperatingSystem isVMSlike ifTrue:[
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   702
        ^ 'exe'
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   703
    ].
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   704
115
claus
parents: 114
diff changeset
   705
    os := OperatingSystem getSystemType.
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   706
    (os = 'sys5_4') ifTrue:[^ 'so'].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   707
    (os = 'iris') ifTrue:[^ 'so'].
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   708
    (os = 'linux') ifTrue:[
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   709
        self loadableBinaryObjectFormat == #aout ifTrue:[
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   710
            "/ not really shared, but loadable
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   711
            ^ 'o'
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   712
        ].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   713
        ^ 'so'
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   714
    ].
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   715
    (os = 'solaris') ifTrue:[^ 'so' ].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   716
    (os = 'osf') ifTrue:[^ 'so' ].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   717
    (os = 'aix') ifTrue:[^ 'so'].
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   718
    (os = 'hpux') ifTrue:[^ 'sl'].
119
claus
parents: 118
diff changeset
   719
claus
parents: 118
diff changeset
   720
    "/ mhmh what is a useful default ?
claus
parents: 118
diff changeset
   721
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   722
    ^ 'o'
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
   723
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   724
    "
1019
f1098d024b00 added #sharedLibrarySuffix:
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
   725
     ObjectFileLoader sharedLibrarySuffix
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   726
    "
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   727
702
80f90a274837 more for alpha-dynamic loading
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   728
    "Modified: / 4.5.1998 / 12:17:34 / cg"
115
claus
parents: 114
diff changeset
   729
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   730
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   731
validBinaryExtensions
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   732
    "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
   733
     This is very machine specific."
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   734
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   735
    |os|
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   736
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   737
    OperatingSystem isMSDOSlike ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   738
	"/ includes all of win32s, win95, winNT & os/2
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   739
	^ #('dll')
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
   740
    ].
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   741
    OperatingSystem isVMSlike ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
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
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   745
    os := OperatingSystem getSystemType.
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   746
    (os = 'sys5_4') ifTrue:[^ #('so') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   747
    (os = 'iris') ifTrue:[^ #('so') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   748
    (os = 'osf') ifTrue:[^ #('so') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   749
    (os = 'solaris') ifTrue:[^ #('so') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   750
    (os = 'sunos') ifTrue:[^ #('o' 'obj' 'a') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   751
    (os = 'ultrix') ifTrue:[^ #('o' 'obj' 'ld' 'obj.ld') ].
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
   752
    (os = 'linux') ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   753
	self loadableBinaryObjectFormat == #aout ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   754
	    ^ #('o' 'obj' 'a')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   755
	].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
   756
	^ #('so' 'o' 'obj' ) 
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
   757
    ].
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   758
    (os = 'aix') ifTrue:[^ #('o' 'so') ].
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   759
    (os = 'hpux') ifTrue:[^ #(" 'o' " 'sl') ].
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   760
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   761
    "/ mhmh what is a useful default ?
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   762
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   763
    ^ #('o')
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   764
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   765
    "
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   766
     ObjectFileLoader validBinaryExtensions
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   767
    "
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
   768
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
   769
    "Modified: / 1.10.1998 / 12:46:03 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   770
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   771
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   772
!ObjectFileLoader class methodsFor:'dynamic object loading'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   773
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   774
loadCPlusPlusObjectFile:aFileName
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   775
    "load a c++ object file (.o-file) into the image.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   776
     This method is not maintained (name mangling and static
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   777
     initialization is so different among systems ...)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   778
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   779
    |handle initAddr list|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   780
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   781
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   782
    handle isNil ifTrue:[
524
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   783
	Transcript showCR:('failed to load: ' , aFileName).
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   784
	('ObjectFileLoader [warning]: '
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   785
	 , aFileName
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   786
	 , ' failed. ('
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   787
	 , LinkErrorMessage
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
   788
	 , ')') errorPrintCR.
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   789
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   790
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   791
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   792
    list := self namesMatching:'__GLOBAL_$I*' segment:'[tT?]' in:aFileName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   793
list size == 1 ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   794
"/    (self isCPlusPlusObject:handle) ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   795
	Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   796
	    'a c++ object file' infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   797
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   798
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   799
	 what I would like to get is the CTOR_LIST,
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   800
	 and call each function.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   801
	 But dld cannot (currently) handle SET-type symbols, therefore
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   802
	 we search (using nm) for all __GLOBAL_$I* syms, get their values
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   803
	 and call them each
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   804
	"
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   805
"/        list := self namesMatching:'__GLOBAL_$I*' segment:'[tT?]' in:aFileName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   806
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   807
"/        initAddr := self getFunction:'__CTOR_LIST__' from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   808
"/        Verbose ifTrue:[
478
b0d558152d80 *PrintNL eliminated
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   809
"/            ('calling CTORs at:' , (initAddr printStringRadix:16)) infoPrintCR
141
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
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   812
	initAddr := self getFunction:list first from:handle.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   813
	initAddr isNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   814
	    "
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   815
	     try with added underscore
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   816
	    "
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   817
	    initAddr := self getFunction:('_' , list first) from:handle.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   818
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   819
	(initAddr isNil and:[list first startsWith:'_']) ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   820
	    "
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   821
	     try with removed underscore
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   822
	    "
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   823
	    initAddr := self getFunction:(list first copyFrom:2) from:handle.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   824
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   825
	initAddr isNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   826
	    Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   827
		('no CTOR-func found (' , list first , ')') infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   828
	    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   829
	    self unloadDynamicObject:aFileName.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   830
	    ^ nil
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   831
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   832
	Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   833
	    ('calling CTORs at:' , (initAddr printStringRadix:16)) infoPrintCR
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   834
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   835
	self callInitFunctionAt:initAddr 
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   836
	     specialInit:false 
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   837
	     forceOld:false 
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   838
	     interruptable:false
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   839
	     argument:0
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   840
	     identifyAs:nil
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   841
	     returnsObject:false.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   842
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   843
	Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   844
	    'done with CTORs.' infoPrintNL
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   845
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   846
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   847
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   848
	 cannot create a CPlusPlus class automatically (there could be more than
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   849
	 one classes in it too ...)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   850
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   851
	^ handle
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   852
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   853
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   854
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   855
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
   856
	'unknown object file' infoPrintNL
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   857
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   858
    self unloadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   859
    ^ nil
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
   860
478
b0d558152d80 *PrintNL eliminated
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   861
    "Modified: 10.1.1997 / 19:11:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   862
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   863
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   864
loadClass:aClassName fromObjectFile:aFileName
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   865
    "load a compiled class (.o-file) into the image.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
   866
     Returns the class or nil."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   867
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
   868
    |handle initAddr symName newClass moreHandles info status 
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   869
     otherClass knownToBeOk|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   870
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   871
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   872
    handle isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   873
	Transcript showCR:('failed to load: ' , aFileName).
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   874
	('ObjectFileLoader [warning]: '
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   875
	 , aFileName
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   876
	 , ' failed. ('
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   877
	 , LinkErrorMessage
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   878
	 , ')') errorPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   879
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   880
    ].
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
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   883
     get the Init-function; let the class install itself
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   884
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   885
    symName := '_' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   886
    initAddr := self getFunction:symName from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   887
    initAddr isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   888
	"try with added underscore"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   889
	symName := '__' , aClassName , '_Init'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   890
	initAddr := self getFunction:symName from:handle.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   891
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   892
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   893
    knownToBeOk := true.
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
"/    knownToBeOk ifFalse:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   896
"/        |list|
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
   897
"/
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   898
"/        Verbose ifTrue:[
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
   899
"/            'looking for undefs ...' infoPrintCR.
141
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
"/
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
"/         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
   904
"/         files (libs, other modules)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   905
"/        "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   906
"/        list := self getListOfUndefinedSymbolsFrom:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   907
"/        list notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   908
"/            moreHandles := self loadModulesFromListOfUndefined:list.
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
"/             now, try again
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
"/            symName := '_' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   914
"/            initAddr := self getFunction:symName from:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   915
"/            initAddr isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   916
"/                "try with added underscore"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   917
"/                symName := '__' , aClassName , '_Init'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   918
"/                initAddr := self getFunction:symName from:handle.
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
"/    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   922
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   923
    initAddr notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   924
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   925
	    ('calling init at: ' , (initAddr printStringRadix:16)) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   926
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   927
	info := self performModuleInitAt:initAddr for:aClassName identifyAs:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   928
	status := info at:1.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   929
	"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   930
	 if any classes are missing ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   931
	"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   932
	(status == #missingClass) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   933
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   934
	     ... and we are loading a module ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   935
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   936
	    Transcript showCR:'try for missing class in same object ...'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   937
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   938
		'try for missing class:' infoPrint. (info at:2) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   939
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   940
	    otherClass := self loadClass:(info at:2) fromObjectFile:aFileName.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   941
	    otherClass notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   942
		"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   943
		 try again ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   944
		"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   945
		Transcript showCR:'missing class is here; try again ...'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   946
		info := self performModuleInitAt:initAddr for:aClassName identifyAs:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   947
		status := info at:1.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   948
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   949
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   950
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   951
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   952
	    'done init status=' infoPrint. info infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   953
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   954
	(status == #unregisteredSuperclass) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   955
	    Transcript showCR:'superclass is not registered'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   956
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   957
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   958
	(Symbol hasInterned:aClassName) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   959
	    newClass := Smalltalk at:aClassName asSymbol ifAbsent:[nil].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   960
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   961
		'newClass is: ' infoPrint. newClass infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   962
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   963
	    newClass notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   964
		Smalltalk at:aClassName asSymbol put:newClass.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   965
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   966
		(newClass implements:#initialize) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   967
		    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   968
			'initialize newClass ...' infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   969
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   970
		    newClass initialize.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   971
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   972
		"force cache flush"
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   973
		Smalltalk isInitialized ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   974
		    Smalltalk changed.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   975
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   976
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   977
	] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   978
	    'ObjectFileLoader [warning]: class ' errorPrint. aClassName errorPrint.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   979
	    ' did not define itself' errorPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   980
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   981
	     do not unload - could have installed other classes/methods ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   982
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   983
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   984
	Smalltalk flushCachedClasses.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   985
	^ newClass
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   986
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   987
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   988
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   989
	('no symbol: ', symName,' in ',aFileName) infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   990
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   991
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   992
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   993
     unload
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   994
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   995
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
   996
	'unloading due to init failure:' infoPrint. handle pathName infoPrintCR.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   997
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   998
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
   999
    moreHandles notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1000
	moreHandles do:[:aHandle |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1001
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1002
		('unloading: ', aHandle printString) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1003
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1004
	    self unloadDynamicObject:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1005
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1006
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1007
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1008
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1009
	('unloading: ', handle printString) infoPrintCR.
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1010
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1011
    self unloadDynamicObject:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1012
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1013
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1014
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1015
     ObjectFileLoader loadClass:'Tetris'      fromObjectFile:'../clients/Tetris/Tetris.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1016
     ObjectFileLoader loadClass:'TetrisBlock' fromObjectFile:'../clients/Tetris/TBlock.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1017
     ObjectFileLoader loadClass:'Foo'         fromObjectFile:'classList.o'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1018
    "
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  1019
582
9a00e2dbdc97 must flush cached classes after loading (in case of private classes)
Claus Gittinger <cg@exept.de>
parents: 580
diff changeset
  1020
    "Modified: 6.7.1997 / 12:34:48 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1021
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1022
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1023
loadLibrary:aLibraryFileName
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1024
    "load a library; search in some standard places and using
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1025
     standard suffixes (i.e. no suffix should be given in the arg).
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1026
     Returns a handle or nil.
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1027
     Use this to attach C-libraries."
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1028
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1029
    |s suffixes handle libFilename|
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1030
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1031
    libFilename := aLibraryFileName asFilename.
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1032
    (s := libFilename suffix) isEmpty ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1033
	suffixes := self validBinaryExtensions
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1034
    ] ifFalse:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1035
	suffixes := #('')
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1036
    ].
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1037
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1038
    "/ try each suffix ...
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1039
    suffixes do:[:aSuffix | 
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1040
	|fn f|
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1041
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1042
	fn := aLibraryFileName , '.' , aSuffix.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1043
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1044
	(libFilename isAbsolute 
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1045
	or:[(aLibraryFileName startsWith:'./')
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1046
	or:[(aLibraryFileName startsWith:'../')]]) ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1047
	    f := fn asFilename.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1048
	    f exists ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1049
		handle := self loadObjectFile:fn.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1050
		handle notNil ifTrue:[^ handle].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1051
	    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1052
	] ifFalse:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1053
	    "/ try each directory    
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1054
	    LoadLibraryPath size > 0 ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1055
		(LoadLibraryPath asCollectionOfSubstringsSeparatedBy:$:) 
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1056
		do:[:aDir |
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1057
		    f := aDir asFilename construct:fn.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1058
		    f exists ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1059
			handle := self loadObjectFile:f pathName.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1060
			handle notNil ifTrue:[^ handle].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1061
		    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1062
		]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1063
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1064
	    "/ 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
  1065
	    "/ how to find it (the system itself)
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1066
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
	]
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1070
    ].
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1071
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1072
    ^ nil
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1073
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1074
    "
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1075
     ObjectFileLoader loadLibrary:'libjpeg'
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
  1076
     ObjectFileLoader loadLibrary:'odbc32'
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1077
    "
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1078
845
e9da9bd2bc27 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 841
diff changeset
  1079
    "Modified: / 4.5.1999 / 17:01:47 / cg"
504
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1080
!
850e5886b68e added #loadLibrary.
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
  1081
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1082
loadMethodObjectFile:aFileName
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1083
    "load an object file (.o-file) for a single method into the image; 
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1084
     This does a slightly different initialization.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1085
     Return an object handle; nil on error"
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1086
346
29fe74c22e1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1087
    |handle initAddr initName m|
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1088
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1089
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1090
    "/ load the objectfile
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1091
    "/
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1092
    handle := self loadDynamicObject:aFileName.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1093
    handle isNil ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1094
	^ nil
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1095
    ].
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1096
300
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1097
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1098
    "/ find the entry function
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1099
    "/
e351220115f5 added support to reload function object modules
Claus Gittinger <cg@exept.de>
parents: 291
diff changeset
  1100
    initName := aFileName asFilename withoutSuffix baseName.
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1101
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1102
    initAddr := self getFunction:'__' , initName , '_Init' from:handle.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1103
    initAddr isNil ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1104
	initAddr := ObjectFileLoader getFunction:'_' , initName , '_Init' from:handle.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1105
	initAddr isNil ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1106
	    (self getListOfUndefinedSymbolsFrom:handle) size > 0 ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1107
		self listUndefinedSymbolsIn:handle.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1108
		'ObjectFileLoader [info]: undefined symbols in primitive code' infoPrintCR.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1109
	    ] ifFalse:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1110
		('ObjectFileLoader [info]: ' , initName , '_Init() lookup failed') errorPrintCR
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1111
	    ].
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1112
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1113
	    "/
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1114
	    "/ not found - unload
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1115
	    "/
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1116
	    self unloadDynamicObject:handle.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1117
	    ^ nil
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1118
	]
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
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1121
    Object osSignalInterruptSignal handle:[:ex |
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1122
	('ObjectFileLoader [warning]: hard error in initFunction: ' , initName , ' of method-module ' , aFileName) errorPrintCR.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1123
	self unloadDynamicObject:handle.
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1124
	^ nil
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1125
    ] do:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1126
	"/
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1127
	"/ call it - it returns the new method object
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1128
	"/
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1129
	m := self
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1130
	    callInitFunctionAt:initAddr 
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1131
	    specialInit:true
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1132
	    forceOld:true 
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1133
	    interruptable:false
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1134
	    argument:2
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1135
	    identifyAs:handle
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1136
	    returnsObject:true.
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1137
    ].
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1138
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1139
    handle method:m.
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1140
    ^ handle
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1141
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1142
    "Created: / 5.12.1995 / 20:59:46 / cg"
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1143
    "Modified: / 21.10.1998 / 15:17:31 / cg"
174
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1144
!
3be731572be7 prints replaced by infoPrint
Claus Gittinger <cg@exept.de>
parents: 160
diff changeset
  1145
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1146
loadObjectFile:aFileName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1147
    "load an object file (.o-file) into the image; 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1148
     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
  1149
     This may be either a smalltalk object or a C-object file.
472
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1150
     The object files init function (if any) is called, and the module
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1151
     is unloaded if it returns failure (use lowLevel load, to load a file
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  1152
     without automatic initialization).
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1153
     Return nil on error, an objectFile handle if ok."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1154
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1155
    ^ self
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1156
	loadObjectFile:aFileName 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1157
	invokeInitializeMethods:true
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1158
!
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1159
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1160
loadObjectFile:aFileName invokeInitializeMethods:invokeInitializeMethods
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1161
    "load an object file (.o-file) into the image; 
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1162
     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
  1163
     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
  1164
     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
  1165
     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
  1166
     without automatic initialization).
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  1167
     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
  1168
346
29fe74c22e1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1169
    |handle initAddr className initNames didInit info status
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1170
     dummyHandle msg isCModule|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1171
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1172
    handle := self loadDynamicObject:aFileName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1173
    handle isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1174
	Transcript showCR:('failed to load: ' , aFileName).
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1175
	('ObjectFileLoader [warning]: '
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1176
	 , aFileName
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1177
	 , ' failed. ('
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1178
	 , LinkErrorMessage
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1179
	 , ')') errorPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1180
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1181
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1182
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1183
    didInit := false.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1184
    isCModule := false.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1185
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1186
    "/ with dld, load may have worked, even if undefined symbols
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1187
    "/ are to be resolved. If thats the case, load all libraries ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1188
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1189
    SearchedLibraries notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1190
	(self hasUndefinedSymbolsIn:handle) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1191
	    self initializeLoader.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1192
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1193
	    SearchedLibraries do:[:libName |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1194
		(self hasUndefinedSymbolsIn:handle) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1195
		    Transcript showCR:'   ... trying ' , libName , ' to resolve undefined symbols ...'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1196
		    dummyHandle := Array new:4.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1197
		    dummyHandle := self primLoadDynamicObject:libName into:dummyHandle.
228
be9939d96cfe removed a wrong debug message
Claus Gittinger <cg@exept.de>
parents: 227
diff changeset
  1198
"/                    dummyHandle isNil ifTrue:[
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  1199
"/                        Transcript showCR:'   ... load of library ' , libName , ' failed.'.
228
be9939d96cfe removed a wrong debug message
Claus Gittinger <cg@exept.de>
parents: 227
diff changeset
  1200
"/                    ]
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1201
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1202
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1203
	    (self hasUndefinedSymbolsIn:handle) isNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1204
		Transcript showCR:('LOADER: still undefined symbols in ',aFileName,'.').
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1205
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1206
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1207
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1208
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1209
    "
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1210
     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
  1211
     (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
  1212
      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
  1213
      scheme as well)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1214
    "
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1215
    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
  1216
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1217
    "/
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1218
    "/ 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
  1219
    "/ 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
  1220
    "/
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1221
    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
  1222
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1223
    initAddr notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1224
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1225
	    ('calling init at:' , (initAddr printStringRadix:16)) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1226
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1227
	info := self 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1228
		    performModuleInitAt:initAddr 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1229
		    invokeInitializeMethods:invokeInitializeMethods
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1230
		    for:nil
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1231
		    identifyAs:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1232
	status := info at:1.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1233
	status == #ok ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1234
	    didInit := true.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1235
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1236
    ] ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1237
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1238
	"/ look for explicit C-init (xxx__Init) function
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1239
	"/ This is used in C object files
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1240
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1241
	initAddr := self findFunction:className suffix:'__Init' in:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1242
	initAddr notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1243
	    isCModule := true.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1244
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1245
	    Object osSignalInterruptSignal handle:[:ex |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1246
		('ObjectFileLoader [warning]: hard error in initFunction of class-module: ' , aFileName) errorPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1247
		status := #initFailed.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1248
	    ] do:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1249
		(self callInitFunctionAt:initAddr 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1250
		     specialInit:false 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1251
		     forceOld:true 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1252
		     interruptable:false
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1253
		     argument:0
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1254
		     identifyAs:handle
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1255
		     returnsObject:false) < 0 ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1256
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1257
		    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1258
			'init function return failure ... unload' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1259
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1260
		    status := #initFailed.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1261
		] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1262
		    didInit := true.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1263
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1264
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1265
	] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1266
	    status := #noInitFunction.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1267
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1268
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1269
	     look for any init-function(s); call them all
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1270
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1271
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1272
		'no good init functions found; looking for candidates ...' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1273
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1274
	    initNames := self namesMatching:'*_Init' segment:'[tT?]' in:aFileName.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1275
	    initNames notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1276
		initNames do:[:aName |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1277
		    initAddr := self getFunction:aName from:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1278
		    initAddr isNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1279
			(aName startsWith:'_') ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1280
			    initAddr := self getFunction:(aName copyFrom:2) from:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1281
			].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1282
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1283
		    initAddr isNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1284
			Transcript showCR:('no symbol: ',aName,' in ',aFileName).
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1285
		    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1286
			Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1287
			    ('calling init at:' , (initAddr printStringRadix:16)) infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1288
			].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1289
			self 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1290
			    performModuleInitAt:initAddr 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1291
			    invokeInitializeMethods:invokeInitializeMethods
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1292
			    for:nil 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1293
			    identifyAs:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1294
			didInit := true.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1295
		    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1296
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1297
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1298
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1299
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1300
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1301
    didInit ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1302
	status == #noInitFunction ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1303
	    msg := 'LOADER: no init function; assume load ok'
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1304
	] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1305
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1306
	    (status ~~ #registrationFailed 
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1307
	    and:[status ~~ #initFailed 
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1308
	    and:[status ~~ #missingClass 
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1309
	    and:[status ~~ #versionMismatch]]])
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1310
	    ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1311
		self listUndefinedSymbolsIn:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1312
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1313
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1314
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1315
		'unloading, since init failed ...' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1316
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1317
	    self unloadDynamicObject:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1318
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1319
		'unloaded.' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1320
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1321
	    handle := nil.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1322
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1323
	    status == #initFailed ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1324
		msg := 'LOADER: module not loaded (init function signalled failure).'
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1325
	    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1326
		status == #missingClass ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1327
		    msg := 'LOADER: module not loaded (superclass missing: ' , (info at:2) , ').'
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1328
		] ifFalse:[
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1329
		    status == #registrationFailed ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1330
			msg :=  'LOADER: module registration failed (incompatible object or missing superclass)'
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1331
		    ] ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1332
			status == #versionMismatch ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1333
			    msg :=  'LOADER: module registration failed (class version mismatch ' , (info at:2) printString , ')'
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1334
			] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1335
			    (self namesMatching:'*__sepInitCode__*' segment:'[tT?]' in:aFileName) notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1336
				msg := 'LOADER: module not loaded (unknown error reason).'
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1337
			    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1338
				msg := 'LOADER: module not loaded (no _Init entry in object file ?).'
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1339
			    ]
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  1340
			]
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1341
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1342
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1343
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1344
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1345
	Transcript showCR:msg
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1346
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1347
471
508fa84cb122 no init function: assume load ok.
Claus Gittinger <cg@exept.de>
parents: 470
diff changeset
  1348
    isCModule ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1349
	Smalltalk isInitialized ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1350
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1351
	     really dont know, if it has changed ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1352
	     ... but assume, that new classes have been installed.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1353
	    "
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1354
	    Smalltalk changed.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1355
	]
157
d7f68808a258 reload objects in the previous order
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  1356
    ].
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1357
    ^ handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1358
790
5ee8cd853bbb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
  1359
    "Modified: / 21.10.1998 / 15:19:10 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1360
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1361
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1362
unloadAllObsoleteObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1363
    "unload all dynamically loaded object files for which the classes/method
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1364
     has been already garbage collected."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1365
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1366
    LoadedObjects notNil ifTrue:[
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1367
	LoadedObjects keys copy do:[:name |
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1368
	    |handle|
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1369
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1370
	    handle := LoadedObjects at:name ifAbsent:nil.
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1371
	    (handle notNil and:[handle isObsolete]) ifTrue:[
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1372
		self unloadObjectFile:name 
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1373
	    ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1374
	]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1375
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1376
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1377
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1378
     ObjectFileLoader unloadAllObsoleteObjectFiles
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1379
    "
151
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1380
7f46f760ba45 automatically unload modules for garbage collected methods/classes
Claus Gittinger <cg@exept.de>
parents: 149
diff changeset
  1381
    "Modified: 5.12.1995 / 18:16:52 / cg"
134
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1382
!
d93682ca90a1 more queries for valid objectfilenames
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
  1383
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1384
unloadObjectFile:aFileName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1385
    "unload an object file (.o-file) from the image.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1386
     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
  1387
     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
  1388
     track of these. For now, use at your own risk.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1389
     (especially critical are blocks-functions)."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1390
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1391
    |handle|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1392
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1393
    LoadedObjects notNil ifTrue:[
153
90df8e05815c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1394
	handle := LoadedObjects at:aFileName ifAbsent:nil
141
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
    handle isNil ifTrue:[
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1397
	('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
  1398
	^ self
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1399
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1400
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1401
    "/ call the modules deInit-function ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1402
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1403
    "/ unload ...
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1404
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1405
    self unloadDynamicObject:handle
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1406
!
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1407
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1408
unloadObjectFileAndRemoveClasses:aFileName
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1409
    "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
  1410
     corresponding classes from the system.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1411
     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
  1412
     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
  1413
     track of these. For now, use at your own risk.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1414
     (especially critical are blocks-functions)."
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1415
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1416
    |handle|
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1417
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1418
    LoadedObjects notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1419
	handle := LoadedObjects at:aFileName ifAbsent:nil
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1420
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1421
    handle isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1422
	('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
  1423
	^ self
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1424
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1425
    handle isClassLibHandle ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1426
	self warn:'module is not a classLib module'.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1427
	^ self
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1428
    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1429
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1430
    "/ remove the classes ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1431
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1432
    Class withoutUpdatingChangesDo:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1433
	handle classes do:[:aClass |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1434
	    aClass notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1435
		aClass isMeta ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1436
		    aClass removeFromSystem
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1437
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1438
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  1439
	]
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
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1442
    "/ call the modules deInit-function ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1443
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1444
    "/ unload ...
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1445
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1446
    self unloadDynamicObject:handle
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1447
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1448
    "Modified: / 12.12.1997 / 22:12:28 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1449
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1450
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  1451
!ObjectFileLoader class methodsFor:'dynamic object queries'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1452
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1453
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
  1454
    "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
  1455
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1456
    |initAddr className nm|
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1457
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1458
    "/ care for colons, as found in nameSpace classes ...
747
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1459
    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
  1460
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1461
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1462
     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
  1463
    "
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1464
    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
  1465
    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
  1466
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1467
    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
  1468
    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
  1469
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1470
    "/
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1471
    "/ special for broken ultrix nlist 
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1472
    "/ (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
  1473
    "/ 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
  1474
    "/
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  1475
    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
  1476
    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
  1477
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1478
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1479
     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
  1480
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1481
    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
  1482
    className notNil ifTrue:[
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1483
	initAddr := self getFunction:(className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1484
	initAddr notNil ifTrue:[^ initAddr].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1485
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1486
	initAddr := self getFunction:('_' , className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1487
	initAddr isNil ifTrue:[
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1488
	    "/
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1489
	    "/ special for broken ultrix nlist 
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1490
	    "/ (will not find symbol with single underscore)
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1491
	    "/ workaround: add another underscore and retry
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1492
	    "/
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1493
	    initAddr := self getFunction:('__' , className , suffix) from:handle.
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  1494
	].
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1495
    ].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1496
    ^ initAddr
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1497
747
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1498
    "Created: / 13.7.1996 / 00:38:01 / cg"
cd749767d808 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 741
diff changeset
  1499
    "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
  1500
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1501
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1502
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
  1503
    "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
  1504
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1505
    ^ 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
  1506
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1507
    "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
  1508
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1509
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1510
getFunction:aString from:handle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1511
    "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
  1512
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1513
     Return the address of the function, or nil on any error."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1514
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1515
    ^ self getSymbol:aString function:true from:handle
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1516
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1517
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1518
getListOfUndefinedSymbolsFrom:aHandle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1519
    "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
  1520
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1521
     Not all systems allow an object with undefined symbols to be
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1522
     loaded (actually, only dld does)."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1523
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1524
    |list|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1525
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1526
%{  /* STACK: 20000 */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1527
#ifdef GNU_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1528
    void (*func)();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1529
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1530
    char *name;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1531
    int nMax;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1532
    char **undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1533
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1534
    undefNames = dld_list_undefined_sym();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1535
    if (dld_undefined_sym_count > 0) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1536
	char **nm;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1537
	int index;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1538
	int count = dld_undefined_sym_count;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1539
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1540
	if (count > 100) count = 100;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1541
	list = __ARRAY_NEW_INT(count);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1542
	if (list) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1543
	    nm = undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1544
	    for (index = 0; index < count; index++) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1545
		OBJ s;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1546
238
4d80cc4b86dd underscore cleanup
Claus Gittinger <cg@exept.de>
parents: 228
diff changeset
  1547
		s = __MKSTRING(*nm);
4d80cc4b86dd underscore cleanup
Claus Gittinger <cg@exept.de>
parents: 228
diff changeset
  1548
		__ArrayInstPtr(list)->a_element[index] = s;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1549
		__STORE(list, s);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1550
		nm++;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1551
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1552
	    free(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
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1555
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1556
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1557
#ifdef DL1_6
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1558
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1559
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1560
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1561
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1562
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1563
#ifdef SYSV4_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1564
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1565
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1566
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1567
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1568
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1569
#ifdef SUN_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1570
    /*
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1571
     * dont know how to do it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1572
     */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1573
#endif
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
#ifdef NEXT_DL
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
     * dont know how to do it
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
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1580
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1581
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1582
    /*
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1583
     * dont know how to do it
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1584
     */
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1585
#endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1586
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1587
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1588
    /*
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1589
     * dont know how to do it
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1590
     */
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1591
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1592
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1593
%}.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1594
    ^ list
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1595
!
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
getSymbol:aString function:isFunction from:aHandle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1598
    "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
  1599
     Handle must be the one returned previously from loadDynamicObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1600
     Return the address of the symbol, or nil on any error."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1601
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1602
    |sysHandle1 sysHandle2 pathName address|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1603
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1604
    sysHandle1 := aHandle sysHandle1.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1605
    sysHandle2 := aHandle sysHandle2.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1606
    pathName := aHandle pathName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1607
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1608
%{  /* STACK: 20000 */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1609
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1610
#ifdef GNU_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1611
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1612
    void (*func)();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1613
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1614
    char *name;
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
    if (__isString(aString)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1617
	name = (char *) __stringVal(aString);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1618
	if (isFunction == false) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1619
	    addr = dld_get_symbol(name);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1620
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1621
		if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1622
		    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
  1623
		}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1624
		address = __MKUINT( addr );
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1625
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1626
	} else {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1627
	    func = (void (*) ()) dld_get_func(name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1628
	    if (func) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1629
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1630
		    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
  1631
		}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1632
		if (dld_function_executable_p(name)) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1633
		    address = __MKUINT( (INT)func );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1634
		} else {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1635
		    char **undefNames;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1636
		    char **nm;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1637
		    int i;
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1638
        
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1639
		    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1640
			printf ("function %s not executable\n", name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1641
			dld_perror("not executable");
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1642
                    
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1643
			printf("undefined:\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1644
			nm = undefNames = dld_list_undefined_sym();
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1645
			for (i=dld_undefined_sym_count; i; i--) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1646
			    printf("    %s\n", *nm++);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1647
			}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1648
			free(undefNames);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1649
		    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1650
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1651
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1652
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1653
		    printf ("function %s not found\n", name);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1654
		    dld_perror("get_func");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1655
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1656
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1657
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1658
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1659
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1660
#endif /* GNU_DL */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1661
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1662
#ifdef WIN_DL
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1663
  {
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1664
    void *h;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1665
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1666
    INT val;
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1667
    FARPROC entry;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1668
    HMODULE handle;
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1669
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1670
    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
  1671
	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
  1672
	handle = (HMODULE)(val);
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1673
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1674
	    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
  1675
		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
  1676
	    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
  1677
	    if (entry != NULL) {
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1678
		addr = (void *)entry;
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1679
		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
  1680
		    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
  1681
		}
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1682
		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
  1683
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1684
		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
  1685
		    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
  1686
		}
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1687
	    }
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  1688
	}
180
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
  }
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1691
#endif
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1692
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1693
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1694
  {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1695
    void *h;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1696
    void *addr;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1697
    INT val;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1698
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1699
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1700
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1701
	val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1702
	handle = (void *)(val);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1703
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1704
	if (__isString(aString)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1705
	    if (@global(Verbose) == true)
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1706
		printf("get sym <%s> handle = %x\n", __stringVal(aString), (int)handle);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1707
	    entry = NULL;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1708
	    get_image_symbol((image_id) handle, (char *) __stringVal(aString), B_SYMBOL_TYPE_TEXT, &entry);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1709
	    if (entry != NULL) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1710
		addr = (void *)entry;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1711
		if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1712
		    printf("get_image_symbol %s ok; addr = %x\n", __stringVal(aString), addr);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1713
		}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1714
		address = __MKUINT( (int)addr );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1715
	    } else {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1716
		if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1717
		    printf("get_image_symbol %s error\n", __stringVal(aString));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1718
		}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1719
	    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1720
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1721
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1722
  }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1723
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  1724
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1725
#ifdef DL1_6
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1726
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1727
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1728
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1729
    INT val;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1730
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1731
    if (__isString(aString)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1732
	if (__isString(sysHandle1)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1733
	    if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1734
		printf("get sym <%s> handle = %x\n",
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1735
			__stringVal(aString), __stringVal(sysHandle1));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1736
	    addr = dl_getsymbol(__stringVal(sysHandle1), __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1737
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1738
		if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1739
		    printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1740
		address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1741
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1742
		if (@global(Verbose) == true)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1743
		    printf("dl_getsymbol %s failed\n", __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1744
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1745
	}
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
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1748
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1749
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1750
#ifdef SYSV4_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1751
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1752
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1753
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1754
    INT val;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1755
    OBJ low = sysHandle1, hi = sysHandle2;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1756
    extern void *dlsym();
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1757
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1758
    if (__bothSmallInteger(low, hi)) {
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1759
#ifdef alpha64
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1760
	val = (__intVal(hi) << 32) + __intVal(low);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1761
#else
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1762
	val = (__intVal(hi) << 16) + __intVal(low);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1763
#endif
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1764
	h = (void *)(val);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1765
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1766
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1767
		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
  1768
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1769
	    addr = dlsym(h, (char *) __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1770
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1771
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1772
		    printf("dlsym %s ok; addr = %x\n", __stringVal(aString), addr);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1773
		}
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1774
		address = __MKUINT( (INT)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1775
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1776
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1777
		    printf("dlsym %s error: %s\n", __stringVal(aString), dlerror());
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1778
		}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1779
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1780
	}
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1781
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1782
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1783
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1784
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1785
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1786
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1787
    void *h;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1788
    void *addr;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1789
    INT val, ret;
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1790
    OBJ low = sysHandle1, hi = sysHandle2;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1791
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1792
    if (__bothSmallInteger(low, hi)) {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1793
	val = (_intVal(hi) << 16) + _intVal(low);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1794
	h = (void *)(val);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1795
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1796
	    if (@global(Verbose) == true) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1797
		printf("get sym <%s> handle = %x\n", __stringVal(aString), h);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1798
	    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1799
	    ret = shl_findsym(h, __stringVal(aString), TYPE_UNDEFINED, &addr);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1800
	    if (ret != 0) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1801
		if (@global(Verbose) == true) {
804
0fe603902669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
  1802
		    printf("dlsym %s error; errno=%d\n", __stringVal(aString), errno);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1803
		}
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1804
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1805
		if (@global(Verbose) == true) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1806
		    printf("dlsym %s ok; addr = %x\n", __stringVal(aString), addr);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1807
		}
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1808
		address = __MKUINT( (INT)addr );
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1809
	    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1810
	}
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
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1813
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1814
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1815
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1816
#ifdef AIX_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1817
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1818
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1819
    void *addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1820
    int val;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1821
    struct nlist nl[2];
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1822
    OBJ low = sysHandle1, hi = sysHandle2;
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1823
    char nameBuffer[256];
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1824
    static struct funcDescriptor {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1825
	unsigned vaddr;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1826
	unsigned long2;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1827
	unsigned long3;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1828
    } descriptor;
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1829
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1830
    if (__bothSmallInteger(low, hi)
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1831
     && __isString(aString) && __isString(pathName)) {
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1832
	val = (__intVal(hi) << 16) + __intVal(low);
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1833
	h = (void *)(val);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1834
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1835
	if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1836
	    printf("get sym <%s> handle = %x path= %s\n", 
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1837
			__stringVal(aString), h, __stringVal(pathName));
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1838
	}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1839
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1840
#define USE_ENTRY
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1841
#ifdef USE_ENTRY
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1842
	/*
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1843
	 * 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
  1844
	 * (i.e. linked with -e _xxx_Init)
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1845
	 */
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1846
	if (@global(Verbose) == true) {
858
2697c8300306 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1847
	    printf("returned handle as addr = %x\n", h);
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1848
	}
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1849
	address = __MKUINT( (int)(h) );
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1850
#else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1851
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1852
# ifdef USE_DESCRIPTOR
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1853
	if (isFunction == true) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1854
# else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1855
	if (0) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1856
# endif
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1857
	    nameBuffer[0] = '.';
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1858
	    strcpy(nameBuffer+1, aString);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1859
	    nl[0].n_name = nameBuffer;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1860
	} else {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1861
	    nl[0].n_name = __stringVal(aString);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1862
	}
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1863
	nl[1].n_name = "";
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1864
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1865
	if (nlist(__stringVal(pathName), &nl) == -1) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1866
	    if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1867
		printf("nlist error\n");
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1868
	    }
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1869
	} else {
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1870
	    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
  1871
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1872
	    if (isFunction == true) {
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1873
# ifdef USE_DESCRIPTOR
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1874
		printf("daddr = %x\n", addr);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1875
		printf("daddr[0] = %x\n", ((long *)addr)[0]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1876
		printf("daddr[1] = %x\n", ((long *)addr)[1]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1877
		printf("daddr[2] = %x\n", ((long *)addr)[2]);
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1878
# endif
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1879
	    }
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1880
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1881
	    if (@global(Verbose) == true) {
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1882
		printf("value=%x section=%d type=%x sclass=%d\n", 
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1883
			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
  1884
		printf("vaddr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1885
	    }
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1886
# ifdef DOES_NOT_WORK
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1887
	    address = __MKUINT( (int)addr );
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1888
# else
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1889
	    descriptor.vaddr = (unsigned) addr;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1890
	    descriptor.long2 = 0;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1891
	    descriptor.long3 = 0;
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1892
	    address = __MKUINT( (int)(&descriptor) );
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1893
# endif
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1894
	}
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1895
#endif /* dont USE_ENTRY */
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1896
    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1897
  }
321
9428bae4c62e dynamic loading for aix fixed
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  1898
#endif /* AIX_DL */
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1899
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1900
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1901
#ifdef SUN_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1902
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1903
    void *h;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1904
    void *addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1905
    int val;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1906
    OBJ low = sysHandle1, hi = sysHandle2;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1907
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1908
    if (__bothSmallInteger(low, hi)) {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1909
	val = (_intVal(hi) << 16) + _intVal(low);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1910
	h = (void *)(val);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1911
	if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1912
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1913
		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
  1914
	    }
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1915
	    addr = dlsym(h, __stringVal(aString));
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1916
	    if (addr) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1917
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1918
		    printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1919
		}
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1920
		address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1921
	    } else {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1922
		if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1923
		    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
  1924
		}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1925
	    }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1926
	}
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
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1929
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1930
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  1931
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1932
#ifdef NEXT_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1933
  {
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1934
    unsigned long addr;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1935
    long result;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1936
    NXStream *errOut;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1937
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1938
    if (__isString(aString)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1939
	if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1940
	    printf("get sym <%s>\n", __stringVal(aString));
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  1941
	}
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1942
	errOut = NXOpenFile(2, 2);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1943
	result = rld_lookup(errOut,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1944
			    (char *) __stringVal(aString),
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1945
			    &addr);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1946
	NXClose(errOut);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1947
	if (result) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  1948
	    if (@global(Verbose) == true) {
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1949
		printf("addr = %x\n", addr);
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1950
	    }
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1951
	    address = __MKUINT( (int)addr );
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1952
	}
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
  }
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1955
#endif
180
a38d34ef8bde dynamic load works on NT !
Claus Gittinger <cg@exept.de>
parents: 178
diff changeset
  1956
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1957
%}.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  1958
    ^ address
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1959
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1960
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1961
hasUndefinedSymbolsIn:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1962
    "return true, if a module has undefined symbols in it.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1963
     This is only possible if the system supports loading
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1964
     modules with undefined things in it - most do not"
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1965
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1966
    ^ (self getListOfUndefinedSymbolsFrom:handle) size > 0
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1967
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  1968
    "Modified: 25.4.1996 / 09:47:27 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1969
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  1970
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1971
initFunctionBasenameForFile:aFileName
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1972
    "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
  1973
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1974
    |name suffixLen|
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1975
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1976
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1977
     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
  1978
    "
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1979
    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
  1980
    suffixLen := 0.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1981
    self validBinaryExtensions do:[:suffix |
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1982
	suffixLen == 0 ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1983
	    (name hasSuffix:suffix) ifTrue:[
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1984
		suffixLen := suffix size + 1
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1985
	    ]
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1986
	]
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1987
    ].
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  1988
    name := name baseName.
403
43ad163ca9bf solaris changes
Claus Gittinger <cg@exept.de>
parents: 399
diff changeset
  1989
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1990
    suffixLen ~~ 0 ifTrue:[
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  1991
	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
  1992
    ].
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1993
    ^ name.
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1994
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  1995
    "
514
383c96ae011a More Ultrix changes.
Stefan Vogel <sv@exept.de>
parents: 513
diff changeset
  1996
     ObjectFileLoader initFunctionBasenameForFile:'libbasic.so' 
383c96ae011a More Ultrix changes.
Stefan Vogel <sv@exept.de>
parents: 513
diff changeset
  1997
     ObjectFileLoader initFunctionBasenameForFile:'demo.so' 
383c96ae011a More Ultrix changes.
Stefan Vogel <sv@exept.de>
parents: 513
diff changeset
  1998
     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
  1999
    "
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2000
784
c8742d9efcb6 suffix fix for systems with caseless filenames
Claus Gittinger <cg@exept.de>
parents: 782
diff changeset
  2001
    "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
  2002
    "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
  2003
!
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  2004
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2005
isCPlusPlusObject:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2006
    "return true, if the loaded object is a c++ object module.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2007
     This is not yet fully implemented/supported."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2008
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2009
    (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
  2010
    (self getSymbol:'__CTOR_LIST__' function:true from:handle) notNil ifTrue:[^ true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2011
    (self getSymbol:'__CTOR_LIST__' function:false from:handle) notNil ifTrue:[^ true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2012
    (self getSymbol:'__gnu_compiled_cplusplus' function:false from:handle) notNil ifTrue:[^ true].
6
0cd4e7480440 *** empty log message ***
claus
parents: 3
diff changeset
  2013
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2014
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2015
    "Modified: 25.4.1996 / 09:48:19 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2016
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2017
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2018
isObjectiveCObject:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2019
    "return true, if the loaded object is an objective-C object module.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2020
     This is not yet implemented/supported"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2021
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2022
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2023
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2024
    "Modified: 25.4.1996 / 09:47:59 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2025
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2026
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2027
isSmalltalkObject:handle
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2028
    "return true, if the loaded object is a smalltalk object module"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2029
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2030
    "not yet implemented - stc_compiled_smalltalk is a static symbol,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2031
     not found in list - need nm-interface, or nlist-walker
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2032
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2033
    ^ true.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2034
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  2035
"/    (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
  2036
"/    (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
  2037
"/    ^ false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2038
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2039
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2040
listUndefinedSymbolsIn:handle
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2041
    "list undefined objects in a module on the transcript"
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2042
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2043
    |undefinedNames|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2044
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2045
    undefinedNames := self getListOfUndefinedSymbolsFrom:handle.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2046
    undefinedNames size > 0 ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2047
	Transcript showCR:'undefined:'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2048
	undefinedNames do:[:aName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2049
	    Transcript showCR:'    ' , aName
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2050
	]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2051
    ].
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2052
272
04bf9e0c89da showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 271
diff changeset
  2053
    "Modified: 18.5.1996 / 15:43:45 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2054
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2055
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2056
namesMatching:aPattern segment:segmentPattern in:aFileName
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2057
    "search for entries which match a pattern.
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2058
     This is obsolete & rubbish - it will vanish soon"
141
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
    |p l s addr segment name entry|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2061
766
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2062
    OperatingSystem isVMSlike ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2063
	"/ no nm command
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2064
	^ nil
766
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2065
    ].
d820cda8eee0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 760
diff changeset
  2066
    OperatingSystem isMSDOSlike ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2067
	"/ no nm command
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2068
	^ nil
609
dfae7c6eea05 vms changes
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
  2069
    ].
521
3470756b9490 changes for windows
Claus Gittinger <cg@exept.de>
parents: 516
diff changeset
  2070
    OperatingSystem getOSType = 'aix' ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2071
	"/ no useful nm info
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2072
	^ nil
749
86cf38f5a961 win32 change.
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  2073
    ].
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
    l := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2076
    p := PipeStream readingFrom:(self nm:aFileName).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2077
    p isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2078
	('ObjectFileLoader [info]: cannot read names from ' , aFileName) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2079
	^ nil
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2080
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2081
    [p atEnd] whileFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2082
	entry := p nextLine.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2083
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2084
	    entry infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2085
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2086
	entry notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2087
	    s := ReadStream on:entry.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2088
	    addr := s nextAlphaNumericWord.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2089
	    s skipSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2090
	    segment := s upToSeparator.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2091
	    s skipSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2092
	    name := s upToEnd withoutSeparators.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2093
	    (addr notNil and:[segment notNil and:[name notNil]]) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2094
		(aPattern match:name) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2095
		    (segmentPattern isNil or:[segmentPattern match:segment]) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2096
			l add:name.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2097
			Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2098
			    ('found name: ' , name) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2099
			]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2100
		    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2101
			Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2102
			    name infoPrint. ' segment mismatch ' infoPrint.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2103
			    segmentPattern infoPrint. ' ' infoPrint. segment infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2104
			]
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
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2107
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  2108
	]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2109
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2110
    p close.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2111
    ^ l
225
122d8ff18aff nicer message
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
  2112
749
86cf38f5a961 win32 change.
Claus Gittinger <cg@exept.de>
parents: 747
diff changeset
  2113
    "Modified: / 27.7.1998 / 20:10:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2114
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2115
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2116
releaseSymbolTable
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2117
    "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
  2118
     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
  2119
     On other architectures, this is not needed and therefore a noop."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2120
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2121
%{
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2122
#ifdef NEXT_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2123
    NXStream *errOut;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2124
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2125
    errOut = NXOpenFile(2, 2);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2126
    rld_unload_all(errOut, (long)0);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2127
    rld_load_basefile(errOut, "smalltalk");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2128
    NXClose(errOut);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2129
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2130
%}
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2131
! !
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2132
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2133
!ObjectFileLoader class methodsFor:'image save/restart'!
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2134
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2135
invalidateAndRememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2136
    "invalidate code refs into all dynamically loaded object files.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2137
     Required before writing a snapshot image."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2138
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2139
    LoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2140
	ActuallyLoadedObjects := LoadedObjects.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2141
	self rememberAllObjectFiles.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2142
	ActuallyLoadedObjects keys do:[:aFileName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2143
	    |handle|
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2144
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2145
	    handle := ActuallyLoadedObjects at:aFileName.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2146
	    handle isNil ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2147
		self error:'oops, no handle'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2148
	    ] ifFalse:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2149
		(handle isClassLibHandle or:[handle isMethodHandle]) ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2150
		    self invalidateModule:handle
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2151
		]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2152
	    ]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2153
	].
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2154
	LoadedObjects := nil.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2155
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2156
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2157
    "Created: 5.10.1995 / 15:48:56 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2158
    "Modified: 5.10.1995 / 16:48:51 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2159
    "Modified: 12.7.1996 / 17:13:45 / cg"
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
  2160
!
6
0cd4e7480440 *** empty log message ***
claus
parents: 3
diff changeset
  2161
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2162
reloadAllRememberedObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2163
    "reload all object modules as were loaded when the image was saved.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2164
     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
  2165
406
6a4f1e3800af use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 405
diff changeset
  2166
    |oldDummyMethod who m newHandle 
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2167
     savedOldClasses savedByteCodeMethods savedMethods
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2168
     functions newFunction
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  2169
     saveOldMethodsPerClass anyModulesToInitialize|
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2170
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2171
    PreviouslyLoadedObjects notNil ifTrue:[
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2172
        anyModulesToInitialize := false.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2173
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2174
        PreviouslyLoadedObjects do:[:entry |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2175
            |fileName handle cls sel|
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2176
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2177
            fileName := entry key.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2178
            handle := entry value.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2179
            handle moduleID:nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2180
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2181
            handle isClassLibHandle ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2182
                ('ObjectFileLoader [info]: reloading classes in ' , fileName , ' ...') infoPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2183
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2184
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2185
                "/ remember all byteCode methods (as added in the session)
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2186
                "/                
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2187
                savedByteCodeMethods := Dictionary new.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2188
                savedOldClasses := IdentitySet new.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2189
                saveOldMethodsPerClass := Dictionary new.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2190
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2191
                handle classes do:[:aClass |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2192
                    |clsName mthdDict|
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2193
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2194
                    (aClass notNil and:[aClass ~~ 0]) ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2195
                        clsName := aClass name.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2196
                        mthdDict := aClass methodDictionary.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2197
                        saveOldMethodsPerClass at:clsName put:mthdDict copy.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2198
                        savedMethods := IdentityDictionary new.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2199
                        savedOldClasses add:aClass.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2200
                        mthdDict keysAndValuesDo:[:sel :m |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2201
                            m byteCode notNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2202
                                "/ an interpreted method - must be preserved
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2203
                                savedMethods at:sel put:m
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2204
                            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2205
                        ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2206
                        savedMethods notEmpty ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2207
                            savedByteCodeMethods at:clsName put:savedMethods
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2208
                        ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2209
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2210
                ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2211
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2212
                "/ load the class binary
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2213
                "/                
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2214
                handle := self loadObjectFile:fileName invokeInitializeMethods:false.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2215
                handle notNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2216
                    anyModulesToInitialize := true
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2217
                ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2218
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2219
                "/ after reloading of the objectFile,
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2220
                "/ some of the changes made in the previous life have to be
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2221
                "/ redone here - otherwise, we will be left with the
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2222
                "/ state contained in the loaded objectModule - instead of
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2223
                "/ what we had when saving the image ...
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2224
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2225
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2226
                "/ reinstall the byteCode methods
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2227
                "/                
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2228
                savedByteCodeMethods keysAndValuesDo:[:nm :savedMethods |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2229
                    |cls|
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2230
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2231
                    cls := Smalltalk classNamed:nm.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2232
                    savedMethods keysAndValuesDo:[:sel :m |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2233
                        cls primAddSelector:sel withMethod:m. 
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2234
"/ ('preserved ' , cls name , '>>' , sel) printCR.
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2235
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2236
                ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2237
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2238
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2239
                "/ re-remove removed methods
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2240
                "/ and re-change method categories
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2241
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2242
                savedOldClasses do:[:oldClass |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2243
                    |newClass oldMethods newMethodDict oldMthd newMthd 
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2244
                     oldCat oldClassVarString oldClassCategory|
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2245
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2246
                    newClass := Smalltalk classNamed:(oldClass name).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2247
                    newClass notNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2248
                        oldClassVarString := oldClass classVariableString.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2249
                        newClass classVariableString ~= oldClassVarString ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2250
                            "/ there is no need to recreate the variable
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2251
                            "/ (its in the smalltalk dictionary)
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2252
                            newClass setClassVariableString:oldClassVarString
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2253
                        ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2254
                        newClass isMeta ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2255
                            oldClassCategory := oldClass category.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2256
                            newClass category ~= oldClassCategory ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2257
                                newClass category:oldClassCategory
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2258
                            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2259
                        ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2260
                        oldMethods := saveOldMethodsPerClass at:oldClass name.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2261
                        newMethodDict := newClass methodDictionary.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2262
                        newMethodDict keys copy do:[:newSelector |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2263
                            (oldMethods includesKey:newSelector) ifFalse:[
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2264
"/                                ('ObjectFileLoader [info]: remove method #' , newSelector , ' from reloaded ' , oldClass name , '.') infoPrintCR.
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2265
                                newMethodDict removeKey:newSelector
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2266
                            ] ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2267
                                oldMthd := oldMethods at:newSelector.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2268
                                newMthd := newMethodDict at:newSelector.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2269
                                (oldCat := oldMthd category) ~= newMthd category ifTrue:[
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2270
"/                                    ('ObjectFileLoader [info]: change category of method #' , newSelector , ' in ' , oldClass name , '.') infoPrintCR.
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2271
                                    newMthd category:oldCat
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2272
                                ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2273
                            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2274
                        ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2275
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2276
                ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2277
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2278
                "/
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2279
                "/ validate old-classes vs. new classes.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2280
                "/ and if things look ok, get rid of old stuff
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2281
                "/ and make instances become instances of the new class
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2282
                "/
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2283
"/                ('ObjectFileLoader [info]: migrating classes ...') infoPrintCR.
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2284
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2285
                savedOldClasses do:[:oldClass |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2286
                    |newClass oldCat oldCVars|
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2287
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2288
                    newClass := Smalltalk classNamed:(oldClass name).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2289
                    newClass == oldClass ifTrue:[
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2290
"/                        ('ObjectFileLoader [info]: class ' , oldClass name , ' reloaded.') infoPrintCR.
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2291
                    ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2292
                        (newClass isNil or:[newClass == oldClass]) ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2293
                            ('ObjectFileLoader [warning]: reload of ' , oldClass name , ' seemed to fail.') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2294
                        ] ifFalse:[
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2295
"/'oldSize: ' print. oldClass instSize print. ' (' print. oldClass instSize class name print. ') ' print.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2296
"/'newSize: ' print. newClass instSize print. ' (' print. oldClass instSize class name print. ') ' printCR.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2297
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2298
                            oldClass instSize ~~ newClass instSize ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2299
                                ('ObjectFileLoader [warning]: ' , oldClass name , ' has changed its size.') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2300
                            ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2301
                                oldClass class instSize ~~ newClass class instSize ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2302
                                    ('ObjectFileLoader [warning]: ' , oldClass name , ' class has changed its size.') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2303
                                ] ifFalse:[
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2304
"/                                    ('ObjectFileLoader [info]: migrating ' , oldClass name) infoPrintCR.
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2305
                                    (oldCat := oldClass category) ~= newClass category ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2306
                                        newClass category:oldCat.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2307
                                    ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2308
                                    (oldCVars := oldClass classVariableString) ~= newClass classVariableString ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2309
                                        newClass setClassVariableString:oldCVars
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2310
                                    ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2311
                                    "/ copy over the oldClasses class-instVars
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2312
                                    (Class instSize + 1) to:(oldClass class instSize) do:[:idx |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2313
                                        newClass instVarAt:idx put:(oldClass instVarAt:idx)
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2314
                                    ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2315
                                    oldClass becomeSameAs:newClass
638
f0ae0eb10226 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
  2316
"/                                    oldClass become:newClass
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2317
                                ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2318
                            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2319
                        ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2320
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2321
                ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2322
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2323
            ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2324
                handle isMethodHandle ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2325
                    oldDummyMethod := handle method.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2326
                    (oldDummyMethod isKindOf:Method) ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2327
                        ('ObjectFileLoader [info]: ignore obsolete (already collected) method in ' , fileName) infoPrintCR
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2328
                    ] ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2329
                        ('ObjectFileLoader [info]: reloading method in ' , fileName , ' ...') infoPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2330
                        who := oldDummyMethod who.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2331
                        newHandle := self loadMethodObjectFile:fileName.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2332
                        newHandle isNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2333
                            ('ObjectFileLoader [warning]: failed to reload method in ' , fileName , ' ...') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2334
                            handle moduleID:nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2335
                        ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2336
                            m := newHandle method.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2337
                            oldDummyMethod sourceFilename notNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2338
                                m sourceFilename:(oldDummyMethod sourceFilename)
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2339
                                  position:(oldDummyMethod sourcePosition).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2340
                            ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2341
                                m source:(oldDummyMethod source).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2342
                            ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2343
                            m package:(oldDummyMethod package).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2344
                            who notNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2345
                                cls := who methodClass.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2346
                                sel := who methodSelector.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2347
                                m == (cls compiledMethodAt:sel) ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2348
                                    'ObjectFileLoader [warning]: oops - loaded method installed wrong' errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2349
                                ] ifTrue:[
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2350
"/                                  cls changed:#methodDictionary with:(Array with:sel with:oldDummyMethod).
1024
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2351
                                ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2352
                            ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2353
                        ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2354
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2355
                ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2356
                    handle isFunctionObjectHandle ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2357
                        functions := handle functions.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2358
                        functions isEmpty ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2359
                            ('ObjectFileLoader [info]: ignore obsolete (unreferenced) functions in ' , fileName) infoPrintCR
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2360
                        ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2361
                            newHandle := self loadDynamicObject:fileName.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2362
                            newHandle isNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2363
                                ('ObjectFileLoader [warning]: failed to reload ' , fileName , ' ...') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2364
                                handle moduleID:nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2365
                            ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2366
                                ('ObjectFileLoader [info]: reloading ' , fileName , ' ...') infoPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2367
                                functions do:[:oldFunction |
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2368
                                    newFunction := newHandle getFunction:(oldFunction name).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2369
                                    newFunction isNil ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2370
                                        ('ObjectFileLoader [info]: function: ''' , oldFunction name , ''' no longer present.') errorPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2371
                                        oldFunction code:nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2372
                                        oldFunction setName:oldFunction name moduleHandle:nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2373
                                    ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2374
                                        oldFunction code:(newFunction code).
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2375
                                        oldFunction setName:oldFunction name moduleHandle:newHandle.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2376
                                        ('ObjectFileLoader [info]: rebound function: ''' , oldFunction name , '''.') infoPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2377
                                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2378
                                ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2379
                                handle becomeSameAs:newHandle.      "/ the old handle is now void
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2380
                            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2381
                        ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2382
                    ] ifFalse:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2383
                        ('ObjectFileLoader [info]: ignored invalid (obsolete) objectFile handle: ' , handle printString) infoPrintCR.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2384
                    ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2385
                ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2386
            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2387
        ].
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2388
        PreviouslyLoadedObjects := nil.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2389
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2390
        "/ now, as we hopefully have all loaded,
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2391
        "/ send #reinitializeAfterLoad to each of them
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2392
        anyModulesToInitialize ifTrue:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2393
            AbortSignal catch:[
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2394
                self moduleInit:4 forceOld:false interruptable:true.
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2395
            ]
10980e29792c do not loose classInstVars when reloading shared libs
tm
parents: 1019
diff changeset
  2396
        ]
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2397
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2398
716
3c0668dceb1e dont try to set a metaclasses category when reloading obj-modules.
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
  2399
    "Modified: / 16.5.1998 / 14:23:12 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2400
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2401
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2402
rememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2403
    "remember all loaded objectModules in the
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2404
     PreviouslyLoadedObjects classVariable. 
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2405
     Called when an image is restarted to reload all modules which
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2406
     were loaded in the previous life"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2407
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2408
    LoadedObjects notNil ifTrue:[
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2409
	PreviouslyLoadedObjects := OrderedCollection new.
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2410
	LoadedObjects keysAndValuesDo:[:name :handle |
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2411
	    handle isForCollectedObject ifTrue:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2412
		('ObjectFileLoader [info]: ignore object for already collected objects in ' , name) infoPrintCR
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2413
	    ] ifFalse:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2414
		PreviouslyLoadedObjects add:(name -> handle)
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2415
	    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2416
	].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2417
	PreviouslyLoadedObjects sort:[:a :b | 
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2418
		|h1 h2|
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2419
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2420
		h1 := a value moduleID.
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2421
		h2 := b value moduleID.
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2422
		h1 isNil 
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2423
		    ifTrue:[true]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2424
		    ifFalse:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2425
			h2 isNil
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2426
			    ifTrue:[false]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2427
			    ifFalse:[
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2428
				h1 < h2 
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2429
			    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2430
		    ]
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2431
	].
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2432
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2433
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2434
    "Created: 5.12.1995 / 20:51:07 / cg"
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  2435
    "Modified: 10.1.1997 / 15:06:25 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2436
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2437
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2438
revalidateAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2439
    "revalidate code refs into all dynamically loaded object files.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2440
     Required after writing a snapshot image."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2441
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2442
    ActuallyLoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2443
	ActuallyLoadedObjects keys do:[:aFileName |
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2444
	    |handle|
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2445
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2446
	    handle := ActuallyLoadedObjects at:aFileName.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2447
	    handle isNil ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2448
		self error:'oops, no handle'.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2449
	    ] ifFalse:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2450
		(handle isClassLibHandle or:[handle isMethodHandle]) ifTrue:[
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2451
		    self revalidateModule:handle
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2452
		]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2453
	    ]
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2454
	].
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2455
	LoadedObjects := ActuallyLoadedObjects.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2456
	ActuallyLoadedObjects := PreviouslyLoadedObjects := nil.
28
a9d33ea0692d loads objces on iris5
claus
parents: 20
diff changeset
  2457
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  2458
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2459
    "Created: 5.10.1995 / 15:49:08 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2460
    "Modified: 5.10.1995 / 16:49:18 / claus"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2461
    "Modified: 12.7.1996 / 17:14:48 / cg"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2462
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2463
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2464
unloadAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2465
    "unload all dynamically loaded object files from the image.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2466
     see DANGER ALERT in ObjectFileLoader>>unloadObjectFile:"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2467
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2468
    LoadedObjects notNil ifTrue:[
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2469
	LoadedObjects keys copy do:[:aFileName |
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2470
	    self unloadObjectFile:aFileName
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2471
	]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2472
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2473
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2474
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2475
     ObjectFileLoader unloadAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2476
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2477
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2478
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2479
unloadAndRememberAllObjectFiles
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2480
    "remember all modules and unload them"
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2481
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2482
    LoadedObjects notNil ifTrue:[
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2483
	self rememberAllObjectFiles.
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  2484
	self unloadAllObjectFiles
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2485
    ]
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2486
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  2487
    "Modified: 25.4.1996 / 09:46:27 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2488
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2489
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  2490
!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
  2491
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2492
createLoadableObjectFor:baseFileName
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2493
    "given an oFile, arrange for it to be loadable.
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2494
     On ELF systems, this means that it has to be linked with the
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2495
     -shared option into a .so file; 
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2496
     DLD based loaders (linux a.out) can directly load a .o file;
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2497
     Other systems may require more ..."
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  2498
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2499
    |osType oFileName soFileName expFileName librunExpFileName
780
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2500
     needSharedObject ld ldArg expFile ok outfile output|
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2501
750
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2502
    osType := OperatingSystem getOSType.
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2503
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2504
    osType = 'win32' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2505
        self activityNotification:'create def file'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2506
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2507
        "/ create a .def file.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2508
        expFileName := '.\' , baseFileName , '.def'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2509
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2510
        expFile := expFileName asFilename writeStream.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2511
        expFile notNil ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2512
            OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2513
                expFile nextPutLine:'LIBRARY ' , baseFileName.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2514
                expFile nextPutLine:'SEGMENTS'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2515
                expFile nextPutLine:'    INITCODE PRELOAD SHARED'.
780
294b6775c8ab show linker error messages (win32)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2516
"/                expFile nextPutLine:'    INITDATA READ WRITE'.
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2517
                expFile nextPutLine:'EXPORTS'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2518
                expFile nextPutLine:' __' , baseFileName , '_Init'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2519
            ] ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2520
                expFile nextPutLine:'LIBRARY ' , baseFileName.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2521
                expFile nextPutLine:'CODE EXECUTE READ SHARED'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2522
                expFile nextPutLine:'DATA READ WRITE'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2523
                expFile nextPutLine:'SECTIONS'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2524
                expFile nextPutLine:' INITCODE READ EXECUTE SHARED'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2525
                expFile nextPutLine:' INITDATA READ WRITE'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2526
                expFile nextPutLine:' RODATA READ SHARED'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2527
                expFile nextPutLine:'EXPORTS'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2528
                expFile nextPutLine:' _' , baseFileName , '_Init'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2529
                expFile nextPutLine:'IMPORTS'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2530
            ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2531
            expFile close.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2532
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2533
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2534
        self activityNotification:'generating shared object'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2535
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2536
        LinkArgs isNil ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2537
            ld := LinkCommand , ' ' , baseFileName , '.obj'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2538
            ld := ld
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2539
               , ' /NOPACK /NOLOGO /DEBUG /MACHINE:I386 /DLL'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2540
               , ' /OUT:' , baseFileName , '.dll '
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2541
               , ' /DEF:' , baseFileName , '.def'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2542
        ] ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2543
            OperatingSystem getCCDefine ='__BORLANDC__' ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2544
                ld := LinkCommand , ' ' , (LinkArgs bindWith:baseFileName).
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2545
                ld := ld , ' c0d32.obj ' , baseFileName , '.obj '.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2546
                ld := ld , ',' , baseFileName , '.dll,,..\libbc\librun.lib '.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2547
                ld := ld , (SearchedLibraries asStringCollection asStringWith: $ ).
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2548
                ld := ld , ' ..\libbc\cs32i.lib,,'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2549
            ] ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2550
                LastError := 'currently only support borlandC'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2551
                self halt:'currently only support borlandC'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2552
                ^ nil
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2553
            ]
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2554
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2555
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2556
        outfile := (baseFileName , '.out').
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2557
        OperatingSystem isMSWINDOWSNTlike ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2558
            ok := OperatingSystem executeCommand:ld
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2559
        ] ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2560
            ok := OperatingSystem executeCommand:(ld , ' >' , outfile).
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2561
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2562
            ok ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2563
                output := (baseFileName , '.out') asFilename contents asString.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2564
                Transcript showCR:output; endEntry.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2565
            ]
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2566
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2567
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2568
        (baseFileName , '.out') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2569
        (baseFileName , '.tds') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2570
        (baseFileName , '.ilc') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2571
        (baseFileName , '.ild') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2572
        (baseFileName , '.ilf') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2573
        (baseFileName , '.ils') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2574
        (baseFileName , '.lib') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2575
        (baseFileName , '.map') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2576
        (baseFileName , '.def') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2577
        (baseFileName , '.obj') asFilename delete.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2578
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2579
        ok ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2580
            "/ self halt.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2581
            LastError := output.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2582
            ^ nil
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2583
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2584
        oFileName := (Filename currentDirectory construct:(baseFileName , self sharedLibraryExtension)) name.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2585
        ^ oFileName
750
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2586
    ].
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2587
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2588
    "/ UNIX systems
00bfa36237fb changes for WIN32 - create a .DLL from a .OBJ using LINK
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
  2589
324
747e77ce9e57 Fix typo.
Stefan Vogel <sv@exept.de>
parents: 322
diff changeset
  2590
    ld := 'ld'.
188
fef1879d2fcf linux-a.out fixes
ca
parents: 183
diff changeset
  2591
    needSharedObject := false.
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2592
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2593
    osType = 'irix' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2594
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2595
         link it to a shared object with 'ld -shared'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2596
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2597
        needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2598
        ldArg := '-shared'.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2599
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2600
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2601
    osType = 'sys5_4' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2602
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2603
         link it to a shared object with 'ld -G'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2604
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2605
        needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2606
        ldArg := '-G'.
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2607
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2608
698
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2609
    osType = 'osf' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2610
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2611
         link it to a shared object with 'ld -shared'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2612
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2613
        needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2614
        ldArg := '-shared'.
698
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2615
    ].
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2616
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2617
    osType = 'linux' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2618
        ObjectFileLoader loadableBinaryObjectFormat == #elf ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2619
            "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2620
             link it to a shared object with 'ld -shared'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2621
            "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2622
            needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2623
            ldArg := '-shared'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2624
        ]
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2625
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2626
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2627
    osType = 'solaris' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2628
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2629
         link it to a shared object with 'ld -G -B dynamic'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2630
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2631
        needSharedObject := true.
841
45f929ae2ca0 use 'ld -Bdynamic' instead of 'ld -B dynamic'
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  2632
"/        ldArg := '-G -B dynamic'.
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2633
        ldArg := '-G -Bdynamic'.
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2634
    ].
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2635
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2636
    osType = 'hpux' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2637
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2638
         link it to a shared object with 'ld -b -B immediate'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2639
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2640
        needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2641
        ldArg := '-b -B immediate'.
722
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2642
    ].
add7cabbd2bb fixed shared-library loading for solaris.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
  2643
513
445a382e8c65 Ultrix support.
Stefan Vogel <sv@exept.de>
parents: 504
diff changeset
  2644
    osType = 'aix' ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2645
        self activityNotification:'create export file'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2646
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2647
        "/ create an exports file.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2648
        expFileName := './' , baseFileName , '.exp'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2649
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2650
        expFile := expFileName asFilename writeStream.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2651
        expFile notNil ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2652
            expFile nextPutAll:'#!! ./' , baseFileName , (self sharedLibraryExtension).
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2653
            expFile cr.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2654
            expFile nextPutAll:'_' , baseFileName , '_Init'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2655
            expFile close.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2656
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2657
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2658
        self activityNotification:'generating shared object'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2659
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2660
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2661
         link it to a shared object with 'cc -bI:...librun.exp -bE -bMSRE'
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2662
        "
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2663
        needSharedObject := true.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2664
        ld := 'cc'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2665
        librunExpFileName := Smalltalk getSystemFileName:'lib/librun_aix.exp'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2666
        librunExpFileName isNil ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2667
            LastError := 'missing exports file: ''lib/librun_aix.exp'' - cannot link'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2668
            ^ nil
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2669
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2670
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2671
        ldArg := '-bI:' , librunExpFileName ,
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2672
                ' -bE:' , baseFileName , '.exp' ,
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2673
                ' -bM:SRE -e _' , baseFileName , '_Init'.
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2674
    ].
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  2675
741
06128261cbf8 more hpux stuff
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  2676
    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
  2677
    needSharedObject ifTrue:[
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2678
        self activityNotification:'generating shared object'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2679
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2680
        soFileName := './' , baseFileName , (self sharedLibraryExtension). 
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2681
        OperatingSystem removeFile:soFileName.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2682
        ld := ld , ' ' , ldArg , ' ', 
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2683
                 (SearchedLibraries asStringCollection asStringWith: $ ), 
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2684
                 ' -o ' , soFileName , ' ' , oFileName.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2685
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2686
        Verbose ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2687
            'linking with:' infoPrintCR.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2688
            '   ' infoPrint. ld infoPrintCR.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2689
        ].         
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2690
        ok := OperatingSystem 
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2691
                executeCommand:(ld , ' >errorOutput 2>&1').
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2692
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2693
        ok ifFalse:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2694
            output := 'errorOutput' asFilename contents asString.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2695
            Transcript showCR:'linker error message:'.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2696
            Transcript showCR:output; endEntry.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2697
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2698
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2699
        OperatingSystem removeFile:oFileName.
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2700
        expFileName notNil ifTrue:[
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2701
            OperatingSystem removeFile:expFileName
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2702
        ].
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2703
        ^ soFileName. 
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2704
    ].
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2705
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2706
    "
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2707
     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
  2708
    "
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2709
    ^ oFileName
698
fc359ff36687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
  2710
1014
5a62d96fd129 new cs32i.lib
Claus Gittinger <cg@exept.de>
parents: 1010
diff changeset
  2711
    "Modified: / 23.12.1999 / 21:10:57 / cg"
182
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2712
! !
b8316f207380 added query for fileFormat; moved link-code from BCompiler to ObjFLoader
Claus Gittinger <cg@exept.de>
parents: 180
diff changeset
  2713
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2714
!ObjectFileLoader class methodsFor:'lowlevel object loading'!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2715
633
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2716
initializeLoader
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2717
    "initialize dynamic loader if required"
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2718
 
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2719
    |stxName stxPathName|
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2720
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2721
    stxPathName := OperatingSystem pathOfSTXExecutable.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2722
%{
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2723
#ifdef GNU_DL
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2724
  {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2725
    static alreadyInitialized = 0;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2726
    extern dld_ignore_redefinitions;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2727
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2728
    if (! alreadyInitialized) {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2729
	alreadyInitialized = 1;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2730
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2731
	if (@global(Verbose) == true) {
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2732
	    printf ("dld_init(%s)\n", __stringVal(stxPathName));
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2733
	}
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2734
	/*
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2735
	 * dld requires the running executables name,
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2736
	 * to resolve symbols.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2737
	 */
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2738
	(void) dld_init (__stringVal(stxPathName));
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2739
	dld_ignore_redefinitions = 1;
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2740
    }
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2741
  }
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2742
#endif
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2743
%}.
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2744
!
26d6408e9d25 libraryPath handling
Claus Gittinger <cg@exept.de>
parents: 618
diff changeset
  2745
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2746
loadDynamicObject:pathName
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2747
    "load an object-file (load/map into my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2748
     Return a non-nil handle if ok, nil otherwise.
472
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2749
     No bindings or automatic initializations are done 
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2750
     - only a pure (low-level) load is performed.
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2751
     For class-files or C-objects to be loaded with this method,
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2752
     it is your responsibility to fetch any init-functions and
bc81318662b9 comment
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
  2753
     call them as appropriate.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2754
     This function is not supported on all architectures.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2755
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2756
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2757
    |handle buffer|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2758
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2759
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2760
	('loadDynamic: ' , pathName , ' ...') infoPrintCR
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2761
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2762
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2763
    "/ already loaded ?
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2764
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2765
    LoadedObjects notNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2766
	handle := LoadedObjects at:pathName ifAbsent:nil.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2767
	handle notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2768
	    Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2769
		('... ' , pathName , ' already loaded.') infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2770
	    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2771
	    ^ handle
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2772
	].
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2773
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2774
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2775
    Verbose ifTrue:[
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2776
	('initializeLoader...') infoPrintCR
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2777
    ].
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
  2778
    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
  2779
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2780
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2781
    "/ the 1st two entries are system dependent;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2782
    "/ entry 3 is the pathName
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2783
    "/ entry 4 is a unique ID
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2784
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2785
    buffer := Array new:4.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2786
    buffer at:3 put:pathName.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2787
    buffer at:4 put:NextHandleID. NextHandleID := NextHandleID + 1.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2788
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2789
    Verbose ifTrue:[
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2790
	('primLoadDynamicObject...') infoPrintCR
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2791
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2792
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2793
    buffer := self primLoadDynamicObject:pathName into:buffer.
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2794
    Verbose ifTrue:[
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2795
	('done') infoPrintCR
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2796
    ].
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2797
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2798
    buffer isNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2799
	LastError == #notImplemented ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2800
	    'ObjectFileLoader [warning]: no dynamic load facility present.' infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2801
	] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2802
	    LastError == #linkError ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2803
		LinkErrorMessage notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2804
		    ('ObjectFileLoader [warning]: load error:' , LinkErrorMessage) infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2805
		] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2806
		    ('ObjectFileLoader [warning]: load error') infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2807
		].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2808
	    ].    
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2809
	    ^ nil
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2810
	]
470
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
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2813
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2814
     remember loaded object for later unloading
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2815
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2816
    handle := ObjectFileHandle new.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2817
    handle sysHandle1:(buffer at:1).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2818
    handle sysHandle2:(buffer at:2).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2819
    handle pathName:(buffer at:3).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2820
    handle moduleID:(buffer at:4).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2821
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2822
    LoadedObjects isNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2823
	LoadedObjects := Dictionary new.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2824
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2825
    LoadedObjects at:pathName put:handle.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2826
    Smalltalk flushCachedClasses.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2827
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2828
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2829
	('loadDynamic ok; handle is: ' , handle printString) infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2830
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2831
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2832
    ^ handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2833
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2834
    "sys5.4:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2835
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2836
     handle := ObjectFileLoader loadDynamicObject:'../stc/mod1.so'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2837
     ObjectFileLoader getFunction:'module1' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2838
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2839
    "next:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2840
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2841
     handle := ObjectFileLoader loadDynamicObject:'../goodies/Path/AbstrPath.o'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2842
     ObjectFileLoader getFunction:'__AbstractPath_Init' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2843
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2844
    "GLD:
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2845
     |handle|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2846
     handle := ObjectFileLoader loadDynamicObject:'../clients/Tetris/Tetris.o'.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2847
     ObjectFileLoader getFunction:'__TetrisBlock_Init' from:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2848
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2849
525
3af9e82358b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 524
diff changeset
  2850
    "Modified: 16.5.1997 / 12:56:33 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2851
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2852
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2853
loadModulesFromListOfUndefined:list
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2854
    "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
  2855
     return a list of handles of loaded objects
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
    |inits classNames|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2858
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2859
    inits := list select:[:symbol | symbol notNil and:[symbol endsWith:'_Init']].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2860
    inits notNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2861
	classNames := inits collect:[:symbol |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2862
	    (symbol startsWith:'___') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2863
		symbol copyFrom:4 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2864
	    ] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2865
		(symbol startsWith:'__') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2866
		    symbol copyFrom:3 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2867
		] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2868
		    (symbol startsWith:'_') ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2869
			symbol copyFrom:2 to:(symbol size - 5)
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2870
		    ] ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2871
			symbol
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2872
		    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2873
		]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2874
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2875
	].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2876
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2877
	 autoload those classes
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2878
	"
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2879
	classNames do:[:aClassName |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2880
	    |cls|
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2881
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2882
	    (cls := Smalltalk classNamed:aClassName) notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2883
		'ObjectFileLoader [info]: autoloading ' infoPrint. aClassName infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2884
		cls autoload
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2885
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  2886
	]
470
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
    ^ nil
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2889
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  2890
    "Modified: 10.1.1997 / 17:58:23 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2891
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2892
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2893
primLoadDynamicObject:pathName into:anInfoBuffer
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2894
    "load an object-file (map into my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2895
     Return an OS-handle (whatever that is) - where some space
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2896
     (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
  2897
     The first two entries are used in a machine dependent way,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2898
     and callers may not depend on what is found there 
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2899
     (instead, only pass around handles transparently).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2900
     This function is not supported on all architectures."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2901
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2902
%{  /* CALLSUNLIMITEDSTACK(noWIN32) */
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2903
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2904
    if (! __isArray(anInfoBuffer)
646
02b5ea95f888 eliminated some single-underscore macro refs (stringSize, arraySize ...)
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
  2905
     || (__arraySize(anInfoBuffer) < 3)) {
858
2697c8300306 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  2906
	RETURN(nil);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2907
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2908
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2909
#ifdef GNU_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2910
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2911
    if (__isString(pathName)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2912
	if (dld_link(__stringVal(pathName))) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  2913
	    if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2914
		printf ("link file %s failed\n", __stringVal(pathName));
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  2915
	    }
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  2916
	    if (@global(ErrorPrinting) == true) {
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  2917
		dld_perror("ObjectFileLoader - DLD error cant link");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2918
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  2919
	    @global(LastError) = @symbol(linkError);
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  2920
	    @global(LinkErrorMessage) = __MKSTRING("DLD error");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2921
	    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2922
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2923
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = pathName;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2924
	__STORE(anInfoBuffer, pathName);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2925
	RETURN ( anInfoBuffer );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2926
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2927
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2928
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2929
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2930
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2931
#ifdef WIN_DL
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
    HINSTANCE handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2934
    int err;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2935
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2936
    if (__isString(pathName)) {
760
c8dd27876bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2937
	if (@global(Verbose) == true) {
850
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2938
	    fprintf(stderr, "ObjectFileLoader [info]: loading dll: %s...\n", __stringVal(pathName));
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2939
	    fflush(stderr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2940
	}
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2941
	handle = LoadLibrary(__stringVal(pathName));
760
c8dd27876bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2942
	if (@global(Verbose) == true) {
850
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2943
	    fprintf(stderr, "ObjectFileLoader [info]: handle: %x\n", handle);
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2944
	    fflush(stderr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2945
	}
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  2946
	if (handle == NULL) {
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2947
	    char *msg;
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2948
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2949
	    err = GetLastError();
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  2950
	    if ((@global(ErrorPrinting) == true) 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  2951
	     || (@global(Verbose) == true)) {
850
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2952
		fprintf (stderr, 
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  2953
				 "ObjectFileLoader [warning]: LoadLibrary %s failed; error: %x\n", 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  2954
				 __stringVal(pathName), err);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2955
	    }
779
9301641eafbc set lastErrorNumber if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2956
	    @global(LastError) = @symbol(loadError);;
9301641eafbc set lastErrorNumber if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2957
	    @global(LastErrorNumber) = __MKINT(__WIN32_ERR(err));
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2958
	    switch (err) {
850
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  2959
		case ERROR_BAD_FORMAT:
846
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2960
		    msg = "LoadLibrary error - bad format";
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2961
		default:
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2962
		    msg = "LoadLibrary error";
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2963
		    break;
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2964
	    }
8d1a4228c0e3 win32 error message if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 845
diff changeset
  2965
	    @global(LinkErrorMessage) = __MKSTRING(msg);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2966
	    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2967
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2968
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2969
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2970
	RETURN ( anInfoBuffer );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2971
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2972
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2973
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2974
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  2975
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2976
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2977
  {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2978
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2979
    int err;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2980
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2981
    if (__isString(pathName)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2982
	if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2983
	    fprintf(stderr, "ObjectFileLoader [info]: loading : %s...\n", __stringVal(pathName));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2984
	    fflush(stderr);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2985
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2986
	handle = load_add_on(__stringVal(pathName));
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2987
	if (@global(Verbose) == true) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2988
	    fprintf(stderr, "ObjectFileLoader [info]: handle: %x\n", handle);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2989
	    fflush(stderr);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2990
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2991
	if (handle == NULL) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2992
	    char *msg;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2993
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2994
	    @global(LastError) = @symbol(linkError);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2995
	    @global(LinkErrorMessage) = __MKSTRING("unknown error");
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2996
	    RETURN ( nil );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2997
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2998
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  2999
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3000
	RETURN ( anInfoBuffer );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3001
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3002
    RETURN ( nil );
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3003
  }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3004
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3005
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3006
#ifdef DL1_6
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3007
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3008
    extern char *__myName__;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3009
    char *ldname;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3010
    OBJ tmpName;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3011
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3012
    if (__isString(pathName)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3013
	if ( dl_loadmod_only(__myName__, __stringVal(pathName), &ldname) == 0 ) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3014
	    if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3015
		printf ("link file %s failed\n", __stringVal(pathName));
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3016
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3017
	    @global(LinkErrorMessage) = __MKSTRING("dl_load error");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3018
	    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3019
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3020
	/*
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3021
	 * returns the name of the temporary ld-file
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3022
	 * use that as handle ...
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3023
	 */
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3024
	tmpName = __MKSTRING(ldname);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3025
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = tmpName;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3026
	__STORE(anInfoBuffer, tmpName);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3027
	RETURN ( anInfoBuffer );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3028
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3029
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3030
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3031
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3032
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3033
#ifdef AIX_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3034
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3035
    char *objName, *libPath;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3036
    int *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3037
    extern errno;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3038
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3039
    if (__isString(pathName)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3040
	objName = __stringVal(pathName);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3041
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3042
	if (__isString(@global(LibPath))) {
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3043
	    libPath = __stringVal(@global(LibPath));
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3044
	} else {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3045
	    libPath = (char *)0;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3046
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3047
	if ( (handle = (int *) load(objName, 0, libPath)) == 0 ) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3048
	    if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3049
		char *messages[64];
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3050
		int i;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3051
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3052
		fprintf (stderr, 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3053
			 "ObjectFileLoader [info]: load file %s failed errno=%d\n", 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3054
			 objName, errno);
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3055
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3056
		switch (errno) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3057
		    case ENOEXEC:
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3058
			fprintf(stderr, "   load messages:\n");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3059
			loadquery(L_GETMESSAGES, messages, sizeof(messages));
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3060
			for (i=0; messages[i]; i++) {
782
Claus Gittinger <cg@exept.de>
parents: 780
diff changeset
  3061
			    fprintf(stderr, "      %s\n", messages[i]);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3062
			}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3063
			break;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3064
		}
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3065
	    } else {
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3066
		if (@global(ErrorPrinting) == true) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3067
		    fprintf (stderr, 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3068
			     "ObjectFileLoader [warning]: load file %s failed errno=%d\n", 
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3069
			     objName, errno);
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3070
		}
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3071
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3072
	    @global(LinkErrorMessage) = __MKSTRING("load error");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3073
	    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3074
	}
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3075
	if (@global(Verbose) == true) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3076
	    fprintf(stderr, "ObjectFIleLoader [info]: load %s handle = %x\n", objName, handle);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3077
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3078
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3079
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3080
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3081
	RETURN (anInfoBuffer);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3082
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3083
    RETURN ( nil );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3084
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3085
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3086
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3087
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3088
#ifdef SYSV4_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3089
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3090
    void *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3091
    char *nm;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3092
    char *errMsg;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3093
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3094
    if ((pathName == nil) || __isString(pathName)) {
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3095
	INT lowHandle, hiHandle;
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3096
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3097
	handle = (void *)dlopen(pathName == nil ? 0 : __stringVal(pathName), RTLD_NOW);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3098
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3099
	if (! handle) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3100
	    errMsg = (char *) dlerror();
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3101
	    if (@global(ErrorPrinting) == true) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3102
		fprintf(stderr, "ObjectFileLoader [warning]: dlopen %s error:\n", __stringVal(pathName));
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3103
		fprintf(stderr, "    <%s>\n", errMsg);
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3104
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3105
	    @global(LastError) = @symbol(linkError);
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3106
	    @global(LinkErrorMessage) = __MKSTRING(errMsg);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3107
	    RETURN (nil);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3108
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3109
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3110
	if (@global(Verbose) == true) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3111
	    fprintf(stderr, "ObjectFileLoader [info]: open %s handle = %x\n", __stringVal(pathName), handle);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3112
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3113
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3114
#ifdef alpha64
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3115
	lowHandle = (INT)handle & 0xFFFFFFFFL;
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3116
	hiHandle = ((INT)handle >> 32) & 0xFFFFFFFFL;
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3117
#else
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3118
	lowHandle = (INT)handle & 0xFFFF;
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3119
	hiHandle = ((INT)handle >> 16) & 0xFFFF;
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3120
#endif
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3121
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT(lowHandle);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3122
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT(hiHandle);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3123
	RETURN (anInfoBuffer);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3124
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3125
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3126
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3127
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3128
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3129
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3130
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3131
    void *handle;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3132
    char *nm;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3133
    char *errMsg;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3134
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3135
    if (__isString(pathName)) {
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3136
	handle = (void *)shl_load(__stringVal(pathName), 
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3137
				  BIND_IMMEDIATE, 0L /* address */);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3138
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3139
	if (! handle) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3140
	    if (@global(ErrorPrinting) == true) {
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3141
		fprintf(stderr, "shl_load %s error:\n", __stringVal(pathName));
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3142
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3143
	    @global(LastError) = @symbol(linkError);
524
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3144
	    switch (errno) {
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3145
		case ENOEXEC:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3146
		    errMsg = "not a shared library";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3147
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3148
		case ENOSYM:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3149
		    errMsg = "undefined symbols";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3150
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3151
		case ENOMEM:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3152
		    errMsg = "out of memory";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3153
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3154
		case ENOENT:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3155
		    errMsg = "non existing library";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3156
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3157
		case EACCES:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3158
		    errMsg = "permission denied";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3159
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3160
		default:
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3161
		    errMsg = "unspecified error";
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3162
		    break;
c92ef4983038 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 523
diff changeset
  3163
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3164
	    @global(LinkErrorMessage) = __MKSTRING(errMsg);
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3165
	    RETURN (nil);
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3166
	}
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3167
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3168
	if (@global(Verbose) == true) {
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3169
	    printf("open %s handle = %x\n", __stringVal(pathName), handle);
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3170
	}
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3171
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3172
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3173
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3174
	RETURN (anInfoBuffer);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3175
    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3176
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3177
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3178
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3179
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3180
#ifdef SUN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3181
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3182
    void *handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3183
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3184
    if ((pathName == nil) || __isString(pathName)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3185
	if (pathName == nil)
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3186
	    handle = dlopen((char *)0, 1);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3187
	else
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3188
	    handle = dlopen(__stringVal(pathName), 1);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3189
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3190
	if (! handle) {
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3191
	    if (@global(ErrorPrinting) == true) {
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3192
		fprintf(stderr, "dlopen %s error: <%s>\n", 
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3193
				__stringVal(pathName), dlerror());
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3194
	    }
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3195
	    @global(LastError) = @symbol(linkError);
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3196
	    @global(LinkErrorMessage) = __MKSTRING("dlopen error");
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3197
	    RETURN (nil);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3198
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3199
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3200
	if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3201
	    printf("open %s handle = %x\n", __stringVal(pathName), handle);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3202
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3203
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3204
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = __MKSMALLINT( (int)handle & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3205
	__ArrayInstPtr(anInfoBuffer)->a_element[1] = __MKSMALLINT( ((int)handle >> 16) & 0xFFFF );
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3206
	RETURN (anInfoBuffer);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3207
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3208
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3209
#endif
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
#ifdef NEXT_DL
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
    long result;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3214
    char *files[2];
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3215
    NXStream *errOut;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3216
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3217
    if (__isString(pathName)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3218
	files[0] = (char *) __stringVal(pathName);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3219
	files[1] = (char *) 0;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3220
	errOut = NXOpenFile(2, 2);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3221
	result = rld_load(errOut,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3222
			  (struct mach_header **)0,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3223
			  files,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3224
			  (char *)0);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3225
	NXClose(errOut);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3226
	if (! result) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3227
	    @global(LinkErrorMessage) = __MKSTRING("rld_load error");
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3228
	    @global(LastError) = @symbol(linkError);
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3229
	    if (@global(ErrorPrinting) == true) {
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3230
		fprintf(stderr, "rld_load %s failed\n", __stringVal(pathName));
515
cbc67d75d9ce make messages depend on global-ErrorPrinting
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
  3231
	    }
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3232
	    RETURN (nil);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3233
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3234
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3235
	if (@global(Verbose) == true)
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3236
	    printf("rld_load %s ok\n", __stringVal(pathName));
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
	__ArrayInstPtr(anInfoBuffer)->a_element[0] = pathName;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3239
	__STORE(anInfoBuffer, pathName);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3240
	RETURN ( anInfoBuffer );
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
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3243
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3244
%}.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3245
    LastError := #notImplemented.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3246
    ^ nil
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3247
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3248
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3249
primUnloadDynamicObject:aHandle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3250
    "unload an object-file (unmap from my address space).
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3251
     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
  3252
     still any code references (from blocks or methods) to this
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3253
     module. Calling it for still living classes will definitely
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3254
     lead to some fatal conditions to occur later."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3255
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3256
    |sysHandle1 sysHandle2|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3257
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3258
    sysHandle1 := aHandle sysHandle1.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3259
    sysHandle2 := aHandle sysHandle2.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3260
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3261
%{
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3262
#ifdef GNU_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3263
    if (__isString(sysHandle1)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3264
	if (dld_unlink_by_file(__stringVal(sysHandle1), 1)) {
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3265
	    if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3266
		printf ("unlink file %s failed\n", __stringVal(sysHandle1));
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3267
		dld_perror("cant unlink");
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3268
	    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3269
	    RETURN (false);
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
	RETURN (true);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3272
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3273
    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3274
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3275
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3276
#ifdef WIN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3277
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3278
    HINSTANCE handle;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3279
    int err;
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3280
    jmp_buf exitJmpBuf;
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3281
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3282
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3283
	val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3284
	handle = (HINSTANCE)(val);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3285
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3286
       if (setjmp(exitJmpBuf)) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3287
	   __setAtExitLongJmp(exitJmpBuf);
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3288
	    if (FreeLibrary(handle) != TRUE) {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3289
	       __setAtExitLongJmp(0);
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3290
		err = GetLastError();
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3291
		if (@global(Verbose) == true) {
850
316a2bfa5e82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 846
diff changeset
  3292
		    fprintf (stderr,
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3293
				     "ObjectFileLoader [warning]: FreeLibrary %s failed; error: %x\n",
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3294
				     __stringVal(sysHandle1), err);
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3295
		}
779
9301641eafbc set lastErrorNumber if LoadLibrary fails
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  3296
		@global(LastErrorNumber) = __WIN32_ERR(err);
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3297
		RETURN (false);
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3298
	    }
771
cd90f9bcefe3 cc & ld arsg for borland;
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
  3299
       } else {
778
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3300
	   __setAtExitLongJmp(0);
91628946d932 send messages to stderr
Claus Gittinger <cg@exept.de>
parents: 771
diff changeset
  3301
	   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
  3302
       }
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3303
	RETURN (true);
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
    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3306
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3307
906
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3308
#ifdef BEOS_DL
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3309
    int val;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3310
    void *handle;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3311
    int ok, err;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3312
    jmp_buf exitJmpBuf;
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3313
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3314
    if (__bothSmallInteger(sysHandle1, sysHandle2)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3315
	val = (_intVal(sysHandle2) << 16) + _intVal(sysHandle1);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3316
	handle = (HINSTANCE)(val);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3317
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3318
	if (setjmp(exitJmpBuf)) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3319
	    __setAtExitLongJmp(exitJmpBuf);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3320
	    ok = unload_add_on((image_id) handle);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3321
	    __setAtExitLongJmp(0);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3322
	    if (ok != 0) {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3323
		@global(LastErrorNumber) = __MKSMALLINT(ok);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3324
		RETURN (false);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3325
	    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3326
	} else {
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3327
	    __setAtExitLongJmp(0);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3328
	    fprintf(stderr, "ObjectFileLoader [warning]: FreeLibrary called exit() - ignored\n");
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3329
	}
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3330
	RETURN (true);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3331
    }
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3332
    RETURN (false);
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3333
#endif
Claus Gittinger <cg@exept.de>
parents: 881
diff changeset
  3334
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3335
#ifdef SYSV4_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3336
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3337
    void *h;
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3338
    INT val;
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3339
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3340
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3341
    if (__bothSmallInteger(low, hi)) {
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3342
#ifdef alpha64
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3343
	val = (__intVal(hi) << 32) + __intVal(low);
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3344
#else
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3345
	val = (_intVal(hi) << 16) + _intVal(low);
701
eed963977fee fixed loading for alpha64
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  3346
#endif
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3347
	h = (void *)(val);
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3348
	if (@global(Verbose) == true)
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3349
	    printf("close handle = %x\n", h);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3350
	if (dlclose(h) != 0) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3351
	    fprintf(stderr, "dlclose failed with:<%s>\n", dlerror());
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3352
	    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3353
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3354
	RETURN (true);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3355
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3356
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3357
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3358
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3359
#ifdef SUN_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3360
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3361
    void *h;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3362
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3363
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3364
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3365
    if (__bothSmallInteger(low, hi)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3366
	val = (_intVal(hi) << 16) + _intVal(low);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3367
	h = (void *)(val);
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3368
	if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3369
	    printf("close handle = %x\n", h);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3370
	}
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3371
	dlclose(h);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3372
	RETURN (true);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3373
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3374
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3375
#endif
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3376
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3377
#ifdef HPUX10_DL
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3378
  {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3379
    int *h;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3380
    int val;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3381
    OBJ low = sysHandle1, hi = sysHandle2;
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3382
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3383
    if (__bothSmallInteger(low, hi)) {
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3384
	val = (_intVal(hi) << 16) + _intVal(low);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3385
	h = (void *)(val);
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3386
	if (@global(Verbose) == true) {
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3387
	    printf("unload handle = %x\n", h);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3388
	}
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3389
	shl_unload(h);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3390
	RETURN (true);
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3391
    }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3392
  }
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3393
#endif
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3394
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3395
#ifdef AIX_DL
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3396
  {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3397
    int *h;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3398
    int val;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3399
    OBJ low = sysHandle1, hi = sysHandle2;
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3400
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3401
    if (__bothSmallInteger(low, hi)) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3402
	val = (_intVal(hi) << 16) + _intVal(low);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3403
	h = (int *)(val);
592
ac8f79d22665 Use @global.
Stefan Vogel <sv@exept.de>
parents: 591
diff changeset
  3404
	if (@global(Verbose) == true) {
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3405
	    printf("unload handle = %x\n", h);
523
0668c5b4fb94 hpux10 dynamic loading
Claus Gittinger <cg@exept.de>
parents: 521
diff changeset
  3406
	}
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3407
	if ( unload(h) != 0) {
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3408
	    fprintf(stderr, "unload failed\n");
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3409
	    RETURN (false);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3410
	}
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3411
	RETURN (true);
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3412
    }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3413
  }
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3414
#endif
529
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3415
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3416
#ifdef NEXT_DL
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3417
  {
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3418
    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
  3419
  }
039322479f26 NeXTStep cannot unload; send a warning to stderr
Claus Gittinger <cg@exept.de>
parents: 525
diff changeset
  3420
#endif
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3421
%}.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3422
    ^ false
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3423
!
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3424
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3425
unloadDynamicObject:handle
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3426
    "close an object-file (unmap from my address space)
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3427
     and remove the entry from the remembered object file set.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3428
     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
  3429
     still any code references (from blocks or methods) to this
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3430
     module. Calling it for still living classes will definitely
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3431
     lead to some fatal conditions to occur later."
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3432
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3433
    |key fileName functionName deInitAddr m|
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3434
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3435
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3436
	'unload module name=' infoPrint. handle pathName infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3437
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3438
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3439
    handle isUnknownHandle ifTrue:[
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3440
	Verbose ifTrue:[
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3441
	    'module type is not known - assume uninitialized classLib'
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3442
	].
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3443
	self unregisterModule:handle.
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3444
	handle makeClassLibHandle.
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3445
    ] ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3446
	handle isClassLibHandle ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3447
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3448
		'a classLib - deinit classes' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3449
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3450
	    self deinitializeClassesFromModule:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3451
	    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3452
		'unregister' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3453
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3454
	    self unregisterModule:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3455
	] ifFalse:[    
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3456
	    handle isMethodHandle ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3457
		Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3458
		    'a methodHandle - unregister' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3459
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3460
		self unregisterModule:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3461
	    ] ifFalse:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3462
		handle isFunctionObjectHandle ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3463
		    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3464
			'a functionObject - fixup functionRefs' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3465
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3466
		    handle functions do:[:f |
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3467
				    f notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3468
					f code:0
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3469
				    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3470
				].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3471
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3472
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3473
		"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3474
		"/ call its deInit function (if present)
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3475
		"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3476
		Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3477
		    'search for deInit function...' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3478
		].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3479
		fileName := handle pathName asFilename baseName.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3480
		functionName := self initFunctionBasenameForFile:fileName.
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3481
    
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3482
		deInitAddr := self findFunction:functionName suffix:'__deInit' in:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3483
		deInitAddr notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3484
		    Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3485
			'invoke deInit function...' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3486
		    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3487
		    self callInitFunctionAt:deInitAddr 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3488
			 specialInit:false 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3489
			 forceOld:true 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3490
			 interruptable:false
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3491
			 argument:0
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3492
			 identifyAs:handle
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3493
			 returnsObject:false.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3494
		]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3495
	    ]
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3496
	].
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3497
    ].
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3498
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3499
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3500
	'cleanup done - now unload...' infoPrintCR.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3501
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3502
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3503
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3504
    "/ now, really unload
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3505
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3506
    (self primUnloadDynamicObject:handle) ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3507
	^ self error:'unloadDynamic failed' mayProceed:true
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3508
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3509
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3510
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3511
	'unload done ...' infoPrintCR.
966
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3512
    ].
0da15d671aef proper unregistration, when a classLib fails to load
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3513
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3514
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3515
    "/ remove from loaded objects
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3516
    "/
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3517
    LoadedObjects notNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3518
	key := LoadedObjects keyAtEqualValue:handle.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3519
	key notNil ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3520
	    LoadedObjects removeKey:key
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3521
	]
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3522
    ].
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3523
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3524
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3525
     for individual methods, we keep the methodObject,
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3526
     but make it unexecutable. Its still visible in the browser.
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3527
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3528
    handle isMethodHandle ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3529
	((m := handle method) notNil 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3530
	and:[m ~~ 0]) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3531
	    m makeUnloaded.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3532
	]
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3533
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3534
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3535
    handle isClassLibHandle ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3536
	Smalltalk flushCachedClasses.
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3537
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3538
    handle isMethodHandle ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3539
	ObjectMemory flushCaches.
791
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3540
    ].
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3541
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3542
    handle moduleID:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3543
    handle sysHandle1:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3544
    handle sysHandle2:nil.
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3545
655e20eb35d7 flush moduleID and sysHandle when unloading a dynamic object.
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  3546
    "Modified: / 21.10.1998 / 21:31:48 / cg"
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3547
! !
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3548
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  3549
!ObjectFileLoader class methodsFor:'queries'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3550
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3551
canLoadObjectFiles
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  3552
    "return true, if dynamic loading is possible.
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3553
     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
  3554
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3555
    self primCanLoadObjectFiles ifTrue:[^true].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3556
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3557
    "/ 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
  3558
    "/ for some specific machine
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3559
    ^ false
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
  3560
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3561
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3562
     ObjectFileLoader canLoadObjectFiles
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3563
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3564
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3565
    "Modified: 8.1.1997 / 18:13:01 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3566
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3567
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3568
loadedObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3569
    "return a collection containing the names of all
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3570
     dynamically loaded objects."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3571
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3572
    LoadedObjects isNil ifTrue:[^ #()].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3573
    ^ LoadedObjects keys copy
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3574
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3575
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3576
     ObjectFileLoader loadedObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3577
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3578
!
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
loadedObjectHandles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3581
    "return a collection of all handles"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3582
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3583
    LoadedObjects isNil ifTrue:[^ #()].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3584
    ^ LoadedObjects 
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
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3587
     ObjectFileLoader loadedObjectHandles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3588
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3589
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3590
    "Created: 17.9.1995 / 14:28:55 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3591
    "Modified: 17.9.1995 / 16:13:48 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3592
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3593
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3594
loadedObjectHandlesDo:aBlock
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3595
    "enumerate all handles"
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
    LoadedObjects notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3598
	LoadedObjects copy do:aBlock.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3599
    ].
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
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3602
     ObjectFileLoader loadedObjectHandlesDo:[:h | h pathName printNL]
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
    "Created: 14.9.1995 / 22:03:13 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3606
    "Modified: 14.9.1995 / 22:32:48 / claus"
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
pathNameFromID:id
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3610
    "given an id, return the pathName, or nil for static modules"
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 notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3613
	LoadedObjects keysAndValuesDo:[:name :handle |
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3614
	    handle moduleID == id ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3615
		^ handle pathName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3616
	    ]
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
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3620
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
     ObjectFileLoader pathNameFromID:1        
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3623
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3624
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3625
    "Modified: 28.8.1995 / 18:08:28 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3626
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3627
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3628
primCanLoadObjectFiles
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3629
    "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
  3630
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3631
%{  /* NOCONTEXT */
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3632
#ifdef HAS_DL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3633
# if !defined(OS_DEFINE) || defined(unknownOS)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3634
    fprintf(stderr, "*** OS_DEFINE not correct\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3635
# else
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3636
#  if !defined(CPU_DEFINE) || defined(unknownCPU)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3637
    fprintf(stderr, "*** CPU_DEFINE not correct\n");
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3638
#  else
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3639
    RETURN (true);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3640
#  endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3641
# endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3642
#endif
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3643
%}.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 138
diff changeset
  3644
    ^ false
470
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3645
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3646
    "
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3647
     ObjectFileLoader primCanLoadObjectFiles
2994a91156e0 category changes; added comments.
Claus Gittinger <cg@exept.de>
parents: 469
diff changeset
  3648
    "
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  3649
! !
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  3650
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  3651
!ObjectFileLoader class methodsFor:'st object file handling'!
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3652
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3653
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
  3654
    "call a function at address - a very dangerous operation.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3655
     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
  3656
     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
  3657
     ForceOld (if true) will have the memory manager
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3658
     allocate things in oldSpace instead of newSpace.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3659
     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
  3660
     otherwise, its called without arguments.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3661
     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
  3662
     install all of its classes) or for a single incrementally compiled methdod
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3663
     (it should then NOT install it, but return the method object instead).
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3664
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3665
     DANGER: Internal & highly specialized. Dont use in your programs.
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3666
             This interface may change without notice."
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3667
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3668
    |moduleID retVal oldSpaceReserve|
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3669
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3670
    handle notNil ifTrue:[
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3671
        moduleID := handle moduleID
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3672
    ].
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3673
    "/
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3674
    "/ 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
  3675
    "/ must be allocated in oldSpace when coming from a compiled
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3676
    "/ classLibrary, and no compressing grabage collect is allowed during
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3677
    "/ 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
  3678
    "/ 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
  3679
    "/ (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
  3680
    "/
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3681
    oldSpaceReserve := OldSpaceReserve ? (1024*1024).
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3682
1033
f5bad5027056 More Stack when calling init function.
Stefan Vogel <sv@exept.de>
parents: 1024
diff changeset
  3683
%{  /* CALLSSTACK: 128000 */
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3684
    OBJ (*addr)();
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3685
    int savInt;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3686
    int prevSpace, force;
591
9c48953d9fab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 590
diff changeset
  3687
    INT arg = 0, ret = 0;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3688
    int wasBlocked = 1;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3689
    extern int __oldSpaceSize(), __oldSpaceUsed();
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3690
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  3691
    if (__isInteger(address)) {
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3692
        if (_isSmallInteger(argument)) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3693
            arg = __intVal(argument);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3694
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3695
            addr = (OBJFUNC)(__longIntVal(address));
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3696
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3697
            /*
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3698
             * allow function to be interrupted
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3699
             */
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3700
            if (interruptable != true) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3701
                wasBlocked = (__BLOCKINTERRUPTS() == true);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3702
            }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3703
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3704
            force = (forceOld == true);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3705
            if (force) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3706
                int reserve = __intVal(oldSpaceReserve);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3707
                if ((__oldSpaceSize() - __oldSpaceUsed()) < reserve) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3708
                    __moreOldSpace(__thisContext, reserve);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3709
                } 
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3710
                prevSpace = __allocForceSpace(OLDSPACE);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3711
            }
468
b56afb940e6d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  3712
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  3713
#ifdef alpha
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3714
            if (@global(Verbose) == true)
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3715
                printf("calling initfunc %lx ...\n", addr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  3716
#else
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3717
            if (@global(Verbose) == true)
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3718
                printf("calling initfunc %x ...\n", addr);
759
fd7e1e42a6a0 changes for WIN32
Claus Gittinger <cg@exept.de>
parents: 750
diff changeset
  3719
#endif
1018
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3720
            if (special == true) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3721
                if (__isSmallInteger(moduleID)) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3722
                    __SET_MODULE_ID(__intVal(moduleID));
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3723
                }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3724
                retVal = (*addr)(arg, __pRT__);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3725
                __SET_MODULE_ID(0);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3726
                if (returnsObject != true) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3727
                    retVal = nil;
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3728
                }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3729
            } else {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3730
                if (returnsObject == true) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3731
                    retVal = (*addr)(arg);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3732
                } else {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3733
                    ret = (int) ((*addr)(arg));
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3734
                    retVal = __MKSMALLINT(ret);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3735
               }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3736
            }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3737
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3738
            if (force) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3739
                __allocForceSpace(prevSpace);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3740
            }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3741
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3742
            if (! wasBlocked) {
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3743
                __UNBLOCKINTERRUPTS();
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3744
            }
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3745
            RETURN (retVal);
011f0c9fa19d more oldSpace reserve (also a classVar to allow for dynamic change)
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  3746
        }
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3747
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3748
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3749
    self primitiveFailed
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3750
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3751
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3752
deinitializeClassesFromModule:handle
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  3753
    "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
  3754
     to all classes of a module."
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3755
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3756
    |classes|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3757
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3758
    classes := handle classes.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3759
    classes notNil ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3760
	classes do:[:aClass |
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3761
	    aClass notNil ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3762
		aClass isMeta ifFalse:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3763
		    Verbose ifTrue:[
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3764
			'send #deinitialize to:' infoPrint. aClass name infoPrintCR.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3765
		    ].
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3766
		    aClass deinitialize.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3767
		    aClass update:#aboutToUnload with:nil from:self
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3768
		]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3769
	    ]
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3770
	]
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3771
    ]
307
2552fd5e8592 give cModule a chance to signal failure (return -1 from __Init);
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
  3772
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3773
    "Modified: 10.1.1997 / 17:56:50 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3774
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3775
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3776
invalidateModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3777
    "invalidate all of the classes code objects ..."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3778
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3779
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3780
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3781
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3782
	'invalidate module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  3783
	' id=' infoPrint. handle moduleID infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3784
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3785
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3786
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3787
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3788
    __INVALIDATE_BY_ID(__intVal(id));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3789
%}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3790
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3791
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3792
loadStatusFor:className
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3793
    "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
  3794
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3795
    |checker checkSymbol statusCode status badClassName|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3796
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3797
    checker := self.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3798
    checkSymbol := #'superClassCheck:'.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3799
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3800
%{  /* NOREGISTER */
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3801
    char *badName;
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  3802
    char *interestingClassName;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3803
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3804
    if (__isString(className) || __isSymbol(className)) {
587
5250b6d10925 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
  3805
	interestingClassName = (char *)__stringVal(className);
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3806
    } else {
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  3807
	interestingClassName = (char *)0;
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3808
    }
365
22c85186e799 Fix misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 346
diff changeset
  3809
    statusCode = __MKSMALLINT(__check_registration__(interestingClassName,
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3810
						     &checker, &checkSymbol, &badName));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3811
    if (badName) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3812
	badClassName = __MKSTRING(badName);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3813
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3814
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3815
    statusCode == 0 ifTrue:[
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3816
	status := #ok
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3817
    ] ifFalse:[ statusCode == -1 ifTrue:[
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3818
	status := #missingClass
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3819
    ] ifFalse:[ statusCode == -2 ifTrue:[
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3820
	status := #versionMismatch
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3821
    ] ifFalse:[ statusCode == -3 ifTrue:[
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3822
	status := #unregisteredSuperclass
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3823
    ] ifFalse:[ statusCode == -4 ifTrue:[
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3824
	status := #tryAgain
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3825
    ] ifFalse:[
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3826
	status := #loadFailed
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3827
    ] ] ] ] ].
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3828
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3829
    ^ Array with:status with:badClassName.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3830
!
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
moduleInit:phase forceOld:forceOld interruptable:interruptable
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3833
    "initialization phases after registration.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3834
     DANGER: Pure magic; internal only -> dont use in your programs."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3835
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
    int savInt;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3838
    int prevSpace, force;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3839
    int arg = 0;
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3840
    int wasBlocked = 1;
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
    if (_isSmallInteger(phase)) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3843
	if (interruptable != true) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3844
	    wasBlocked = (__BLOCKINTERRUPTS() == true);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3845
	}
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
	force = (forceOld == true);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3848
	if (force) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3849
	    prevSpace = __allocForceSpace(OLDSPACE);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3850
	}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3851
345
3727b0b6f62f removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  3852
	__init_registered_modules__(__intVal(phase));
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3853
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3854
	if (force) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3855
	    __allocForceSpace(prevSpace);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3856
	}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3857
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3858
	if (! wasBlocked) {
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3859
	    __UNBLOCKINTERRUPTS();
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
	RETURN (self);
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3862
    }
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3863
%}.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3864
    self primitiveFailed
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3865
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3866
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3867
performModuleInitAt:initAddr for:className identifyAs:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3868
    "Initialize a loaded smalltalk module."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3869
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3870
    ^ self
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3871
	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
  3872
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3873
!
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3874
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3875
performModuleInitAt:initAddr invokeInitializeMethods:invokeInitializeMethods for:className identifyAs:handle
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3876
    "Initialize a loaded smalltalk module."
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3877
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3878
    |status badClassName infoCollection info classNames classes
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3879
     stillTrying|
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3880
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3881
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3882
     need 4 passes to init: 0: let module register itself & create its pools/globals
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3883
			    0b check if modules superclasses are all loaded
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3884
			    1: let it get var-refs to other pools/globals
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3885
			    2: let it install install class, methods and literals
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3886
			    3: let it send #initialize to its class object
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3887
    "
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3888
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3889
    stillTrying := true.
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3890
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3891
    [stillTrying] whileTrue:[
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3892
	stillTrying := false.
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3893
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3894
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3895
	"/ let it register itself
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3896
	"/ and define its globals
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3897
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3898
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3899
	    'phase 0 (module registration) ...' infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3900
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3901
	self callInitFunctionAt:initAddr 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3902
	     specialInit:true 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3903
	     forceOld:true 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3904
	     interruptable:false
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3905
	     argument:0
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3906
	     identifyAs:handle
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3907
	     returnsObject:false.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3908
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3909
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3910
	"/ check if superclasses are present
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3911
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3912
	info := self loadStatusFor:className.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3913
	status := info at:1.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3914
	badClassName := info at:2.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3915
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3916
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3917
	    '... status is ' infoPrint. info infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3918
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3919
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3920
	(status ~~ #ok) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3921
	    (status == #missingClass) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3922
		('ObjectFileLoader [error]: load failed - missing class: ' , badClassName) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3923
		^ info
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3924
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3925
	    (status == #versionMismatch) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3926
		('ObjectFileLoader [error]: load failed - version mismatch: ' , badClassName) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3927
		^ info
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3928
	    ].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3929
	    (status == #unregisteredSuperclass) ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3930
		('ObjectFileLoader [error]: load failed - unregistered: ' , badClassName) infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3931
		^ info
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3932
	    ].
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3933
	    (status ~~ #tryAgain) ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3934
		'ObjectFileLoader [error]: load failed' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3935
		^ Array with:#loadFailed with:nil
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3936
	    ].
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3937
	    (status == #tryAgain) ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3938
		"/ tryAgain:
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3939
		"/   must retry after initialization, to initialize
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3940
		"/   sub-subclasses of autoloaded classes
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3941
		"/   (sigh - class objects are created in phase 3,
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3942
		"/    so we must first complete the initialization cycle,
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3943
		"/    then do all again, for remaining modules)
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3944
		stillTrying := true.
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3945
		'ObjectFileLoader [info]: retry registration after init' infoPrintCR.
972
3ae444a1a816 better diagnostics / revalidate after autoload during classLib loading
Claus Gittinger <cg@exept.de>
parents: 966
diff changeset
  3946
	    ]
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3947
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3948
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3949
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3950
	"/ remaining initialization
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3951
	"/
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3952
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3953
	"/ module exports: declare module-globals & symbols ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3954
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3955
	    'phase 1 (resolve globals) ...' infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3956
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3957
	self moduleInit:1 forceOld:true interruptable:false.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3958
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3959
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3960
	"/ module-imports: resolve globals ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3961
	"/ create methods & install ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3962
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3963
	    'phase 2 (create objects) ...' infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3964
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3965
	self moduleInit:2 forceOld:true interruptable:false.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3966
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3967
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3968
    ObjectMemory flushCaches.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3969
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3970
    "/ ask objectMemory for the classes we have just loaded
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3971
    "/ and register them in the handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3972
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3973
    infoCollection := ObjectMemory binaryModuleInfo.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3974
    info := infoCollection at:handle moduleID ifAbsent:nil.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3975
    info isNil ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3976
	"/ mhmh registration failed -
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3977
	'ObjectFileLoader [error]: registration failed' infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3978
	^ Array with:#registrationFailed with:nil
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3979
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3980
405
92cb91b82cf7 changes for new moduleInfo reply
Claus Gittinger <cg@exept.de>
parents: 404
diff changeset
  3981
    classNames := info classNames.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3982
    classNames size > 0 ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3983
	classes := classNames collect:[:nm | Smalltalk classNamed:nm].
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3984
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3985
    classes size > 0 ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3986
	classes := classes asArray.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3987
	classes := classes , (classes collect:[:aClass | aClass class]).
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3988
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3989
    handle classes:classes.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3990
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3991
    invokeInitializeMethods ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3992
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3993
	    'phase 3 (send #initialize) ...' infoPrintCR
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3994
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3995
	"/ initialize ...
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  3996
	self moduleInit:3 forceOld:false interruptable:true.
916
a04d8cad48d8 when reloading object modules after snapIn,
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
  3997
    ].
881
ed4efb1b161e perform moduleInit3 AFTER registering the module.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
  3998
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  3999
    ^ Array with:#ok with:nil
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4000
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  4001
    "Modified: 10.1.1997 / 17:58:41 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4002
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4003
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4004
revalidateModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4005
    "revalidate all of the classes code objects ..."
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4006
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4007
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4008
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4009
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4010
	'revalidate module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4011
	' id=' infoPrint. handle moduleID infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4012
    ].
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
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4015
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4016
    __REVALIDATE_BY_ID(__intVal(id));
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4017
%}
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4018
!
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
superClassCheck:aClass
320
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  4021
    "callBack from class registration code in VM: 
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  4022
     make certain, that aClass is loaded too ...
54bfd6fd28b9 removed old obsolete manual loader; aix fixes
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  4023
     (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
  4024
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4025
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4026
	'checkCall for:' infoPrint. aClass name infoPrint. ' -> ' infoPrint.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4027
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4028
    aClass isBehavior ifFalse:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4029
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4030
	    'false' infoPrintCR. 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4031
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4032
	'ObjectFileLoader [warning]: check failed - no behavior' errorPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4033
	^ false
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4034
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4035
    Verbose ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4036
	'true' infoPrintCR. 
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4037
	('ObjectFileLoader [info]: check for ' , aClass name , ' being loaded') infoPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4038
    ].
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4039
    aClass autoload.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4040
    (aClass isBehavior and:[aClass isLoaded]) ifTrue:[
1010
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4041
	Verbose ifTrue:[
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4042
	    ('ObjectFileLoader [info]: ok, loaded. continue registration of actual class') infoPrintCR.
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4043
	].
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4044
	aClass signature.       "/ req'd in VM for validation
46287addc332 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1007
diff changeset
  4045
	^ true
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4046
    ].
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4047
    ('ObjectFileLoader [warning]: superclass not loaded; registration of ' , aClass name , ' fails') errorPrintCR.
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4048
    ^ false
474
bf2345df4093 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 472
diff changeset
  4049
477
5208c65a2b3d newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  4050
    "Modified: 10.1.1997 / 17:58:48 / cg"
303
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4051
!
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4052
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4053
unregisterModule:handle
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4054
    "unregister classes in the VM.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4055
     This invalidates all of the classes code objects ..."
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
    |id|
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4058
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4059
    Verbose ifTrue:[
634
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4060
	'unregister module; name=' infoPrint. handle pathName infoPrint.
91490b70007e added unload&removeClasses
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  4061
	' id=' infoPrint. handle moduleID infoPrintCR.
303
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
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4064
    id := handle moduleID.
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4065
%{
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4066
    __UNREGISTER_BY_ID(__intVal(id));
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
! !
989a7899b0e7 category changes
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  4069
369
65d9c12fa6b8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
  4070
!ObjectFileLoader class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4071
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4072
version
1033
f5bad5027056 More Stack when calling init function.
Stefan Vogel <sv@exept.de>
parents: 1024
diff changeset
  4073
    ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.216 2000-02-08 18:52:37 stefan Exp $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 147
diff changeset
  4074
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4075
ObjectFileLoader initialize!