Lines Matching defs:expected
669 "invalid alignment; expected maximum alignment is %u, "
1134 "expected more local decls but reached end of input");
1452 DecodeError(pc, "expected memory index 0, found %u", imm.index);
5178 V8_NOINLINE void PopTypeError(int index, Value val, const char* expected) {
5179 this->DecodeError(val.pc(), "%s[%d] expected %s, found %s of type %s",
5180 SafeOpcodeNameAt(this->pc_), index, expected,
5184 V8_NOINLINE void PopTypeError(int index, Value val, std::string expected) {
5185 PopTypeError(index, val, expected.c_str());
5188 V8_NOINLINE void PopTypeError(int index, Value val, ValueType expected) {
5189 PopTypeError(index, val, ("type " + expected.name()).c_str());
5201 V8_INLINE Value Peek(int depth, int index, ValueType expected) {
5203 if (!VALIDATE(IsSubtypeOf(val.type, expected, this->module_) ||
5204 val.type == kWasmBottom || expected == kWasmBottom)) {
5205 PopTypeError(index, val, expected);
5226 ValueType expected) {
5228 if (!VALIDATE(IsSubtypeOf(val.type, expected, this->module_) ||
5229 val.type == kWasmBottom || expected == kWasmBottom)) {
5230 PopTypeError(index, val, expected);
5271 // fallthroughs so that the outer control finds the expected values on the
5294 this->DecodeError("expected %u elements on the stack for %s, found %u",
5305 this->DecodeError("type error in %s[%u] (expected %s, got %s)",
5315 this->DecodeError("expected %u elements on the stack for %s, found %u",
5377 this->DecodeError("type error in merge[%u] (expected %s, got %s)", i,