Lines Matching defs:body
5 #include "src/wasm/function-body-decoder.h"
13 #include "src/wasm/function-body-decoder-impl.h"
68 const FunctionBody& body) {
71 &zone, module, enabled, detected, body);
132 bool PrintRawWasmCode(AccountingAllocator* allocator, const FunctionBody& body,
135 return PrintRawWasmCode(allocator, body, module, print_locals, os);
138 bool PrintRawWasmCode(AccountingAllocator* allocator, const FunctionBody& body,
144 &zone, module, WasmFeatures::All(), &unused_detected_features, body.sig,
145 body.start, body.end);
150 if (body.sig) {
151 os << "// signature: " << *body.sig << std::endl;
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) << ",";
187 os << "// body:" << std::endl;