Lines Matching defs:out
201 static void DumpBuffer(std::ostream& os, std::ostringstream& out) {
202 os << out.str() << std::endl;
203 out.str("");
208 static void PrintRelocInfo(std::ostringstream& out, Isolate* isolate,
216 padding -= std::min(padding, static_cast<int>(out.tellp()));
219 DumpBuffer(os, out);
221 std::fill_n(std::ostream_iterator<char>(out), padding, ' ');
225 out << " ;; debug: deopt position, script offset '"
228 out << " ;; debug: deopt position, inlining id '"
232 out << " ;; debug: deopt reason '" << DeoptimizeReasonToString(reason)
235 out << " ;; debug: deopt index " << static_cast<int>(relocinfo->data());
238 out << " ;; debug: deopt node id "
249 out << " ;; " << (is_compressed ? "(compressed) " : "")
257 out << " ;; external reference (" << reference_name << ")";
259 out << " ;; code:";
264 out << " Builtin::" << Builtins::name(code.builtin_id());
266 out << " " << CodeKindToString(kind);
274 out << " ;; wasm stub: " << runtime_stub_name;
281 out << " ;; " << Deoptimizer::MessageFor(type)
284 out << " ;; " << RelocInfo::RelocModeName(rmode);
287 out << " ;; " << RelocInfo::RelocModeName(rmode);
297 std::ostringstream out;
382 out << " " << comments[i];
383 DumpBuffer(os, out);
389 out << "\033[33;1m";
391 out << static_cast<void*>(prev_pc) << " " << std::setw(4) << std::hex
395 out << decode_buffer.begin();
412 PrintRelocInfo(out, isolate, ref_encoder, os, code, &relocinfo,
434 PrintRelocInfo(out, isolate, ref_encoder, os, code,
444 out << "\033[m";
447 DumpBuffer(os, out);
453 out << " " << cit.GetComment();
454 DumpBuffer(os, out);