< prev index next >

src/hotspot/share/jvmci/compilerRuntime.cpp

Print this page

        

*** 71,81 **** // Use class loader of aot method. Handle loader(THREAD, caller->method_holder()->class_loader()); Handle protection_domain(THREAD, caller->method_holder()->protection_domain()); // Ignore wrapping L and ; ! if (name[0] == 'L') { assert(len > 2, "small name %s", name); name++; len -= 2; } TempNewSymbol sym = SymbolTable::new_symbol(name, len, CHECK_NULL); --- 71,81 ---- // Use class loader of aot method. Handle loader(THREAD, caller->method_holder()->class_loader()); Handle protection_domain(THREAD, caller->method_holder()->protection_domain()); // Ignore wrapping L and ; ! if (name[0] == 'L' || name[0] == 'Q') { assert(len > 2, "small name %s", name); name++; len -= 2; } TempNewSymbol sym = SymbolTable::new_symbol(name, len, CHECK_NULL);
< prev index next >