8283689: Update the foreign linker VM implementation

Co-authored-by: Jorn Vernee <jvernee@openjdk.org>
Co-authored-by: Nick Gasson <ngasson@openjdk.org>
Reviewed-by: mcimadamore, vlivanov, rehn
This commit is contained in:
Jorn Vernee 2022-05-18 09:49:55 +00:00
parent 6a8be358d2
commit 81e4bdbe13
154 changed files with 3718 additions and 4360 deletions

View file

@ -421,8 +421,6 @@ Form::CallType InstructForm::is_ideal_call() const {
idx = 0;
if(_matrule->find_type("CallLeafVector",idx)) return Form::JAVA_LEAF;
idx = 0;
if(_matrule->find_type("CallNative",idx)) return Form::JAVA_NATIVE;
idx = 0;
return Form::invalid_type;
}
@ -1143,9 +1141,6 @@ const char *InstructForm::mach_base_class(FormDict &globals) const {
else if( is_ideal_call() == Form::JAVA_LEAF ) {
return "MachCallLeafNode";
}
else if( is_ideal_call() == Form::JAVA_NATIVE ) {
return "MachCallNativeNode";
}
else if (is_ideal_return()) {
return "MachReturnNode";
}