Lines Matching refs:bc
50 tty->print_cr("assert_same_format_as(%d) failed on bc=%d%s; %d != %d",
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) {
56 int have_fmt = (Bytecodes::flags(bc, is_wide)
69 tty->print_cr("assert_index_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
74 void Bytecode::assert_offset_size(int size, Bytecodes::Code bc, bool is_wide) {
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits;
83 tty->print_cr("assert_offset_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) {
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits
98 int length = is_wide ? Bytecodes::wide_length_for(bc) : Bytecodes::length_for(bc);
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
106 void Bytecode::assert_native_index(Bytecodes::Code bc, bool is_wide) {
107 assert((Bytecodes::flags(bc, is_wide) & Bytecodes::_fmt_has_nbo) != 0, "native index");
154 Bytecodes::Code bc = invoke_code();
155 LinkResolver::resolve_method_statically(m, resolved_klass, bc, constants, index(), CHECK_(methodHandle()));