src/hotspot/share/aot/aotCodeHeap.cpp
changeset 58722 cba8afa5cfed
parent 58537 30a9612a657d
child 58901 2700c409ff10
equal deleted inserted replaced
58720:ae0af9fb3dbb 58722:cba8afa5cfed
    91   // Use class loader of aot method.
    91   // Use class loader of aot method.
    92   Handle loader(thread, caller->method_holder()->class_loader());
    92   Handle loader(thread, caller->method_holder()->class_loader());
    93   Handle protection_domain(thread, caller->method_holder()->protection_domain());
    93   Handle protection_domain(thread, caller->method_holder()->protection_domain());
    94 
    94 
    95   // Ignore wrapping L and ;
    95   // Ignore wrapping L and ;
    96   if (name[0] == 'L') {
    96   if (name[0] == JVM_SIGNATURE_CLASS) {
    97     assert(len > 2, "small name %s", name);
    97     assert(len > 2, "small name %s", name);
    98     name++;
    98     name++;
    99     len -= 2;
    99     len -= 2;
   100   }
   100   }
   101   TempNewSymbol sym = SymbolTable::probe(name, len);
   101   TempNewSymbol sym = SymbolTable::probe(name, len);