Home | History | Annotate | Download | only in verifier

Lines Matching refs:expected_args

1653   size_t expected_args = code_item_accessor_.InsSize();   /* long/double count as two */
1658 if (expected_args == 0) {
1694 if (cur_arg >= expected_args) {
1695 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1737 if (cur_arg + 1 >= expected_args) {
1738 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1763 if (cur_arg != expected_args) {
1764 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
3915 const size_t expected_args = inst->VRegA();
3917 DCHECK(is_range || expected_args <= 5);
3919 if (expected_args > code_item_accessor_.OutsSize()) {
3920 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3996 if (sig_registers >= expected_args) {
4032 if (!is_range && sig_registers + 1 < expected_args) {
4045 if (expected_args != sig_registers) {
4046 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<