Home
last modified time | relevance | path

Searched refs:CommentStream (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp60 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, in tryAddingSymbolicOperand() argument
88 CommentStream << "symbol stub for: " << ReferenceName; in tryAddingSymbolicOperand()
91 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
103 CommentStream << format("0x%llx", (0xfffffffffffff000LL & Address) + in tryAddingSymbolicOperand()
136 CommentStream << "literal pool symbol address: " << ReferenceName; in tryAddingSymbolicOperand()
139 CommentStream << "literal pool for: \""; in tryAddingSymbolicOperand()
140 CommentStream.write_escaped(ReferenceName); in tryAddingSymbolicOperand()
141 CommentStream << "\""; in tryAddingSymbolicOperand()
144 CommentStream << "Objc cfstring ref: @\"" << ReferenceName << "\""; in tryAddingSymbolicOperand()
147 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
[all …]
H A DAArch64ExternalSymbolizer.h30 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream,
H A DAArch64Disassembler.cpp262 CommentStream = &CS; in getInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCDisassembler/
H A DMCExternalSymbolizer.h47 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream,
50 void tryAddingPcLoadReferenceComment(raw_ostream &CommentStream,
H A DMCDisassembler.h192 mutable raw_ostream *CommentStream = nullptr; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ATTInstPrinter.cpp46 if (CommentStream) in printInst()
47 HasCustomInstComment = EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst()
369 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { in printOperand()
372 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm); in printOperand()
374 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm); in printOperand()
376 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm); in printOperand()
H A DX86IntelInstPrinter.cpp56 if (CommentStream) in printInst()
57 EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
H A DMCDisassembler.cpp32 Inst, *CommentStream, Value, Address, IsBranch, Offset, InstSize); in tryAddingSymbolicOperand()
39 Symbolizer->tryAddingPcLoadReferenceComment(*CommentStream, Value, Address); in tryAddingPcLoadReferenceComment()
H A DDisassembler.h83 raw_svector_ostream CommentStream; variable
100 IP(std::move(IP)), Options(0), CommentStream(CommentsToEmit) {} in LLVMDisasmContext()
H A DDisassembler.cpp238 DC->CommentStream << "Latency: " << Latency << '\n'; in emitLatency()
337 IP->setCommentStream(DC->CommentStream); in LLVMSetDisasmOptions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCInstPrinter.cpp51 if (CommentStream) { in printAnnotation()
52 (*CommentStream) << Annot; in printAnnotation()
56 (*CommentStream) << '\n'; in printAnnotation()
H A DMCAsmStreamer.cpp55 raw_svector_ostream CommentStream; member in __anon43a7144e0111::MCAsmStreamer
84 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm), in MCAsmStreamer()
88 InstPrinter->setCommentStream(CommentStream); in MCAsmStreamer()
133 return CommentStream; in GetCommentOS()
411 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) { in EmitCommentsAndEOL()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCInstPrinter.h48 raw_ostream *CommentStream = nullptr;
89 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } in setCommentStream()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp960 if (CommentStream) in printAddSubImm()
961 *CommentStream << '=' << formatImm(Val << Shift) << '\n'; in printAddSubImm()
1560 if (CommentStream) { in printImmSVE()
1563 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()
1565 *CommentStream << '=' << formatHex((uint64_t)Value) << '\n'; in printImmSVE()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp162 CommentStream = &CS; in getInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp113 if (CommentStream) { in printInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp418 CommentStream = &CS; in getInstruction()
826 *CommentStream << "Error: " + ErrMsg; in errOperand()
881 *CommentStream << "Warning: " << getRegClassName(SRegClassID) in createSRegOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1220 raw_svector_ostream CommentStream(Comments); in disassembleObject() local
1285 SectionAddr + Start, CommentStream); in disassembleObject()
1392 SectionAddr + Index, CommentStream); in disassembleObject()
1403 FOS << CommentStream.str(); in disassembleObject()
H A DMachODump.cpp7144 static void emitComments(raw_svector_ostream &CommentStream, in emitComments() argument
7253 raw_svector_ostream CommentStream(CommentsToEmit); in DisassembleMachO() local
7644 emitComments(CommentStream, CommentsToEmit, FormattedOS, *AsmInfo); in DisassembleMachO()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1718 CommentStream = &CStream; in getInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp626 CommentStream = &CS; in getARMInstruction()
913 CommentStream = &CS; in getThumbInstruction()