Lines Matching defs:start
35 const WasmModule* module, const byte* start,
40 zone, module, enabled, &no_features, nullptr, start, end, 0);
54 BytecodeIterator::BytecodeIterator(const byte* start, const byte* end,
56 : Decoder(start, end) {
58 if (DecodeLocalDecls(WasmFeatures::All(), decls, nullptr, start, end)) {
100 void PrintRawWasmCode(const byte* start, const byte* end) {
102 PrintRawWasmCode(&allocator, FunctionBody{nullptr, 0, start, end}, nullptr,
145 body.start, body.end);
158 BytecodeIterator i(body.start, body.end, &decls);
159 if (body.start != i.pc() && print_locals == kPrintLocals) {
179 for (const byte* locals = body.start; locals < i.pc(); locals++) {
180 os << (locals == body.start ? "0x" : " 0x") << AsHex(*locals, 2) << ",";
320 const byte* start, const byte* end) {
323 zone, nullptr, no_features, &no_features, nullptr, start, end, 0);
325 &decoder, start, num_locals, zone);