/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulationStateARM.cpp | 218 Stream &out_stream) { in CompareState() argument 224 out_stream.Printf("r%d: 0x%x != 0x%x\n", i, m_gpr[i], in CompareState() 232 out_stream.Printf("s%d: 0x%x != 0x%x\n", i, m_vfp_regs.s_regs[i], in CompareState() 240 out_stream.Printf("d%d: 0x%" PRIx64 " != 0x%" PRIx64 "\n", i + 16, in CompareState() 248 out_stream.Printf("memory does not match\n"); in CompareState() 249 out_stream.Printf("got memory:\n"); in CompareState() 251 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState() 252 out_stream.Printf("expected memory:\n"); in CompareState() 254 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
|
H A D | EmulationStateARM.h | 38 lldb_private::Stream &out_stream);
|
H A D | EmulateInstructionARM.h | 135 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
|
H A D | EmulateInstructionARM.cpp | 14349 bool EmulateInstructionARM::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument 14352 out_stream.Printf("TestEmulation: Missing test data.\n"); in TestEmulation() 14365 out_stream.Printf("TestEmulation: Error reading opcode from test file.\n"); in TestEmulation() 14381 out_stream.Printf("TestEmulation: Invalid arch.\n"); in TestEmulation() 14391 out_stream.Printf("TestEmulation: Failed to find 'before' state.\n"); in TestEmulation() 14397 out_stream.Printf("TestEmulation: Failed loading 'before' state.\n"); in TestEmulation() 14404 out_stream.Printf("TestEmulation: Failed to find 'after' state.\n"); in TestEmulation() 14410 out_stream.Printf("TestEmulation: Failed loading 'after' state.\n"); in TestEmulation() 14422 out_stream.Printf("TestEmulation: EvaluateInstruction() failed.\n"); in TestEmulation() 14426 success = before_state.CompareState(after_state, out_stream); in TestEmulation() [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_io.cpp | 115 void __kmp_vprintf(enum kmp_io out_stream, char const *format, va_list ap) { in __kmp_redirect_output() 120 if (!__kmp_stderr && out_stream == kmp_err) { in __kmp_redirect_output() 123 if (!__kmp_stdout && out_stream == kmp_out) { in __kmp_redirect_output() 127 auto stream = ((out_stream == kmp_out) ? __kmp_stdout : __kmp_stderr); in __kmp_redirect_output() 134 __kmp_vprintf(enum kmp_io out_stream,char const * format,va_list ap) __kmp_vprintf() argument
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Disassembler.cpp | 702 OptionValueSP Instruction::ReadArray(FILE *in_file, Stream &out_stream, in ReadArray() argument 712 out_stream.Printf( in ReadArray() 761 OptionValueSP Instruction::ReadDictionary(FILE *in_file, Stream &out_stream) { in ReadDictionary() argument 772 out_stream.Printf( in ReadDictionary() 807 out_stream.Printf("Instruction::ReadDictionary: Failure executing " in ReadDictionary() 822 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary() 830 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary() 863 bool Instruction::TestEmulation(Stream &out_stream, const char *file_name) { in TestEmulation() argument 865 out_stream.Printf("Instruction::TestEmulation: Missing file_name."); in TestEmulation() 870 out_stream.Printf( in TestEmulation() [all …]
|
H A D | FormatEntity.cpp | 1118 static void PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument 1124 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs() 1126 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs() 1127 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs() 1130 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs() 1133 out_stream.PutCString(close_paren); in PrettyPrintFunctionNameWithArgs() 1135 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs() 1138 static void FormatInlinedBlock(Stream &out_stream, Block *block) { in FormatInlinedBlock() argument 1145 out_stream.PutCString(" [inlined] "); in FormatInlinedBlock() 1146 inline_info->GetName().Dump(&out_stream); in FormatInlinedBlock() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusLanguage.cpp | 180 static bool PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument 191 out_stream.PutCString(return_type); in PrettyPrintFunctionNameWithArgs() 192 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs() 195 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs() 196 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs() 198 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs() 200 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs() 204 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs() 205 out_stream.PutCString(qualifiers); in PrettyPrintFunctionNameWithArgs()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/ |
H A D | EmulateInstructionPPC64.h | 60 bool TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBInstruction.cpp | 295 StreamFile out_stream(out_sp); in Print() local 298 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/ |
H A D | EmulateInstructionLoongArch.h | 55 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
|
H A D | EmulateInstructionLoongArch.cpp | 190 Stream &out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.h | 65 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
|
H A D | EmulateInstructionRISCV.cpp | 1766 bool EmulateInstructionRISCV::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Disassembler.h | 181 lldb::OptionValueSP ReadArray(FILE *in_file, Stream &out_stream, 184 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream &out_stream);
|
H A D | FormatEntity.h | 240 /// name and it's pretty-printed value representation to 'out_stream' 246 void PrettyPrintFunctionArguments(Stream &out_stream, VariableList const &args,
|
H A D | EmulateInstruction.h | 380 virtual bool TestEmulation(Stream &out_stream, ArchSpec &arch,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
H A D | EmulateInstructionARM64.h | 63 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectCommands.cpp | 809 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete() local 810 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete() 2447 Stream &out_stream = result.GetOutputStream(); in DoExecute() local 2449 out_stream << "Deleted command:"; in DoExecute() 2451 out_stream << ' '; in DoExecute() 2452 out_stream << command[idx].c_str(); in DoExecute() 2454 out_stream << '\n'; in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/ |
H A D | EmulateInstructionMIPS64.h | 70 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/ |
H A D | iterator | 40 ostream_type* out_stream; // exposition only
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/ |
H A D | EmulateInstructionMIPS.h | 78 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionParser.cpp | 1277 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local 1279 main_file_buffer.write(out_stream); in RewriteExpression() 1280 out_stream.flush(); in RewriteExpression()
|