< prev index next >

src/hotspot/cpu/aarch64/c2_MacroAssembler_aarch64.cpp

Print this page
@@ -2571,11 +2571,11 @@
      }
    }
    return MacroAssembler::in_scratch_emit_size();
  }
  
- static void abort_verify_int_in_range(uint idx, jint val, jint lo, jint hi) {
+ void C2_MacroAssembler::abort_verify_int_in_range(uint idx, jint val, jint lo, jint hi) {
    fatal("Invalid CastII, idx: %u, val: %d, lo: %d, hi: %d", idx, val, lo, hi);
  }
  
  void C2_MacroAssembler::verify_int_in_range(uint idx, const TypeInt* t, Register rval, Register rtmp) {
    assert(!t->empty() && !t->singleton(), "%s", Type::str(t));

@@ -2610,11 +2610,11 @@
  
    bind(L_success);
    BLOCK_COMMENT("} verify_int_in_range");
  }
  
- static void abort_verify_long_in_range(uint idx, jlong val, jlong lo, jlong hi) {
+ void C2_MacroAssembler::abort_verify_long_in_range(uint idx, jlong val, jlong lo, jlong hi) {
    fatal("Invalid CastLL, idx: %u, val: " JLONG_FORMAT ", lo: " JLONG_FORMAT ", hi: " JLONG_FORMAT, idx, val, lo, hi);
  }
  
  void C2_MacroAssembler::verify_long_in_range(uint idx, const TypeLong* t, Register rval, Register rtmp) {
    assert(!t->empty() && !t->singleton(), "%s", Type::str(t));
< prev index next >