Home | History | Annotate | Download | only in wasm

Lines Matching refs:start_

36     result_.start = start_;
37 if (limit_ < start_) {
38 error(start_, "end is less than start");
39 limit_ = start_;
74 pc_ = start_;
75 module->module_start = start_;
122 static_cast<int>(section_name_start - start_),
157 static_cast<int>(pc_ - start_));
235 static_cast<int>(pc_ - start_));
249 static_cast<int>(pc_ - start_));
280 static_cast<int>(pc_ - start_));
317 static_cast<int>(pc_ - start_));
348 static_cast<int>(pc_ - start_));
362 const byte* base = start_;
377 const byte* pc = start_ + it->name_offset;
447 // Decodes a single anonymous function starting at {start_}.
450 pc_ = start_;
477 uint32_t off(const byte* ptr) { return static_cast<uint32_t>(ptr - start_); }
482 if (!unibrow::Utf8::Validate(start_ + global->name_offset,
502 segment->source_offset = static_cast<uint32_t>(pc_ - start_);
506 uint32_t module_limit = static_cast<uint32_t>(limit_ - start_);
548 FunctionBody body = {menv, function->sig, start_,
549 start_ + function->code_start_offset,
550 start_ + function->code_end_offset};
574 if (offset > static_cast<uint32_t>(limit_ - start_)) {