Lines Matching refs:error
6 #error This header should only be included if WebAssembly is enabled.
49 kBooleanValidation, // Run validation but only store a generic error.
50 kFullValidation // Run full validation with error message and location.
74 error(pc, msg);
241 // Use this for "boolean validation", i.e. if the error message is not used
249 // Do not inline error methods. This has measurable impact on validation time,
251 void V8_NOINLINE error(const char* msg) { errorf(pc_offset(), "%s", msg); }
252 void V8_NOINLINE error(const uint8_t* pc, const char* msg) {
255 void V8_NOINLINE error(uint32_t offset, const char* msg) {
282 // Behavior triggered on first error, overridden in subclasses.
297 // Converts the given value to a {Result}, copying the error if necessary.
301 TRACE("Result error: %s\n", error_.message().c_str());
325 const WasmError& error() const { return error_; }
365 // Only report the first error.
491 error(pc, "extra bits in varint");