Lines Matching refs:retcount
608 int retcount = static_cast<int>(function_env_->sig->return_count());
609 if (retcount == 0) {
614 if (static_cast<int>(trees_.size()) < retcount) {
616 "ImplicitReturn expects %d arguments, only %d remain", retcount,
621 TRACE("wasm-decode implicit return of %d args\n", retcount);
623 TFNode** buffer = BUILD(Buffer, retcount);
624 for (int index = 0; index < retcount; index++) {
638 BUILD(Return, retcount, buffer);