src/hotspot/share/c1/c1_Runtime1.cpp
changeset 55590 05dac93510c0
parent 54973 0927d8c7296f
child 57893 49fea19f0726
--- a/src/hotspot/share/c1/c1_Runtime1.cpp	Thu Jul 04 16:51:24 2019 +0200
+++ b/src/hotspot/share/c1/c1_Runtime1.cpp	Thu Jul 04 17:02:17 2019 +0200
@@ -294,6 +294,12 @@
     if (entry == entry_for((StubID)id)) return name_for((StubID)id);
   }
 
+  BarrierSetC1* bsc1 = BarrierSet::barrier_set()->barrier_set_c1();
+  const char* name = bsc1->rtcall_name_for_address(entry);
+  if (name != NULL) {
+    return name;
+  }
+
 #define FUNCTION_CASE(a, f) \
   if ((intptr_t)a == CAST_FROM_FN_PTR(intptr_t, f))  return #f