1 // win32.cc - Helper functions for Microsoft-flavored OSs.
3 /* Copyright (C) 2002 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
13 #include <sys/timeb.h>
17 #include <java/lang/ArithmeticException.h>
18 #include <java/util/Properties.h>
21 win32_exception_handler (LPEXCEPTION_POINTERS e
)
23 if (e
->ExceptionRecord
->ExceptionCode
== EXCEPTION_ACCESS_VIOLATION
)
24 _Jv_ThrowNullPointerException();
25 else if (e
->ExceptionRecord
->ExceptionCode
== EXCEPTION_INT_DIVIDE_BY_ZERO
)
26 throw new java::lang::ArithmeticException
;
28 return EXCEPTION_CONTINUE_SEARCH
;
31 // Platform-specific VM initialization.
33 _Jv_platform_initialize (void)
35 // Initialise winsock for networking
37 if (WSAStartup (MAKEWORD (1, 1), &data
))
38 MessageBox (NULL
, "Error initialising winsock library.", "Error",
39 MB_OK
| MB_ICONEXCLAMATION
);
40 // Install exception handler
41 SetUnhandledExceptionFilter (win32_exception_handler
);
44 // gettimeofday implementation.
46 _Jv_platform_gettimeofday ()
50 return t
.time
* 1000LL + t
.millitm
;
53 // The following definitions "fake out" mingw to think that -mthreads
54 // was enabled and that mingwthr.dll was linked. GCJ-compiled
55 // applications don't need this helper library because we can safely
56 // detect thread death (return from Thread.run()).
61 __mingwthr_key_dtor (DWORD
, void (*) (void *))
63 // FIXME: for now we do nothing; this causes a memory leak of
64 // approximately 24 bytes per thread created.
68 // Set platform-specific System properties.
70 _Jv_platform_initProperties (java::util::Properties
* newprops
)
72 // A convenience define.
73 #define SET(Prop,Val) \
74 newprops->put(JvNewStringLatin1 (Prop), JvNewStringLatin1 (Val))
76 SET ("file.separator", "\\");
77 SET ("path.separator", ";");
78 SET ("line.separator", "\r\n");
80 // Use GetCurrentDirectory to set 'user.dir'.
81 DWORD buflen
= MAX_PATH
;
82 char *buffer
= (char *) _Jv_MallocUnchecked (buflen
);
85 if (GetCurrentDirectory (buflen
, buffer
))
86 SET ("user.dir", buffer
);
88 if (GetTempPath (buflen
, buffer
))
89 SET ("java.io.tmpdir", buffer
);
94 // Use GetUserName to set 'user.name'.
95 buflen
= 257; // UNLEN + 1
96 buffer
= (char *) _Jv_MallocUnchecked (buflen
);
99 if (GetUserName (buffer
, &buflen
))
100 SET ("user.name", buffer
);
104 // According to the api documentation for 'GetWindowsDirectory()', the
105 // environmental variable HOMEPATH always specifies the user's home
106 // directory or a default directory. On the 3 windows machines I checked
107 // only 1 had it set. If it's not set, JDK1.3.1 seems to set it to
108 // the windows directory, so we'll do the same.
109 char *userHome
= NULL
;
110 if ((userHome
= ::getenv ("HOMEPATH")) == NULL
)
112 // Check HOME since it's what I use.
113 if ((userHome
= ::getenv ("HOME")) == NULL
)
115 // Not found - use the windows directory like JDK1.3.1 does.
116 char *winHome
= (char *) _Jv_MallocUnchecked (MAX_PATH
);
119 if (GetWindowsDirectory (winHome
, MAX_PATH
))
120 SET ("user.home", winHome
);
125 if (userHome
!= NULL
)
126 SET ("user.home", userHome
);
128 // Get and set some OS info.
130 ZeroMemory (&osvi
, sizeof(OSVERSIONINFO
));
131 osvi
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
132 if (GetVersionEx (&osvi
))
134 char *buffer
= (char *) _Jv_MallocUnchecked (30);
137 sprintf (buffer
, "%d.%d", (int) osvi
.dwMajorVersion
,
138 (int) osvi
.dwMinorVersion
);
139 SET ("os.version", buffer
);
143 switch (osvi
.dwPlatformId
)
145 case VER_PLATFORM_WIN32_WINDOWS
:
146 if (osvi
.dwMajorVersion
== 4 && osvi
.dwMinorVersion
== 0)
147 SET ("os.name", "Windows 95");
148 else if (osvi
.dwMajorVersion
== 4 && osvi
.dwMinorVersion
== 10)
149 SET ("os.name", "Windows 98");
150 else if (osvi
.dwMajorVersion
== 4 && osvi
.dwMinorVersion
== 90)
151 SET ("os.name", "Windows Me");
153 SET ("os.name", "Windows ??");
156 case VER_PLATFORM_WIN32_NT
:
157 if (osvi
.dwMajorVersion
<= 4 )
158 SET ("os.name", "Windows NT");
159 else if (osvi
.dwMajorVersion
== 5 && osvi
.dwMinorVersion
== 0)
160 SET ("os.name", "Windows 2000");
161 else if (osvi
.dwMajorVersion
== 5 && osvi
.dwMinorVersion
== 1)
162 SET ("os.name", "Windows XP");
164 SET ("os.name", "Windows NT ??");
168 SET ("os.name", "Windows UNKNOWN");
173 // Set the OS architecture.
176 switch (si
.dwProcessorType
)
178 case PROCESSOR_INTEL_386
:
179 SET ("os.arch", "i386");
181 case PROCESSOR_INTEL_486
:
182 SET ("os.arch", "i486");
184 case PROCESSOR_INTEL_PENTIUM
:
185 SET ("os.arch", "i586");
187 case PROCESSOR_MIPS_R4000
:
188 SET ("os.arch", "MIPS4000");
190 case PROCESSOR_ALPHA_21064
:
191 SET ("os.arch", "ALPHA");
194 SET ("os.arch", "unknown");
199 /* Store up to SIZE return address of the current program state in
200 ARRAY and return the exact number of values stored. */
202 backtrace (void **__array
, int __size
)
204 register void *_ebp
__asm__ ("ebp");
205 register void *_esp
__asm__ ("esp");
209 for (rfp
= *(unsigned int**)_ebp
;
211 rfp
= *(unsigned int **)rfp
)
213 int diff
= *rfp
- (unsigned int)rfp
;
214 if ((void*)rfp
< _esp
|| diff
> 4 * 1024 || diff
< 0) break;
216 __array
[i
++] = (void*)(rfp
[1]-4);