80
80
#include " windbghelp.hpp"
81
81
#if INCLUDE_JFR
82
82
#include " jfr/jfrEvents.hpp"
83
+ #include " jfr/support/jfrNativeLibraryLoadEvent.hpp"
83
84
#endif
84
85
85
86
#ifdef _DEBUG
@@ -1246,33 +1247,22 @@ void os::dll_unload(void *lib) {
1246
1247
snprintf (name, MAX_PATH, " <not available>" );
1247
1248
}
1248
1249
1249
- #if INCLUDE_JFR
1250
- EventNativeLibraryUnload event;
1251
- event.set_name (name);
1252
- #endif
1250
+ JFR_ONLY (NativeLibraryUnloadEvent unload_event (name);)
1253
1251
1254
1252
if (::FreeLibrary ((HMODULE)lib)) {
1255
1253
Events::log_dll_message (nullptr , " Unloaded dll \" %s\" [" INTPTR_FORMAT " ]" , name, p2i (lib));
1256
1254
log_info (os)(" Unloaded dll \" %s\" [" INTPTR_FORMAT " ]" , name, p2i (lib));
1257
- #if INCLUDE_JFR
1258
- event.set_success (true );
1259
- event.set_errorMessage (nullptr );
1260
- event.commit ();
1261
- #endif
1255
+ JFR_ONLY (unload_event.set_result (true );)
1262
1256
} else {
1263
1257
const DWORD errcode = ::GetLastError ();
1264
1258
char buf[500 ];
1265
1259
size_t tl = os::lasterror (buf, sizeof (buf));
1266
1260
Events::log_dll_message (nullptr , " Attempt to unload dll \" %s\" [" INTPTR_FORMAT " ] failed (error code %d)" , name, p2i (lib), errcode);
1267
1261
log_info (os)(" Attempt to unload dll \" %s\" [" INTPTR_FORMAT " ] failed (error code %d)" , name, p2i (lib), errcode);
1268
- #if INCLUDE_JFR
1269
- event.set_success (false );
1270
1262
if (tl == 0 ) {
1271
1263
os::snprintf (buf, sizeof (buf), " Attempt to unload dll failed (error code %d)" , (int ) errcode);
1272
1264
}
1273
- event.set_errorMessage (buf);
1274
- event.commit ();
1275
- #endif
1265
+ JFR_ONLY (unload_event.set_error_msg (buf);)
1276
1266
}
1277
1267
}
1278
1268
@@ -1541,21 +1531,14 @@ static int _print_module(const char* fname, address base_address,
1541
1531
// same architecture as Hotspot is running on
1542
1532
void * os::dll_load (const char *name, char *ebuf, int ebuflen) {
1543
1533
log_info (os)(" attempting shared library load of %s" , name);
1544
- #if INCLUDE_JFR
1545
- EventNativeLibraryLoad event;
1546
- event.set_name (name);
1547
- #endif
1548
- void * result = LoadLibrary (name);
1534
+ void * result;
1535
+ JFR_ONLY (NativeLibraryLoadEvent load_event (name, &result);)
1536
+ result = LoadLibrary (name);
1549
1537
if (result != nullptr ) {
1550
1538
Events::log_dll_message (nullptr , " Loaded shared library %s" , name);
1551
1539
// Recalculate pdb search path if a DLL was loaded successfully.
1552
1540
SymbolEngine::recalc_search_path ();
1553
1541
log_info (os)(" shared library load of %s was successful" , name);
1554
- #if INCLUDE_JFR
1555
- event.set_success (true );
1556
- event.set_errorMessage (nullptr );
1557
- event.commit ();
1558
- #endif
1559
1542
return result;
1560
1543
}
1561
1544
DWORD errcode = GetLastError ();
@@ -1569,11 +1552,7 @@ void * os::dll_load(const char *name, char *ebuf, int ebuflen) {
1569
1552
if (errcode == ERROR_MOD_NOT_FOUND) {
1570
1553
strncpy (ebuf, " Can't find dependent libraries" , ebuflen - 1 );
1571
1554
ebuf[ebuflen - 1 ] = ' \0 ' ;
1572
- #if INCLUDE_JFR
1573
- event.set_success (false );
1574
- event.set_errorMessage (ebuf);
1575
- event.commit ();
1576
- #endif
1555
+ JFR_ONLY (load_event.set_error_msg (ebuf);)
1577
1556
return nullptr ;
1578
1557
}
1579
1558
@@ -1584,11 +1563,7 @@ void * os::dll_load(const char *name, char *ebuf, int ebuflen) {
1584
1563
// else call os::lasterror to obtain system error message
1585
1564
int fd = ::open (name, O_RDONLY | O_BINARY, 0 );
1586
1565
if (fd < 0 ) {
1587
- #if INCLUDE_JFR
1588
- event.set_success (false );
1589
- event.set_errorMessage (" open on dll file did not work" );
1590
- event.commit ();
1591
- #endif
1566
+ JFR_ONLY (load_event.set_error_msg (" open on dll file did not work" );)
1592
1567
return nullptr ;
1593
1568
}
1594
1569
@@ -1615,11 +1590,7 @@ void * os::dll_load(const char *name, char *ebuf, int ebuflen) {
1615
1590
::close (fd);
1616
1591
if (failed_to_get_lib_arch) {
1617
1592
// file i/o error - report os::lasterror(...) msg
1618
- #if INCLUDE_JFR
1619
- event.set_success (false );
1620
- event.set_errorMessage (" failed to get lib architecture" );
1621
- event.commit ();
1622
- #endif
1593
+ JFR_ONLY (load_event.set_error_msg (" failed to get lib architecture" );)
1623
1594
return nullptr ;
1624
1595
}
1625
1596
@@ -1664,11 +1635,7 @@ void * os::dll_load(const char *name, char *ebuf, int ebuflen) {
1664
1635
// If the architecture is right
1665
1636
// but some other error took place - report os::lasterror(...) msg
1666
1637
if (lib_arch == running_arch) {
1667
- #if INCLUDE_JFR
1668
- event.set_success (false );
1669
- event.set_errorMessage (" lib architecture matches, but other error occured" );
1670
- event.commit ();
1671
- #endif
1638
+ JFR_ONLY (load_event.set_error_msg (" lib architecture matches, but other error occured" );)
1672
1639
return nullptr ;
1673
1640
}
1674
1641
@@ -1682,12 +1649,7 @@ void * os::dll_load(const char *name, char *ebuf, int ebuflen) {
1682
1649
" Can't load this .dll (machine code=0x%x) on a %s-bit platform" ,
1683
1650
lib_arch, running_arch_str);
1684
1651
}
1685
- #if INCLUDE_JFR
1686
- event.set_success (false );
1687
- event.set_errorMessage (ebuf);
1688
- event.commit ();
1689
- #endif
1690
-
1652
+ JFR_ONLY (load_event.set_error_msg (ebuf);)
1691
1653
return nullptr ;
1692
1654
}
1693
1655
0 commit comments