Searched refs:assert_constant_size (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp124 assert_same_format_as(bc); assert_constant_size(1, offset, bc);
128 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide);
136 static void assert_constant_size(int required_size, int where, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
H A Dbytecode.cpp88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) { function in class:Bytecode
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
102 assert(have_fmt == need_fmt, "assert_constant_size");
103 assert(where + size == length, "assert_constant_size oob");

Completed in 55 milliseconds