src/hotspot/share/jvmci/compilerRuntime.cpp
changeset 58722 cba8afa5cfed
parent 58545 725244418646
child 59056 15936b142f86
equal deleted inserted replaced
58720:ae0af9fb3dbb 58722:cba8afa5cfed
    71   // Use class loader of aot method.
    71   // Use class loader of aot method.
    72   Handle loader(THREAD, caller->method_holder()->class_loader());
    72   Handle loader(THREAD, caller->method_holder()->class_loader());
    73   Handle protection_domain(THREAD, caller->method_holder()->protection_domain());
    73   Handle protection_domain(THREAD, caller->method_holder()->protection_domain());
    74 
    74 
    75   // Ignore wrapping L and ;
    75   // Ignore wrapping L and ;
    76   if (name[0] == 'L') {
    76   if (name[0] == JVM_SIGNATURE_CLASS) {
    77     assert(len > 2, "small name %s", name);
    77     assert(len > 2, "small name %s", name);
    78     name++;
    78     name++;
    79     len -= 2;
    79     len -= 2;
    80   }
    80   }
    81   TempNewSymbol sym = SymbolTable::new_symbol(name, len);
    81   TempNewSymbol sym = SymbolTable::new_symbol(name, len);