Lines Matching refs:vios

248 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios) const {  in Dump()
250 ScopedIndentation indent1(vios); in Dump()
254 vios->Stream() << "v" << i << ":" << reg << " "; in Dump()
257 vios->Stream() << "\n"; in Dump()
261 void CodeInfo::Dump(VariableIndentationOutputStream* vios, in Dump() argument
265 vios->Stream() << "CodeInfo " in Dump()
271 ScopedIndentation indent1(vios); in Dump()
272 ForEachBitTableField([this, &vios, verbose](size_t, auto member_pointer) { in Dump()
275 vios->Stream() << table.GetName() << " BitSize=" << table.DataBitSize(); in Dump()
276 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump()
279 vios->Stream() << (c != 0 ? " " : ""); in Dump()
280 vios->Stream() << column_names[c] << "=" << table.NumColumnBits(c); in Dump()
282 vios->Stream() << "}\n"; in Dump()
284 ScopedIndentation indent1(vios); in Dump()
286 vios->Stream() << "[" << std::right << std::setw(3) << r << "]={"; in Dump()
288 vios->Stream() << (c != 0 ? " " : ""); in Dump()
293 vios->Stream() << bits.LoadBit(e - b - 1); in Dump()
296 vios->Stream() << std::right << std::setw(8) << static_cast<int32_t>(table.Get(r, c)); in Dump()
299 vios->Stream() << "}\n"; in Dump()
308 stack_map.Dump(vios, *this, code_offset, instruction_set); in Dump()
313 void StackMap::Dump(VariableIndentationOutputStream* vios, in Dump() argument
318 vios->Stream() in Dump()
328 vios->Stream() << stack_mask.LoadBit(e - i - 1); in Dump()
330 vios->Stream() << ")\n"; in Dump()
331 code_info.GetDexRegisterMapOf(*this).Dump(vios); in Dump()
333 inline_info.Dump(vios, code_info, *this); in Dump()
337 void InlineInfo::Dump(VariableIndentationOutputStream* vios, in Dump() argument
341 vios->Stream() in Dump()
348 vios->Stream() << ", method=" << GetArtMethod()->PrettyMethod(); in Dump()
350 vios->Stream() in Dump()
354 vios->Stream() << ")\n"; in Dump()
355 code_info.GetInlineDexRegisterMapOf(stack_map, *this).Dump(vios); in Dump()