hotspot/src/cpu/aarch64/vm/methodHandles_aarch64.cpp
changeset 33105 294e48b4f704
parent 32820 ec181adbf3b1
child 33602 16053580a684
equal deleted inserted replaced
33104:a7c0f60a1294 33105:294e48b4f704
    48   __ ldr(klass_reg, Address(klass_reg, java_lang_Class::klass_offset_in_bytes()));
    48   __ ldr(klass_reg, Address(klass_reg, java_lang_Class::klass_offset_in_bytes()));
    49 }
    49 }
    50 
    50 
    51 #ifdef ASSERT
    51 #ifdef ASSERT
    52 static int check_nonzero(const char* xname, int x) {
    52 static int check_nonzero(const char* xname, int x) {
    53   assert(x != 0, err_msg("%s should be nonzero", xname));
    53   assert(x != 0, "%s should be nonzero", xname);
    54   return x;
    54   return x;
    55 }
    55 }
    56 #define NONZERO(x) check_nonzero(#x, x)
    56 #define NONZERO(x) check_nonzero(#x, x)
    57 #else //ASSERT
    57 #else //ASSERT
    58 #define NONZERO(x) (x)
    58 #define NONZERO(x) (x)
   405                                  L_incompatible_class_change_error);
   405                                  L_incompatible_class_change_error);
   406       break;
   406       break;
   407     }
   407     }
   408 
   408 
   409     default:
   409     default:
   410       fatal(err_msg_res("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid)));
   410       fatal("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid));
   411       break;
   411       break;
   412     }
   412     }
   413 
   413 
   414     // live at this point:  rmethod, r13 (if interpreted)
   414     // live at this point:  rmethod, r13 (if interpreted)
   415 
   415