/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
D | PDBExtras.cpp | 24 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument 27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<() 28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<() 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<() 30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<() 31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<() 32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<() 33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<() 34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<() 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
D | MicrosoftDemangleNodes.cpp | 24 OS << Desc; \ 28 static void outputSpaceIfNecessary(OutputStream &OS) { in outputSpaceIfNecessary() argument 29 if (OS.empty()) in outputSpaceIfNecessary() 32 char C = OS.back(); in outputSpaceIfNecessary() 34 OS << " "; in outputSpaceIfNecessary() 37 static void outputSingleQualifier(OutputStream &OS, Qualifiers Q) { in outputSingleQualifier() argument 40 OS << "const"; in outputSingleQualifier() 43 OS << "volatile"; in outputSingleQualifier() 46 OS << "__restrict"; in outputSingleQualifier() 53 static bool outputQualifierIfPresent(OutputStream &OS, Qualifiers Q, in outputQualifierIfPresent() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | MCAsmLexer.cpp | 39 void AsmToken::dump(raw_ostream &OS) const { in dump() 42 OS << "error"; in dump() 45 OS << "identifier: " << getString(); in dump() 48 OS << "int: " << getString(); in dump() 51 OS << "real: " << getString(); in dump() 54 OS << "string: " << getString(); in dump() 57 case AsmToken::Amp: OS << "Amp"; break; in dump() 58 case AsmToken::AmpAmp: OS << "AmpAmp"; break; in dump() 59 case AsmToken::At: OS << "At"; break; in dump() 60 case AsmToken::BackSlash: OS << "BackSlash"; break; in dump() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSectionELF.cpp | 30 static void printName(raw_ostream &OS, StringRef Name) { in printName() argument 34 OS << Name; in printName() 37 OS << '"'; in printName() 40 OS << "\\\""; in printName() 42 OS << *B; in printName() 44 OS << "\\\\"; in printName() 46 OS << B[0] << B[1]; // Quoted character in printName() 50 OS << '"'; in printName() 54 raw_ostream &OS, in PrintSwitchToSection() argument 57 OS << '\t' << getSectionName(); in PrintSwitchToSection() [all …]
|
D | MCAsmStreamer.cpp | 46 formatted_raw_ostream &OS; member in __anonf6b842cd0111::MCAsmStreamer 69 : MCStreamer(Context), OSOwner(std::move(os)), OS(*OSOwner), in MCAsmStreamer() 92 OS << '\n'; in EmitEOL() 370 OS << '\n'; in EmitCommentsAndEOL() 380 OS.PadToColumn(MAI->getCommentColumn()); in EmitCommentsAndEOL() 382 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n'; in EmitCommentsAndEOL() 397 OS << '\t'; in emitRawComment() 398 OS << MAI->getCommentString() << T; in emitRawComment() 442 OS << Comments; in emitExplicitComments() 450 TS->changeSection(getCurrentSectionOnly(), Section, Subsection, OS); in ChangeSection() [all …]
|
D | MCSectionWasm.cpp | 24 static void printName(raw_ostream &OS, StringRef Name) { in printName() argument 28 OS << Name; in printName() 31 OS << '"'; in printName() 34 OS << "\\\""; in printName() 36 OS << *B; in printName() 38 OS << "\\\\"; in printName() 40 OS << B[0] << B[1]; // Quoted character in printName() 44 OS << '"'; in printName() 48 raw_ostream &OS, in PrintSwitchToSection() argument 52 OS << '\t' << getSectionName(); in PrintSwitchToSection() [all …]
|
D | MCFragment.cpp | 300 raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) { in operator <<() argument 301 OS << "<MCFixup" << " Offset:" << AF.getOffset() in operator <<() 304 return OS; in operator <<() 311 raw_ostream &OS = errs(); in dump() local 313 OS << "<"; in dump() 315 case MCFragment::FT_Align: OS << "MCAlignFragment"; break; in dump() 316 case MCFragment::FT_Data: OS << "MCDataFragment"; break; in dump() 318 OS << "MCCompactEncodedInstFragment"; break; in dump() 319 case MCFragment::FT_Fill: OS << "MCFillFragment"; break; in dump() 320 case MCFragment::FT_Relaxable: OS << "MCRelaxableFragment"; break; in dump() [all …]
|
D | MCSectionCOFF.cpp | 38 raw_ostream &OS, in PrintSwitchToSection() argument 42 OS << '\t' << getSectionName() << '\n'; in PrintSwitchToSection() 46 OS << "\t.section\t" << getSectionName() << ",\""; in PrintSwitchToSection() 48 OS << 'd'; in PrintSwitchToSection() 50 OS << 'b'; in PrintSwitchToSection() 52 OS << 'x'; in PrintSwitchToSection() 54 OS << 'w'; in PrintSwitchToSection() 56 OS << 'r'; in PrintSwitchToSection() 58 OS << 'y'; in PrintSwitchToSection() 60 OS << 'n'; in PrintSwitchToSection() [all …]
|
D | MCInst.cpp | 20 void MCOperand::print(raw_ostream &OS) const { in print() 21 OS << "<MCOperand "; in print() 23 OS << "INVALID"; in print() 25 OS << "Reg:" << getReg(); in print() 27 OS << "Imm:" << getImm(); in print() 29 OS << "FPImm:" << getFPImm(); in print() 31 OS << "Expr:(" << *getExpr() << ")"; in print() 33 OS << "Inst:(" << *getInst() << ")"; in print() 35 OS << "UNDEFINED"; in print() 36 OS << ">"; in print() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | WasmEmitter.cpp | 30 bool writeWasm(raw_ostream &OS); 33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec, 36 void writeInitExpr(raw_ostream &OS, const wasm::WasmInitExpr &InitExpr); 38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section); 39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section); 40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section); 41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section); 42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section); 43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section); 44 void writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section); [all …]
|
D | DWARFEmitter.cpp | 38 static void writeInteger(T Integer, raw_ostream &OS, bool IsLittleEndian) { in writeInteger() argument 41 OS.write(reinterpret_cast<char *>(&Integer), sizeof(T)); in writeInteger() 45 raw_ostream &OS, bool IsLittleEndian) { in writeVariableSizedInteger() argument 47 writeInteger((uint64_t)Integer, OS, IsLittleEndian); in writeVariableSizedInteger() 49 writeInteger((uint32_t)Integer, OS, IsLittleEndian); in writeVariableSizedInteger() 51 writeInteger((uint16_t)Integer, OS, IsLittleEndian); in writeVariableSizedInteger() 53 writeInteger((uint8_t)Integer, OS, IsLittleEndian); in writeVariableSizedInteger() 58 static void ZeroFillBytes(raw_ostream &OS, size_t Size) { in ZeroFillBytes() argument 61 OS.write(reinterpret_cast<char *>(FillData.data()), Size); in ZeroFillBytes() 65 raw_ostream &OS, bool IsLittleEndian) { in writeInitialLength() argument [all …]
|
D | MachOEmitter.cpp | 36 void writeMachO(raw_ostream &OS); 39 void writeHeader(raw_ostream &OS); 40 void writeLoadCommands(raw_ostream &OS); 41 void writeSectionData(raw_ostream &OS); 42 void writeLinkEditData(raw_ostream &OS); 44 void writeBindOpcodes(raw_ostream &OS, 47 void writeRebaseOpcodes(raw_ostream &OS); 48 void writeBasicBindOpcodes(raw_ostream &OS); 49 void writeWeakBindOpcodes(raw_ostream &OS); 50 void writeLazyBindOpcodes(raw_ostream &OS); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/MCTargetDesc/ |
D | LanaiInstPrinter.cpp | 34 void LanaiInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { in printRegName() argument 35 OS << StringRef(getRegisterName(RegNo)).lower(); in printRegName() 38 bool LanaiInstPrinter::printInst(const MCInst *MI, raw_ostream &OS, in printInst() argument 41 OS << "\t" << Alias << " "; in printInst() 42 printOperand(MI, OpNo0, OS); in printInst() 43 OS << ", "; in printInst() 44 printOperand(MI, OpNo1, OS); in printInst() 72 raw_ostream &OS, in printMemoryLoadIncrement() argument 76 OS << "\t" << Opcode << "\t[" << decIncOperator(MI) << "%" in printMemoryLoadIncrement() 82 OS << "\t" << Opcode << "\t[%" in printMemoryLoadIncrement() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Twine.cpp | 33 raw_svector_ostream OS(Out); in toVector() local 34 print(OS); in toVector() 57 void Twine::printOneChild(raw_ostream &OS, Child Ptr, in printOneChild() argument 63 Ptr.twine->print(OS); in printOneChild() 66 OS << Ptr.cString; in printOneChild() 69 OS << *Ptr.stdString; in printOneChild() 72 OS << *Ptr.stringRef; in printOneChild() 75 OS << *Ptr.smallString; in printOneChild() 78 OS << *Ptr.formatvObject; in printOneChild() 81 OS << Ptr.character; in printOneChild() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Twine.cpp | 33 raw_svector_ostream OS(Out); in toVector() local 34 print(OS); in toVector() 57 void Twine::printOneChild(raw_ostream &OS, Child Ptr, in printOneChild() argument 63 Ptr.twine->print(OS); in printOneChild() 66 OS << Ptr.cString; in printOneChild() 69 OS << *Ptr.stdString; in printOneChild() 72 OS << *Ptr.stringRef; in printOneChild() 75 OS << *Ptr.smallString; in printOneChild() 78 OS << *Ptr.formatvObject; in printOneChild() 81 OS << Ptr.character; in printOneChild() [all …]
|
D | WithColor.cpp | 21 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, bool DisableColors) in WithColor() argument 22 : OS(OS), DisableColors(DisableColors) { in WithColor() 27 OS.changeColor(raw_ostream::YELLOW); in WithColor() 30 OS.changeColor(raw_ostream::GREEN); in WithColor() 33 OS.changeColor(raw_ostream::BLUE); in WithColor() 36 OS.changeColor(raw_ostream::CYAN); in WithColor() 39 OS.changeColor(raw_ostream::MAGENTA); in WithColor() 42 OS.changeColor(raw_ostream::RED); in WithColor() 45 OS.changeColor(raw_ostream::RED, true); in WithColor() 48 OS.changeColor(raw_ostream::MAGENTA, true); in WithColor() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineOperand.cpp | 426 static void printCFIRegister(unsigned DwarfReg, raw_ostream &OS, in printCFIRegister() argument 429 OS << "%dwarfreg." << DwarfReg; in printCFIRegister() 434 OS << printReg(*Reg, TRI); in printCFIRegister() 436 OS << "<badreg>"; in printCFIRegister() 439 static void printIRBlockReference(raw_ostream &OS, const BasicBlock &BB, in printIRBlockReference() argument 441 OS << "%ir-block."; in printIRBlockReference() 443 printLLVMNameWithoutPrefix(OS, BB.getName()); in printIRBlockReference() 457 MachineOperand::printIRSlotNumber(OS, *Slot); in printIRBlockReference() 459 OS << "<unknown>"; in printIRBlockReference() 462 static void printSyncScope(raw_ostream &OS, const LLVMContext &Context, in printSyncScope() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGDumper.cpp | 465 return Printable([&Node](raw_ostream &OS) { in PrintNodeId() argument 467 OS << 't' << Node.PersistentId; in PrintNodeId() 469 OS << (const void*)&Node; in PrintNodeId() 475 static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, in printMemOperand() argument 483 MMO.print(OS, MST, SSNs, Ctx, MFI, TII); in printMemOperand() 486 static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, in printMemOperand() argument 490 return printMemOperand(OS, MMO, MF, MF->getFunction().getParent(), in printMemOperand() 495 return printMemOperand(OS, MMO, /*MF=*/nullptr, /*M=*/nullptr, in printMemOperand() 509 void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const { in print_types() argument 511 if (i) OS << ","; in print_types() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | SampleProf.cpp | 90 void LineLocation::print(raw_ostream &OS) const { in print() 91 OS << LineOffset; in print() 93 OS << "." << Discriminator; in print() 96 raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, in operator <<() argument 98 Loc.print(OS); in operator <<() 99 return OS; in operator <<() 107 void SampleRecord::print(raw_ostream &OS, unsigned Indent) const { in print() argument 108 OS << NumSamples; in print() 110 OS << ", calls:"; in print() 112 OS << " " << I.first << ":" << I.second; in print() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.cpp | 136 void DumpDIAValueAs(llvm::raw_ostream &OS, int Indent, StringRef Name, in DumpDIAValueAs() argument 141 dumpSymbolField(OS, Name, static_cast<PrintType>(Value), Indent); in DumpDIAValueAs() 144 void DumpDIAIdValue(llvm::raw_ostream &OS, int Indent, StringRef Name, in DumpDIAIdValue() argument 151 dumpSymbolIdField(OS, Name, Value, Indent, Session, FieldId, ShowFlags, in DumpDIAIdValue() 156 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name, in DumpDIAValue() argument 161 dumpSymbolField(OS, Name, Value, Indent); in DumpDIAValue() 164 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name, in DumpDIAValue() argument 174 dumpSymbolField(OS, Name, Result, Indent); in DumpDIAValue() 178 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name, in DumpDIAValue() argument 187 dumpSymbolField(OS, Name, V, Indent); in DumpDIAValue() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUTargetStreamer.cpp | 162 formatted_raw_ostream &OS) in AMDGPUTargetAsmStreamer() argument 163 : AMDGPUTargetStreamer(S), OS(OS) { } in AMDGPUTargetAsmStreamer() 170 OS << S; in finish() 174 OS << "\t.amdgcn_target \"" << Target << "\"\n"; in EmitDirectiveAMDGCNTarget() 179 OS << "\t.hsa_code_object_version " << in EmitDirectiveHSACodeObjectVersion() 189 OS << "\t.hsa_code_object_isa " << in EmitDirectiveHSACodeObjectISA() 197 OS << "\t.amd_kernel_code_t\n"; in EmitAMDKernelCodeT() 198 dumpAmdKernelCode(&Header, OS, "\t\t"); in EmitAMDKernelCodeT() 199 OS << "\t.end_amd_kernel_code_t\n"; in EmitAMDKernelCodeT() 207 OS << "\t.amdgpu_hsa_kernel " << SymbolName << '\n' ; in EmitAMDGPUSymbolType() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86WinCOFFTargetStreamer.cpp | 25 formatted_raw_ostream &OS; member in __anonb2663c660111::X86WinCOFFAsmTargetStreamer 29 X86WinCOFFAsmTargetStreamer(MCStreamer &S, formatted_raw_ostream &OS, in X86WinCOFFAsmTargetStreamer() argument 31 : X86TargetStreamer(S), OS(OS), InstPrinter(InstPrinter) {} in X86WinCOFFAsmTargetStreamer() 101 OS << "\t.cv_fpo_proc\t"; in emitFPOProc() 102 ProcSym->print(OS, getStreamer().getContext().getAsmInfo()); in emitFPOProc() 103 OS << ' ' << ParamsSize << '\n'; in emitFPOProc() 108 OS << "\t.cv_fpo_endprologue\n"; in emitFPOEndPrologue() 113 OS << "\t.cv_fpo_endproc\n"; in emitFPOEndProc() 119 OS << "\t.cv_fpo_data\t"; in emitFPOData() 120 ProcSym->print(OS, getStreamer().getContext().getAsmInfo()); in emitFPOData() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
D | DIPrinter.cpp | 53 OS << format_decimal(L, MaxLineNumberWidth); in printContext() 55 OS << " >: "; in printContext() 57 OS << " : "; in printContext() 58 OS << *I << "\n"; in printContext() 71 OS << Prefix << FunctionName << Delimiter; in print() 79 OS << Filename << ":" << Info.Line; in print() 81 OS << ":" << Info.Column; in print() 82 OS << "\n"; in print() 86 OS << " Filename: " << Filename << "\n"; in print() 88 OS << "Function start line: " << Info.StartLine << "\n"; in print() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/MCTargetDesc/ |
D | SparcMCExpr.cpp | 31 void SparcMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const { in printImpl() argument 33 bool closeParen = printVariantKind(OS, Kind); in printImpl() 36 Expr->print(OS, MAI); in printImpl() 39 OS << ')'; in printImpl() 42 bool SparcMCExpr::printVariantKind(raw_ostream &OS, VariantKind Kind) in printVariantKind() argument 47 case VK_Sparc_LO: OS << "%lo("; break; in printVariantKind() 48 case VK_Sparc_HI: OS << "%hi("; break; in printVariantKind() 49 case VK_Sparc_H44: OS << "%h44("; break; in printVariantKind() 50 case VK_Sparc_M44: OS << "%m44("; break; in printVariantKind() 51 case VK_Sparc_L44: OS << "%l44("; break; in printVariantKind() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBExtras.h | 26 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value); 27 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv); 28 raw_ostream &operator<<(raw_ostream &OS, const PDB_BuiltinType &Type); 29 raw_ostream &operator<<(raw_ostream &OS, const PDB_DataKind &Data); 30 raw_ostream &operator<<(raw_ostream &OS, 32 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc); 33 raw_ostream &operator<<(raw_ostream &OS, const codeview::ThunkOrdinal &Thunk); 34 raw_ostream &operator<<(raw_ostream &OS, const PDB_Checksum &Checksum); 35 raw_ostream &operator<<(raw_ostream &OS, const PDB_Lang &Lang); 36 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag); [all …]
|