Searched refs:os (Results 1 - 25 of 112) sorted by relevance

12345

/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
34 return os;
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
43 return os;
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
36 return os;
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) { argument
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
45 return os;
/art/runtime/
H A Doffsets.cc23 std::ostream& operator<<(std::ostream& os, const Offset& offs) { argument
24 return os << offs.Int32Value();
H A Dprimitive.cc33 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) { argument
36 os << kTypeNames[int_type];
38 os << "Type[" << int_type << "]";
40 return os;
H A Druntime_linux.cc32 void Dump(std::ostream& os) { argument
33 DumpNativeStack(os, GetTid(), "\t", true);
38 void Dump(std::ostream& os) { argument
43 os << info.sysname << " " << info.release << " (" << info.machine << ")";
134 void Dump(std::ostream& os) { argument
137 DumpRegister32(os, "eax", context->__ss.__eax);
138 DumpRegister32(os, "ebx", context->__ss.__ebx);
139 DumpRegister32(os, "ecx", context->__ss.__ecx);
140 DumpRegister32(os, "edx", context->__ss.__edx);
141 os << '\
191 DumpRegister32(std::ostream& os, const char* name, uint32_t value) argument
195 DumpX86Flags(std::ostream& os, uint32_t flags) argument
[all...]
H A Ddisassembler_arm.h31 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
32 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
34 void DumpArm(std::ostream& os, const uint8_t* instr);
37 size_t DumpThumb16(std::ostream& os, const uint8_t* instr);
38 size_t DumpThumb32(std::ostream& os, const uint8_t* instr_ptr);
40 void DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32);
41 void DumpCond(std::ostream& os, uint32_t cond);
H A Ddisassembler_x86.h29 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
30 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
32 size_t DumpInstruction(std::ostream& os, const uint8_t* instr);
H A Dinstruction_set.h32 std::ostream& operator<<(std::ostream& os, const InstructionSet& rhs);
H A Ddisassembler.h35 virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0;
37 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
H A Ddisassembler_mips.h30 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
31 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
H A Ddex_instruction.cc375 std::ostringstream os; local
378 os << StringPrintf("0x%04x", insn[i]) << " ";
381 os << " ";
383 return os.str();
387 std::ostringstream os; local
390 case k10x: os << opcode; break;
391 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break;
392 case k11n: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_11n(), VRegB_11n()); break;
393 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break;
394 case k10t: os << StringPrint
620 operator <<(std::ostream& os, const Instruction::Code& code) argument
[all...]
H A Dinvoke_type.h33 std::ostream& operator<<(std::ostream& os, const InvokeType& rhs);
H A Dreference_table.cc108 static void DumpSummaryLine(std::ostream& os, const mirror::Object* obj, size_t element_count,
112 os << " NULL reference (count=" << equiv << ")\n";
116 os << " cleared jweak (count=" << equiv << ")\n";
135 os << " " << msg << "\n";
142 void ReferenceTable::Dump(std::ostream& os) const {
143 os << name_ << " reference table dump:\n";
144 Dump(os, entries_);
147 void ReferenceTable::Dump(std::ostream& os, const Table& entries) { argument
149 os << " (empty)\n";
160 os << " Las
[all...]
H A Dsignal_catcher.cc31 #include "os.h"
41 static void DumpCmdLine(std::ostream& os) { argument
50 os << "Cmdline: " << current_cmd_line;
53 os << "Original command line: " << stashed_cmd_line;
56 os << "\n";
58 os << "Cmdline: " << GetCmdLine() << "\n";
130 std::ostringstream os; local
131 os << "\n"
134 DumpCmdLine(os);
136 os << "Buil
[all...]
H A Dreference_table.h48 void Dump(std::ostream& os) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
54 static void Dump(std::ostream& os, const Table& entries)
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
33 return os;
H A Dregisters_x86.h42 std::ostream& operator<<(std::ostream& os, const Register& rhs);
/art/runtime/gc/space/
H A Dspace.cc28 void Space::Dump(std::ostream& os) const {
29 os << GetName() << ":" << GetGcRetentionPolicy();
32 std::ostream& operator<<(std::ostream& os, const Space& space) { argument
33 space.Dump(os);
34 return os;
/art/compiler/utils/arm/
H A Dmanaged_register_arm.cc85 void ArmManagedRegister::Print(std::ostream& os) const {
87 os << "No Register";
89 os << "Core: " << static_cast<int>(AsCoreRegister());
91 os << "Pair: " << static_cast<int>(AsRegisterPairLow()) << ", "
94 os << "SRegister: " << static_cast<int>(AsSRegister());
96 os << "DRegister: " << static_cast<int>(AsDRegister());
98 os << "??: " << RegId();
102 std::ostream& operator<<(std::ostream& os, const ArmManagedRegister& reg) { argument
103 reg.Print(os);
104 return os;
107 operator <<(std::ostream& os, const RegisterPair& r) argument
[all...]
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc87 void MipsManagedRegister::Print(std::ostream& os) const {
89 os << "No Register";
91 os << "Core: " << static_cast<int>(AsCoreRegister());
93 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
95 os << "FRegister: " << static_cast<int>(AsFRegister());
97 os << "DRegister: " << static_cast<int>(AsDRegister());
99 os << "??: " << RegId();
103 std::ostream& operator<<(std::ostream& os, const MipsManagedRegister& reg) { argument
104 reg.Print(os);
105 return os;
108 operator <<(std::ostream& os, const RegisterPair& reg) argument
[all...]
/art/compiler/utils/x86/
H A Dmanaged_register_x86.cc65 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { argument
66 os << X86ManagedRegister::FromRegisterPair(reg);
67 return os;
106 void X86ManagedRegister::Print(std::ostream& os) const {
108 os << "No Register";
110 os << "XMM: " << static_cast<int>(AsXmmRegister());
112 os << "X87: " << static_cast<int>(AsX87Register());
114 os << "CPU: " << static_cast<int>(AsCpuRegister());
116 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
118 os << "
122 operator <<(std::ostream& os, const X86ManagedRegister& reg) argument
[all...]
/art/oatdump/
H A Doatdump.cc47 #include "os.h"
107 void Dump(std::ostream& os) { argument
110 os << "MAGIC:\n";
111 os << oat_header.GetMagic() << "\n\n";
113 os << "CHECKSUM:\n";
114 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
116 os << "INSTRUCTION SET:\n";
117 os << oat_header.GetInstructionSet() << "\n\n";
119 os << "DEX FILE COUNT:\n";
120 os << oat_heade
244 DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) argument
277 DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file, const DexFile::ClassDef& class_def) argument
304 DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def, uint32_t class_method_index, const OatFile::OatMethod& oat_method, const DexFile& dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
370 DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) argument
393 DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) argument
420 DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) argument
440 DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
473 DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) argument
501 DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset, bool suspend_point_mapping) argument
524 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument
554 DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags, uint32_t dex_pc) argument
605 DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) argument
616 DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
629 DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
665 ImageDumper(std::ostream* os, const std::string& image_filename, const std::string& host_prefix, gc::space::ImageSpace& image_space, const ImageHeader& image_header) argument
672 std::ostream& os = *os_; local
924 std::ostream& os = *state->os_; local
1368 std::ostream* os = &std::cout; local
[all...]
/art/runtime/base/
H A Dstl_util.h83 std::ostringstream os; local
84 os << "[";
86 os << v[i];
88 os << ", ";
91 os << "]";
92 return os.str();
/art/runtime/jdwp/
H A Djdwp_constants.h90 std::ostream& operator<<(std::ostream& os, const JdwpError& value);
102 std::ostream& operator<<(std::ostream& os, const JdwpClassStatus& value);
132 std::ostream& operator<<(std::ostream& os, const JdwpEventKind& value);
151 std::ostream& operator<<(std::ostream& os, const JdwpModKind& value);
160 std::ostream& operator<<(std::ostream& os, const JdwpInvokeOptions& value);
170 std::ostream& operator<<(std::ostream& os, const JdwpStepDepth& value);
179 std::ostream& operator<<(std::ostream& os, const JdwpStepSize& value);
189 std::ostream& operator<<(std::ostream& os, const JdwpSuspendPolicy& value);
198 std::ostream& operator<<(std::ostream& os, const JdwpSuspendStatus& value);
210 std::ostream& operator<<(std::ostream& os, cons
[all...]
/art/runtime/gc/collector/
H A Dgc_type.h40 std::ostream& operator<<(std::ostream& os, const GcType& policy);

Completed in 7768 milliseconds

12345