Home
last modified time | relevance | path

Searched refs:outs (Results 1 – 25 of 668) sorted by relevance

12345678910>>...27

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
DMachODump.cpp252 dumpBytes(makeArrayRef(bytes, 4), outs()); in DumpDataInCode()
254 outs() << "\t.long " << Value; in DumpDataInCode()
258 dumpBytes(makeArrayRef(bytes, 2), outs()); in DumpDataInCode()
260 outs() << "\t.short " << Value; in DumpDataInCode()
264 dumpBytes(makeArrayRef(bytes, 2), outs()); in DumpDataInCode()
266 outs() << "\t.byte " << Value; in DumpDataInCode()
270 outs() << "\t@ KIND_DATA\n"; in DumpDataInCode()
272 outs() << "\t@ data in code kind = " << Kind << "\n"; in DumpDataInCode()
276 dumpBytes(makeArrayRef(bytes, 1), outs()); in DumpDataInCode()
278 outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n"; in DumpDataInCode()
[all …]
DCOFFDump.cpp94 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
98 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()); in printUnwindCode()
102 outs() << " " << UCs[1].FrameOffset; in printUnwindCode()
104 outs() << " " << UCs[1].FrameOffset in printUnwindCode()
109 outs() << " " << ((UCs[0].getOpInfo() + 1) * 8); in printUnwindCode()
112 outs() << " "; in printUnwindCode()
115 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()) in printUnwindCode()
119 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()) in printUnwindCode()
124 outs() << " XMM" << static_cast<uint32_t>(UCs[0].getOpInfo()) in printUnwindCode()
128 outs() << " XMM" << UCs[0].getOpInfo() in printUnwindCode()
[all …]
DELFDump.cpp64 outs() << "Dynamic Section:\n"; in printDynamicSection()
73 outs() << format(" 0x%-19s", HexStr.c_str()); in printDynamicSection()
76 outs() << format(" %-21s", Str.data()); in printDynamicSection()
85 outs() << (Data + Dyn.d_un.d_val) << "\n"; in printDynamicSection()
91 outs() << format(Fmt, (uint64_t)Dyn.d_un.d_val); in printDynamicSection()
97 outs() << "Program Header:\n"; in printProgramHeaders()
105 outs() << " DYNAMIC "; in printProgramHeaders()
108 outs() << "EH_FRAME "; in printProgramHeaders()
111 outs() << " RELRO "; in printProgramHeaders()
114 outs() << " STACK "; in printProgramHeaders()
[all …]
/external/llvm/tools/llvm-objdump/
DMachODump.cpp241 dumpBytes(makeArrayRef(bytes, 4), outs()); in DumpDataInCode()
243 outs() << "\t.long " << Value; in DumpDataInCode()
247 dumpBytes(makeArrayRef(bytes, 2), outs()); in DumpDataInCode()
249 outs() << "\t.short " << Value; in DumpDataInCode()
253 dumpBytes(makeArrayRef(bytes, 2), outs()); in DumpDataInCode()
255 outs() << "\t.byte " << Value; in DumpDataInCode()
259 outs() << "\t@ KIND_DATA\n"; in DumpDataInCode()
261 outs() << "\t@ data in code kind = " << Kind << "\n"; in DumpDataInCode()
265 dumpBytes(makeArrayRef(bytes, 1), outs()); in DumpDataInCode()
267 outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n"; in DumpDataInCode()
[all …]
DCOFFDump.cpp97 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
101 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()); in printUnwindCode()
105 outs() << " " << UCs[1].FrameOffset; in printUnwindCode()
107 outs() << " " << UCs[1].FrameOffset in printUnwindCode()
112 outs() << " " << ((UCs[0].getOpInfo() + 1) * 8); in printUnwindCode()
115 outs() << " "; in printUnwindCode()
118 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()) in printUnwindCode()
122 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo()) in printUnwindCode()
127 outs() << " XMM" << static_cast<uint32_t>(UCs[0].getOpInfo()) in printUnwindCode()
131 outs() << " XMM" << UCs[0].getOpInfo() in printUnwindCode()
[all …]
/external/curl/src/
Dtool_cb_wrt.c36 bool tool_create_output_file(struct OutStruct *outs) in tool_create_output_file() argument
38 struct GlobalConfig *global = outs->config->global; in tool_create_output_file()
41 if(!outs->filename || !*outs->filename) { in tool_create_output_file()
46 if(outs->is_cd_filename) { in tool_create_output_file()
48 file = fopen(outs->filename, "rb"); in tool_create_output_file()
51 warnf(global, "Refusing to overwrite %s: %s\n", outs->filename, in tool_create_output_file()
58 file = fopen(outs->filename, "wb"); in tool_create_output_file()
60 warnf(global, "Failed to create the file %s: %s\n", outs->filename, in tool_create_output_file()
64 outs->s_isreg = TRUE; in tool_create_output_file()
65 outs->fopened = TRUE; in tool_create_output_file()
[all …]
Dtool_cb_hdr.c60 struct OutStruct *outs = &per->outs; in tool_header_cb() local
136 if(outs->stream) { in tool_header_cb()
139 if(outs->fopened) in tool_header_cb()
140 fclose(outs->stream); in tool_header_cb()
141 outs->stream = NULL; in tool_header_cb()
144 rc = rename(outs->filename, filename); in tool_header_cb()
146 warnf(outs->config->global, "Failed to rename %s -> %s: %s\n", in tool_header_cb()
147 outs->filename, filename, strerror(errno)); in tool_header_cb()
149 if(outs->alloc_filename) in tool_header_cb()
150 Curl_safefree(outs->filename); in tool_header_cb()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrConv.td18 defm I32_WRAP_I64 : I<(outs I32:$dst), (ins I64:$src), (outs), (ins),
22 defm I64_EXTEND_S_I32 : I<(outs I64:$dst), (ins I32:$src), (outs), (ins),
26 defm I64_EXTEND_U_I32 : I<(outs I64:$dst), (ins I32:$src), (outs), (ins),
32 defm I32_EXTEND8_S_I32 : I<(outs I32:$dst), (ins I32:$src), (outs), (ins),
36 defm I32_EXTEND16_S_I32 : I<(outs I32:$dst), (ins I32:$src), (outs), (ins),
40 defm I64_EXTEND8_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
44 defm I64_EXTEND16_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
48 defm I64_EXTEND32_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
65 defm I32_TRUNC_S_SAT_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
70 defm I32_TRUNC_U_SAT_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCInstrSPE.td73 def EVLDD : EVXForm_D<769, (outs gprc:$RT), (ins spe8dis:$dst),
75 def EVLDW : EVXForm_D<771, (outs gprc:$RT), (ins spe8dis:$dst),
77 def EVLDH : EVXForm_D<773, (outs gprc:$RT), (ins spe8dis:$dst),
79 def EVLHHESPLAT : EVXForm_D<777, (outs gprc:$RT), (ins spe2dis:$dst),
81 def EVLHHOUSPLAT : EVXForm_D<781, (outs gprc:$RT), (ins spe2dis:$dst),
83 def EVLHHOSSPLAT : EVXForm_D<783, (outs gprc:$RT), (ins spe2dis:$dst),
85 def EVLWHE : EVXForm_D<785, (outs gprc:$RT), (ins spe4dis:$dst),
87 def EVLWHOU : EVXForm_D<789, (outs gprc:$RT), (ins spe4dis:$dst),
89 def EVLWHOS : EVXForm_D<791, (outs gprc:$RT), (ins spe4dis:$dst),
91 def EVLWWSPLAT : EVXForm_D<793, (outs gprc:$RT), (ins spe4dis:$dst),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCInstrSPE.td141 def BRINC : EVXForm_1<527, (outs gprc:$RT), (ins gprc:$RA, gprc:$RB),
145 def EFDABS : EFXForm_2<740, (outs sperc:$RT), (ins sperc:$RA),
149 def EFDADD : EFXForm_1<736, (outs sperc:$RT), (ins sperc:$RA, sperc:$RB),
153 def EFDCFS : EFXForm_2a<751, (outs sperc:$RT), (ins spe4rc:$RB),
157 def EFDCFSF : EFXForm_2a<755, (outs sperc:$RT), (ins spe4rc:$RB),
160 def EFDCFSI : EFXForm_2a<753, (outs sperc:$RT), (ins gprc:$RB),
164 def EFDCFSID : EFXForm_2a<739, (outs sperc:$RT), (ins gprc:$RB),
168 def EFDCFUF : EFXForm_2a<754, (outs sperc:$RT), (ins spe4rc:$RB),
171 def EFDCFUI : EFXForm_2a<752, (outs sperc:$RT), (ins gprc:$RB),
175 def EFDCFUID : EFXForm_2a<738, (outs sperc:$RT), (ins gprc:$RB),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
DXCoreInstrFormats.td13 class InstXCore<int sz, dag outs, dag ins, string asmstr, list<dag> pattern>
18 dag OutOperandList = outs;
27 class PseudoInstXCore<dag outs, dag ins, string asmstr, list<dag> pattern>
28 : InstXCore<0, outs, ins, asmstr, pattern> {
36 class _F3R<bits<5> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
37 : InstXCore<2, outs, ins, asmstr, pattern> {
45 class _F3RImm<bits<5> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
46 : _F3R<opc, outs, ins, asmstr, pattern> {
50 class _FL3R<bits<9> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
51 : InstXCore<4, outs, ins, asmstr, pattern> {
[all …]
/external/llvm/lib/Target/XCore/
DXCoreInstrFormats.td13 class InstXCore<int sz, dag outs, dag ins, string asmstr, list<dag> pattern>
18 dag OutOperandList = outs;
27 class PseudoInstXCore<dag outs, dag ins, string asmstr, list<dag> pattern>
28 : InstXCore<0, outs, ins, asmstr, pattern> {
36 class _F3R<bits<5> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
37 : InstXCore<2, outs, ins, asmstr, pattern> {
45 class _F3RImm<bits<5> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
46 : _F3R<opc, outs, ins, asmstr, pattern> {
50 class _FL3R<bits<9> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
51 : InstXCore<4, outs, ins, asmstr, pattern> {
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonInstrFormatsV60.td42 class CVI_VA_Resource<dag outs, dag ins, string asmstr,
45 : InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VA>,
48 class CVI_VA_DV_Resource<dag outs, dag ins, string asmstr,
51 : InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VA_DV>,
54 class CVI_VX_Resource_long<dag outs, dag ins, string asmstr,
57 : InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VX>,
60 class CVI_VX_Resource_late<dag outs, dag ins, string asmstr,
63 : InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VX>,
66 class CVI_VX_Resource<dag outs, dag ins, string asmstr,
69 : InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VX>,
[all …]
/external/llvm/lib/Target/X86/
DX86InstrSystem.td18 def RDTSC : I<0x31, RawFrm, (outs), (ins), "rdtsc", [(X86rdtsc)], IIC_RDTSC>,
22 def RDTSCP : I<0x01, MRM_F9, (outs), (ins), "rdtscp", [(X86rdtscp)]>, TB;
27 def TRAP : I<0x0B, RawFrm, (outs), (ins), "ud2", [(trap)]>, TB;
28 def UD2B : I<0xB9, RawFrm, (outs), (ins), "ud2b", []>, TB;
31 def HLT : I<0xF4, RawFrm, (outs), (ins), "hlt", [], IIC_HLT>;
32 def RSM : I<0xAA, RawFrm, (outs), (ins), "rsm", [], IIC_RSM>, TB;
36 def INTO : I<0xce, RawFrm, (outs), (ins), "into", []>;
37 def INT3 : I<0xcc, RawFrm, (outs), (ins), "int3",
47 def INT : Ii8<0xcd, RawFrm, (outs), (ins u8imm:$trap), "int\t$trap",
51 def SYSCALL : I<0x05, RawFrm, (outs), (ins), "syscall", [], IIC_SYSCALL>, TB;
[all …]
DX86InstrFPStack.td78 def FP32_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP32:$src),
80 def FP32_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP32:$src),
82 def FP32_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP32:$src),
84 def FP64_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP64:$src),
86 def FP64_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP64:$src),
88 def FP64_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP64:$src),
90 def FP80_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP80:$src),
92 def FP80_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP80:$src),
94 def FP80_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP80:$src),
121 class FpIf32<dag outs, dag ins, FPFormat fp, list<dag> pattern> :
[all …]
DX86InstrControl.td24 def RETL : I <0xC3, RawFrm, (outs), (ins variable_ops),
27 def RETQ : I <0xC3, RawFrm, (outs), (ins variable_ops),
30 def RETW : I <0xC3, RawFrm, (outs), (ins),
33 def RETIL : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
37 def RETIQ : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
41 def RETIW : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt),
44 def LRETL : I <0xCB, RawFrm, (outs), (ins),
46 def LRETQ : RI <0xCB, RawFrm, (outs), (ins),
48 def LRETW : I <0xCB, RawFrm, (outs), (ins),
50 def LRETIL : Ii16<0xCA, RawFrm, (outs), (ins i16imm:$amt),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86InstrSystem.td18 def RDTSC : I<0x31, RawFrm, (outs), (ins), "rdtsc", [(X86rdtsc)]>, TB;
21 def RDTSCP : I<0x01, MRM_F9, (outs), (ins), "rdtscp", [(X86rdtscp)]>, TB;
26 def TRAP : I<0x0B, RawFrm, (outs), (ins), "ud2", [(trap)]>, TB;
27 def UD2B : I<0xB9, RawFrm, (outs), (ins), "ud2b", []>, TB;
30 def HLT : I<0xF4, RawFrm, (outs), (ins), "hlt", []>;
31 def RSM : I<0xAA, RawFrm, (outs), (ins), "rsm", []>, TB;
35 def INTO : I<0xce, RawFrm, (outs), (ins), "into", []>, Requires<[Not64BitMode]>;
37 def INT3 : I<0xcc, RawFrm, (outs), (ins), "int3", [(int_x86_int (i8 3))]>;
46 def INT : Ii8<0xcd, RawFrm, (outs), (ins u8imm:$trap), "int\t$trap",
50 def SYSCALL : I<0x05, RawFrm, (outs), (ins), "syscall", []>, TB;
[all …]
DX86InstrFPStack.td78 def FP32_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP32:$src),
80 def FP32_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP32:$src),
82 def FP32_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP32:$src),
84 def FP64_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP64:$src),
86 def FP64_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP64:$src),
88 def FP64_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP64:$src),
90 def FP80_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP80:$src),
92 def FP80_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP80:$src),
94 def FP80_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP80:$src),
121 class FpIf32<dag outs, dag ins, FPFormat fp, list<dag> pattern> :
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td54 class MSP430Inst<dag outs, dag ins, SizeVal sz, Format f,
60 dag OutOperandList = outs;
78 dag outs, dag ins, string asmstr, list<dag> pattern>
79 : MSP430Inst<outs, ins, sz, DoubleOpFrm, asmstr> {
93 dag outs, dag ins, string asmstr, list<dag> pattern>
94 : IForm<opcode, dest, 1, src, sz, outs, ins, asmstr, pattern>;
97 dag outs, dag ins, string asmstr, list<dag> pattern>
98 : IForm8<opcode, DstReg, SrcReg, Size2Bytes, outs, ins, asmstr, pattern>;
101 dag outs, dag ins, string asmstr, list<dag> pattern>
102 : IForm8<opcode, DstReg, SrcImm, Size4Bytes, outs, ins, asmstr, pattern>;
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td54 class MSP430Inst<dag outs, dag ins, SizeVal sz, Format f,
60 dag OutOperandList = outs;
78 dag outs, dag ins, string asmstr, list<dag> pattern>
79 : MSP430Inst<outs, ins, sz, DoubleOpFrm, asmstr> {
93 dag outs, dag ins, string asmstr, list<dag> pattern>
94 : IForm<opcode, dest, 1, src, sz, outs, ins, asmstr, pattern>;
97 dag outs, dag ins, string asmstr, list<dag> pattern>
98 : IForm8<opcode, DstReg, SrcReg, Size2Bytes, outs, ins, asmstr, pattern>;
101 dag outs, dag ins, string asmstr, list<dag> pattern>
102 : IForm8<opcode, DstReg, SrcImm, Size4Bytes, outs, ins, asmstr, pattern>;
[all …]
/external/llvm/tools/bugpoint/
DFindBugs.cpp36 outs() << "Starting bug finding procedure...\n\n"; in runManyPasses()
41 outs() << "\n"; in runManyPasses()
43 outs() << "Generating reference output from raw program: \n"; in runManyPasses()
60 outs() << "Running selected passes on program to test for crash: "; in runManyPasses()
62 outs() << "-" << PassesToRun[i] << " "; in runManyPasses()
67 outs() << "\n"; in runManyPasses()
68 outs() << "Optimizer passes caused failure!\n\n"; in runManyPasses()
72 outs() << "Combination " << num << " optimized successfully!\n"; in runManyPasses()
78 outs() << "Running the code generator to test for a crash: "; in runManyPasses()
82 outs() << "\n*** compileProgram threw an exception: "; in runManyPasses()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DFindBugs.cpp26 outs() << "Starting bug finding procedure...\n\n"; in runManyPasses()
32 outs() << "\n"; in runManyPasses()
34 outs() << "Generating reference output from raw program: \n"; in runManyPasses()
50 outs() << "Running selected passes on program to test for crash: "; in runManyPasses()
52 outs() << "-" << PassesToRun[i] << " "; in runManyPasses()
57 outs() << "\n"; in runManyPasses()
58 outs() << "Optimizer passes caused failure!\n\n"; in runManyPasses()
61 outs() << "Combination " << num << " optimized successfully!\n"; in runManyPasses()
67 outs() << "Running the code generator to test for a crash: "; in runManyPasses()
69 outs() << "\n*** compileProgram threw an exception: "; in runManyPasses()
[all …]
/external/llvm/tools/llvm-readobj/
DCOFFImportDumper.cpp27 outs() << '\n'; in dumpCOFFImportFile()
28 outs() << "File: " << File->getFileName() << "\n"; in dumpCOFFImportFile()
29 outs() << "Format: COFF-import-file\n"; in dumpCOFFImportFile()
33 case COFF::IMPORT_CODE: outs() << "Type: code\n"; break; in dumpCOFFImportFile()
34 case COFF::IMPORT_DATA: outs() << "Type: data\n"; break; in dumpCOFFImportFile()
35 case COFF::IMPORT_CONST: outs() << "Type: const\n"; break; in dumpCOFFImportFile()
39 case COFF::IMPORT_ORDINAL: outs() << "Name type: ordinal\n"; break; in dumpCOFFImportFile()
40 case COFF::IMPORT_NAME: outs() << "Name type: name\n"; break; in dumpCOFFImportFile()
41 case COFF::IMPORT_NAME_NOPREFIX: outs() << "Name type: noprefix\n"; break; in dumpCOFFImportFile()
42 case COFF::IMPORT_NAME_UNDECORATE: outs() << "Name type: undecorate\n"; break; in dumpCOFFImportFile()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp465 outs() << " num-strings = " << NumStrings << " {\n"; in decodeMetadataStringsBlob()
478 outs() << Indent << " '"; in decodeMetadataStringsBlob()
479 outs().write_escaped(Strings.slice(0, Size), /*hex=*/true); in decodeMetadataStringsBlob()
480 outs() << "'\n"; in decodeMetadataStringsBlob()
484 outs() << Indent << " }"; in decodeMetadataStringsBlob()
513 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n"; in ParseBlock()
533 outs() << Indent << "<"; in ParseBlock()
535 outs() << BlockName; in ParseBlock()
537 outs() << "UnknownBlock" << BlockID; in ParseBlock()
540 outs() << " BlockID=" << BlockID; in ParseBlock()
[all …]
/external/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp433 outs() << " num-strings = " << NumStrings << " {\n"; in decodeMetadataStringsBlob()
452 outs() << Indent << " '"; in decodeMetadataStringsBlob()
453 outs().write_escaped(Strings.slice(0, Size), /*hex=*/true); in decodeMetadataStringsBlob()
454 outs() << "'\n"; in decodeMetadataStringsBlob()
458 outs() << Indent << " }"; in decodeMetadataStringsBlob()
487 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n"; in ParseBlock()
503 outs() << Indent << "<"; in ParseBlock()
506 outs() << BlockName; in ParseBlock()
508 outs() << "UnknownBlock" << BlockID; in ParseBlock()
511 outs() << " BlockID=" << BlockID; in ParseBlock()
[all …]

12345678910>>...27