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

1234567

/art/runtime/arch/arm64/
H A Dregisters_arm64.cc38 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
40 os << kRegisterNames[rhs];
42 os << "XRegister[" << static_cast<int>(rhs) << "]";
44 return os;
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) { argument
49 os << kWRegisterNames[rhs];
51 os << "WRegister[" << static_cast<int>(rhs) << "]";
53 return os;
56 std::ostream& operator<<(std::ostream& os, const DRegister& rhs) { argument
58 os << "
65 operator <<(std::ostream& os, const SRegister& rhs) argument
[all...]
/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/arch/x86_64/
H A Dregisters_x86_64.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 FloatRegister& rhs) { argument
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
43 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.cc35 void Dump(std::ostream& os) { argument
36 DumpNativeStack(os, GetTid(), "\t");
41 void Dump(std::ostream& os) { argument
46 os << info.sysname << " " << info.release << " (" << info.machine << ")";
137 void Dump(std::ostream& os) { argument
140 DumpRegister32(os, "eax", context->__ss.__eax);
141 DumpRegister32(os, "ebx", context->__ss.__ebx);
142 DumpRegister32(os, "ecx", context->__ss.__ecx);
143 DumpRegister32(os, "edx", context->__ss.__edx);
144 os << '\
231 DumpRegister32(std::ostream& os, const char* name, uint32_t value) argument
235 DumpRegister64(std::ostream& os, const char* name, uint64_t value) argument
239 DumpX86Flags(std::ostream& os, uint32_t flags) argument
[all...]
H A Ddex_instruction.cc125 std::ostringstream os; local
128 os << StringPrintf("0x%04x", insn[i]) << " ";
131 os << " ";
133 return os.str();
137 std::ostringstream os; local
140 case k10x: os << opcode; break;
141 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break;
142 case k11n: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_11n(), VRegB_11n()); break;
143 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break;
144 case k10t: os << StringPrint
385 operator <<(std::ostream& os, const Instruction::Code& code) argument
[all...]
/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/compiler/utils/arm/
H A Dmanaged_register_arm.cc75 void ArmManagedRegister::Print(std::ostream& os) const {
77 os << "No Register";
79 os << "Core: " << static_cast<int>(AsCoreRegister());
81 os << "Pair: " << static_cast<int>(AsRegisterPairLow()) << ", "
84 os << "SRegister: " << static_cast<int>(AsSRegister());
86 os << "DRegister: " << static_cast<int>(AsDRegister());
88 os << "??: " << RegId();
92 std::ostream& operator<<(std::ostream& os, const ArmManagedRegister& reg) { argument
93 reg.Print(os);
94 return os;
97 operator <<(std::ostream& os, const RegisterPair& r) argument
[all...]
/art/runtime/gc/
H A Dgc_cause.cc42 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { argument
43 os << PrettyCause(gc_cause);
44 return os;
/art/compiler/utils/arm64/
H A Dmanaged_register_arm64.cc94 void Arm64ManagedRegister::Print(std::ostream& os) const {
96 os << "No Register";
98 os << "XCore: " << static_cast<int>(AsCoreRegister());
100 os << "WCore: " << static_cast<int>(AsWRegister());
102 os << "DRegister: " << static_cast<int>(AsDRegister());
104 os << "SRegister: " << static_cast<int>(AsSRegister());
106 os << "??: " << RegId();
110 std::ostream& operator<<(std::ostream& os, const Arm64ManagedRegister& reg) { argument
111 reg.Print(os);
112 return os;
[all...]
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc76 void MipsManagedRegister::Print(std::ostream& os) const {
78 os << "No Register";
80 os << "Core: " << static_cast<int>(AsCoreRegister());
82 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
84 os << "FRegister: " << static_cast<int>(AsFRegister());
86 os << "DRegister: " << static_cast<int>(AsDRegister());
88 os << "??: " << RegId();
92 std::ostream& operator<<(std::ostream& os, const MipsManagedRegister& reg) { argument
93 reg.Print(os);
94 return os;
97 operator <<(std::ostream& os, const RegisterPair& reg) argument
[all...]
/art/runtime/base/
H A Dhex_dump.h37 void Dump(std::ostream& os) const;
48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) { argument
49 rhs.Dump(os);
50 return os;
H A Dstl_util.h83 std::ostringstream os; local
84 os << "[";
86 os << v[i];
88 os << ", ";
91 os << "]";
92 return os.str();
/art/disassembler/
H A Ddisassembler_arm.h31 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
32 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
35 void DumpArm(std::ostream& os, const uint8_t* instr);
38 size_t DumpThumb16(std::ostream& os, const uint8_t* instr);
39 size_t DumpThumb32(std::ostream& os, const uint8_t* instr_ptr);
41 void DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32);
42 void DumpCond(std::ostream& os, uint32_t cond);
43 void DumpMemoryDomain(std::ostream& os, uint32_t domain);
H A Ddisassembler_x86.h30 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
31 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
34 size_t DumpInstruction(std::ostream& os, const uint8_t* instr);
H A Ddisassembler_arm64.cc34 size_t DisassemblerArm64::Dump(std::ostream& os, const uint8_t* begin) { argument
37 os << FormatInstructionPointer(begin)
42 void DisassemblerArm64::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) { argument
44 Dump(os, cur);
H A Ddisassembler_mips.h31 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
32 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
H A Ddisassembler_arm64.h34 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
35 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
/art/compiler/utils/x86/
H A Dmanaged_register_x86.cc53 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { argument
54 os << X86ManagedRegister::FromRegisterPair(reg);
55 return os;
94 void X86ManagedRegister::Print(std::ostream& os) const {
96 os << "No Register";
98 os << "XMM: " << AsXmmRegister();
100 os << "X87: " << AsX87Register();
102 os << "CPU: " << AsCpuRegister();
104 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
106 os << "
110 operator <<(std::ostream& os, const X86ManagedRegister& reg) argument
[all...]
/art/compiler/utils/x86_64/
H A Dmanaged_register_x86_64.cc52 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { argument
53 os << X86_64ManagedRegister::FromRegisterPair(reg);
54 return os;
93 void X86_64ManagedRegister::Print(std::ostream& os) const {
95 os << "No Register";
97 os << "XMM: " << static_cast<int>(AsXmmRegister().AsFloatRegister());
99 os << "X87: " << static_cast<int>(AsX87Register());
101 os << "CPU: " << static_cast<int>(AsCpuRegister().AsRegister());
103 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
105 os << "
109 operator <<(std::ostream& os, const X86_64ManagedRegister& reg) argument
[all...]
/art/oatdump/
H A Doatdump.cc49 #include "os.h"
156 bool Dump(std::ostream& os) { argument
160 os << "MAGIC:\n";
161 os << oat_header.GetMagic() << "\n\n";
163 os << "CHECKSUM:\n";
164 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
166 os << "INSTRUCTION SET:\n";
167 os << oat_header.GetInstructionSet() << "\n\n";
169 os << "INSTRUCTION SET FEATURES:\n";
170 os << oat_heade
354 DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) argument
401 DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file, const DexFile::ClassDef& class_def) argument
440 DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def, uint32_t class_method_index, const OatFile::OatClass& oat_class, const DexFile& dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
643 DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) argument
666 DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) argument
693 DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) argument
714 DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t num_regs, const uint8_t* reg_bitmap) argument
738 DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
765 DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) argument
793 DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset, bool suspend_point_mapping) argument
816 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument
846 DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, uint32_t dex_pc) argument
883 DumpDexCode(std::ostream& os, const DexFile& dex_file, const DexFile::CodeItem* code_item) argument
894 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
913 DumpCode(std::ostream& os, verifier::MethodVerifier* verifier, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, bool bad_input, size_t code_size) argument
958 ImageDumper(std::ostream* os, gc::space::ImageSpace& image_space, const ImageHeader& image_header, OatDumperOptions* oat_dumper_options) argument
966 std::ostream& os = *os_; local
1242 std::ostream& os = *state->os_; local
1693 std::ostream* os = &std::cout; local
[all...]
/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...]

Completed in 2916 milliseconds

1234567