Searched refs:OS (Results 101 - 125 of 1405) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp18 FileWriter::~FileWriter() { OS.flush(); }
24 OS.write(reinterpret_cast<const char *>(Bytes), Length);
31 OS.write(reinterpret_cast<const char *>(Bytes), Length);
35 OS.write(reinterpret_cast<const char *>(&U), sizeof(U));
40 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
45 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
50 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
55 OS.pwrite(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped),
60 OS.write(reinterpret_cast<const char *>(Data.data()), Data.size());
64 OS << St
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp25 void EmitOptRST(RecordKeeper &Records, raw_ostream &OS) { argument
54 OS << GroupName << '\n';
55 OS << std::string(GroupName.size(), '-') << '\n';
56 OS << '\n';
59 OS << ".. option:: ";
64 OS << Prefixes[0];
67 OS << R->getValueAsString("Name");
71 OS << '=';
72 OS.write_escaped(R->getValueAsString("MetaVarName"));
75 OS << "\
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp191 static void printModuleId(raw_ostream &OS, InputIter Begin, InputIter End, argument
195 OS << ".";
199 OS << Name;
201 OS << '"';
202 OS.write_escaped(Name);
203 OS << '"';
209 static void printModuleId(raw_ostream &OS, const Container &C) { argument
210 return printModuleId(OS, C.begin(), C.end());
419 void Module::print(raw_ostream &OS, unsigned Indent) const { argument
420 OS
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp90 void LineLocation::print(raw_ostream &OS) const {
91 OS << LineOffset;
93 OS << "." << Discriminator;
96 raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, argument
98 Loc.print(OS);
99 return OS;
106 /// Print the sample record to the stream \p OS indented by \p Indent.
107 void SampleRecord::print(raw_ostream &OS, unsigned Indent) const { argument
108 OS << NumSamples;
110 OS << ", call
121 operator <<(raw_ostream &OS, const SampleRecord &Sample) argument
128 print(raw_ostream &OS, unsigned Indent) const argument
165 operator <<(raw_ostream &OS, const FunctionSamples &FS) argument
215 write(raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp426 static void printCFIRegister(unsigned DwarfReg, raw_ostream &OS, argument
429 OS << "%dwarfreg." << DwarfReg;
434 OS << printReg(*Reg, TRI);
436 OS << "<badreg>";
439 static void printIRBlockReference(raw_ostream &OS, const BasicBlock &BB, argument
441 OS << "%ir-block.";
443 printLLVMNameWithoutPrefix(OS, BB.getName());
457 MachineOperand::printIRSlotNumber(OS, *Slot);
459 OS << "<unknown>";
462 static void printSyncScope(raw_ostream &OS, cons argument
490 printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, const MachineFrameInfo *MFI) argument
504 printSubRegIdx(raw_ostream &OS, uint64_t Index, const TargetRegisterInfo *TRI) argument
513 printTargetFlags(raw_ostream &OS, const MachineOperand &Op) argument
565 printSymbol(raw_ostream &OS, MCSymbol &Sym) argument
569 printStackObjectReference(raw_ostream &OS, unsigned FrameIndex, bool IsFixed, StringRef Name) argument
582 printOperandOffset(raw_ostream &OS, int64_t Offset) argument
592 printIRSlotNumber(raw_ostream &OS, int Slot) argument
599 printCFI(raw_ostream &OS, const MCCFIInstruction &CFI, const TargetRegisterInfo *TRI) argument
706 print(raw_ostream &OS, const TargetRegisterInfo *TRI, const TargetIntrinsicInfo *IntrinsicInfo) const argument
711 print(raw_ostream &OS, LLT TypeToPrint, const TargetRegisterInfo *TRI, const TargetIntrinsicInfo *IntrinsicInfo) const argument
722 print(raw_ostream &OS, ModuleSlotTracker &MST, LLT TypeToPrint, Optional<unsigned> OpIdx, bool PrintDef, bool IsStandalone, bool ShouldPrintRegisterTies, unsigned TiedOperandIdx, const TargetRegisterInfo *TRI, const TargetIntrinsicInfo *IntrinsicInfo) const argument
1059 print(raw_ostream &OS, ModuleSlotTracker &MST, SmallVectorImpl<StringRef> &SSNs, const LLVMContext &Context, const MachineFrameInfo *MFI, const TargetInstrInfo *TII) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp119 static void tryChangeColor(raw_ostream &OS, unsigned Cycles, argument
121 if (!OS.has_colors())
126 OS.resetColor();
129 OS.changeColor(Color, /* bold */ true, /* BG */ false);
132 void TimelineView::printWaitTimeEntry(formatted_raw_ostream &OS, argument
140 OS << SourceIndex << '.';
142 OS.PadToColumn(7);
151 OS << Executions;
152 OS.PadToColumn(13);
156 tryChangeColor(OS, Entr
227 printTimelineViewEntry(formatted_raw_ostream &OS, const TimelineViewEntry &Entry, unsigned Iteration, unsigned SourceIndex) const argument
266 printTimelineHeader(formatted_raw_ostream &OS, unsigned Cycles) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.h30 void closeViewFile(OwnedStream OS) override;
40 void emitFileSummary(raw_ostream &OS, StringRef SF,
49 void renderViewHeader(raw_ostream &OS) override;
51 void renderViewFooter(raw_ostream &OS) override;
53 void renderSourceName(raw_ostream &OS, bool WholeFile) override;
55 void renderLinePrefix(raw_ostream &OS, unsigned ViewDepth) override;
57 void renderLineSuffix(raw_ostream &OS, unsigned ViewDepth) override;
59 void renderViewDivider(raw_ostream &OS, unsigned ViewDepth) override;
61 void renderLine(raw_ostream &OS, LineRef L, const LineCoverageStats &LCS,
64 void renderExpansionSite(raw_ostream &OS, LineRe
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeCompilandSymbol.cpp26 void NativeCompilandSymbol::dump(raw_ostream &OS, int Indent, argument
29 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
31 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
34 dumpSymbolField(OS, "libraryName", getLibraryName(), Indent);
35 dumpSymbolField(OS, "name", getName(), Indent);
36 dumpSymbolField(OS, "editAndContinueEnabled", isEditAndContinueEnabled(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstPrinterCommon.h26 void printCondCode(const MCInst *MI, unsigned Op, raw_ostream &OS);
27 void printSSEAVXCC(const MCInst *MI, unsigned Op, raw_ostream &OS);
28 void printVPCOMMnemonic(const MCInst *MI, raw_ostream &OS);
29 void printVPCMPMnemonic(const MCInst *MI, raw_ostream &OS);
30 void printCMPMnemonic(const MCInst *MI, bool IsVCmp, raw_ostream &OS);
36 void printVKPair(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFEmitter.h31 void EmitDebugAbbrev(raw_ostream &OS, const Data &DI);
32 void EmitDebugStr(raw_ostream &OS, const Data &DI);
34 void EmitDebugAranges(raw_ostream &OS, const Data &DI);
35 void EmitPubSection(raw_ostream &OS, const PubSection &Sect,
37 void EmitDebugInfo(raw_ostream &OS, const Data &DI);
38 void EmitDebugLine(raw_ostream &OS, const Data &DI);
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBTableGen.cpp45 static bool LLDBTableGenMain(raw_ostream &OS, RecordKeeper &Records) { argument
48 OS << Records; // No argument, dump all contents
51 EmitJSON(Records, OS);
54 EmitOptionDefs(Records, OS);
57 EmitPropertyDefs(Records, OS);
60 EmitPropertyEnumDefs(Records, OS);
H A DLLDBTableGenBackends.h32 void EmitOptionDefs(RecordKeeper &RK, raw_ostream &OS);
33 void EmitPropertyDefs(RecordKeeper &RK, raw_ostream &OS);
34 void EmitPropertyEnumDefs(RecordKeeper &RK, raw_ostream &OS);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DMemoryRegionInfo.cpp13 llvm::raw_ostream &lldb_private::operator<<(llvm::raw_ostream &OS, argument
15 return OS << llvm::formatv("MemoryRegionInfo([{0}, {1}), {2:r}{3:w}{4:x}, "
25 const MemoryRegionInfo::OptionalBool &B, raw_ostream &OS,
31 OS << (Empty ? "no" : "-");
34 OS << (Empty ? "yes" : Options);
37 OS << (Empty ? "don't know" : "?");
24 format( const MemoryRegionInfo::OptionalBool &B, raw_ostream &OS, StringRef Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
H A DRPCError.cpp33 void ConnectionClosed::log(raw_ostream &OS) const {
34 OS << "RPC connection already closed";
41 void ResponseAbandoned::log(raw_ostream &OS) const {
42 OS << "RPC response abandoned";
52 void CouldNotNegotiate::log(raw_ostream &OS) const {
53 OS << "Could not negotiate RPC function " << Signature;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopAccessAnalysisPrinter.cpp20 OS << "Loop access info in function '" << F.getName() << "':\n";
21 OS.indent(2) << L.getHeader()->getName() << ":\n";
22 LAI.print(OS, 4);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h46 raw_ostream &OS = W.startLine(); local
47 OS << " #" << ++LocationIndex << ": ";
50 OS << "Register R#" << Loc.getDwarfRegNum();
53 OS << "Direct R#" << Loc.getDwarfRegNum() << " + " << Loc.getOffset();
56 OS << "Indirect [R#" << Loc.getDwarfRegNum() << " + " << Loc.getOffset()
60 OS << "Constant " << Loc.getSmallConstant();
63 OS << "ConstantIndex #" << Loc.getConstantIndex() << " ("
67 OS << ", size: " << Loc.getSizeInBytes() << "\n";
70 raw_ostream &OS = W.startLine(); local
71 OS << " " <<
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-converter.h31 void exportAsYAML(const Trace &Records, raw_ostream &OS);
32 void exportAsRAWv1(const Trace &Records, raw_ostream &OS);
37 void exportAsChromeTraceEventFormat(const Trace &Records, raw_ostream &OS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DYAMLRemarkSerializer.h37 YAMLRemarkSerializer(raw_ostream &OS, SerializerMode Mode,
42 metaSerializer(raw_ostream &OS,
50 YAMLRemarkSerializer(Format SerializerFormat, raw_ostream &OS,
58 YAMLMetaSerializer(raw_ostream &OS, Optional<StringRef> ExternalFilename) argument
59 : MetaSerializer(OS), ExternalFilename(ExternalFilename) {}
72 YAMLStrTabRemarkSerializer(raw_ostream &OS, SerializerMode Mode) argument
73 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode) {
77 YAMLStrTabRemarkSerializer(raw_ostream &OS, SerializerMode Mode, argument
79 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode, std::move(StrTab)) {}
85 metaSerializer(raw_ostream &OS,
97 YAMLStrTabMetaSerializer(raw_ostream &OS, Optional<StringRef> ExternalFilename, const StringTable &StrTab) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp300 raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) { argument
301 OS << "<MCFixup" << " Offset:" << AF.getOffset()
304 return OS;
311 raw_ostream &OS = errs(); local
313 OS << "<";
315 case MCFragment::FT_Align: OS << "MCAlignFragment"; break;
316 case MCFragment::FT_Data: OS << "MCDataFragment"; break;
318 OS << "MCCompactEncodedInstFragment"; break;
319 case MCFragment::FT_Fill: OS << "MCFillFragment"; break;
320 case MCFragment::FT_Relaxable: OS << "MCRelaxableFragmen
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DMemory.cpp35 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { argument
39 return OS << (PF & Memory::MF_READ ? 'R' : '-')
44 raw_ostream &operator<<(raw_ostream &OS, const MemoryBlock &MB) { argument
45 return OS << "[ " << MB.base() << " .. "
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTDumper.h21 raw_ostream &OS; member in class:clang::ASTDumper
26 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits, argument
28 : ASTDumper(OS, Traits, SM, SM && SM->getDiagnostics().getShowColors()) {}
30 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits, argument
32 : ASTDumper(OS, Traits, SM, ShowColors, LangOptions()) {}
33 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits, argument
36 : NodeDumper(OS, ShowColors, SM, PrintPolicy, Traits), OS(OS),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp23 void NVPTXFloatMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const { argument
33 OS << "0x";
38 OS << "0f";
43 OS << "0d";
50 OS << format_hex_no_prefix(API.getZExtValue(), NumHex, /*Upper=*/true);
59 void NVPTXGenericMCSymbolRefExpr::printImpl(raw_ostream &OS, argument
61 OS << "generic(";
62 SymExpr->print(OS, MAI);
63 OS << ")";
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeWriterPass.h51 raw_ostream &OS; member in class:llvm::BitcodeWriterPass
64 explicit BitcodeWriterPass(raw_ostream &OS, argument
68 : OS(OS), ShouldPreserveUseListOrder(ShouldPreserveUseListOrder),
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h42 /// Print the value to the stream \p OS.
43 void print(raw_ostream &OS) const;
49 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { argument
50 Label.print(OS);
51 return OS;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DTableGenBackend.h23 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);

Completed in 233 milliseconds

1234567891011>>