8232613: Move Object.registerNatives into HotSpot

Reviewed-by: dholmes, adinn, coleenp, lfoltan, mchung
This commit is contained in:
Claes Redestad 2019-10-24 09:57:29 +02:00
parent 68e5c40f6f
commit 574263a884
13 changed files with 312 additions and 136 deletions

View file

@ -88,6 +88,13 @@
BASIC_JAVA_CLASSES_DO_PART1(f) \
BASIC_JAVA_CLASSES_DO_PART2(f)
// Interface to java.lang.Object objects
class java_lang_Object : AllStatic {
public:
static void register_natives(TRAPS);
};
// Interface to java.lang.String objects
class java_lang_String : AllStatic {