Searched refs:module_bytes_ (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-module.h | 175 : module_bytes_(module_bytes) {} in ModuleWireBytes() 177 : module_bytes_(start, static_cast<int>(end - start)) { in ModuleWireBytes() 197 uint32_t size = static_cast<uint32_t>(module_bytes_.length()); in BoundsCheck() 202 return module_bytes_.SubVector(function->code.offset(), in GetFunctionBytes() 206 Vector<const byte> module_bytes() const { return module_bytes_; } in module_bytes() 207 const byte* start() const { return module_bytes_.start(); } in start() 208 const byte* end() const { return module_bytes_.end(); } in end() 209 size_t length() const { return module_bytes_.length(); } in length() 212 Vector<const byte> module_bytes_;
|
D | wasm-module.cc | 64 module_bytes_.SubVector(ref.offset(), ref.end_offset())); in GetName() 78 module_bytes_.SubVector(ref.offset(), ref.end_offset())); in GetNameOrNull()
|
D | wasm-interpreter.cc | 3078 const ZoneVector<uint8_t> module_bytes_; member in v8::internal::wasm::WasmInterpreterInternals 3085 : module_bytes_(wire_bytes.start(), wire_bytes.end(), zone), in WasmInterpreterInternals() 3086 codemap_(module, module_bytes_.data(), zone), in WasmInterpreterInternals()
|