| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Disassembler/ |
| H A D | AArch64ExternalSymbolizer.cpp | 62 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, in tryAddingSymbolicOperand() argument 90 CommentStream << "symbol stub for: " << ReferenceName; in tryAddingSymbolicOperand() 93 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand() 105 CommentStream << format("0x%llx", (0xfffffffffffff000LL & Address) + in tryAddingSymbolicOperand() 138 CommentStream << "literal pool symbol address: " << ReferenceName; in tryAddingSymbolicOperand() 141 CommentStream << "literal pool for: \""; in tryAddingSymbolicOperand() 142 CommentStream.write_escaped(ReferenceName); in tryAddingSymbolicOperand() 143 CommentStream << "\""; in tryAddingSymbolicOperand() 146 CommentStream << "Objc cfstring ref: @\"" << ReferenceName << "\""; in tryAddingSymbolicOperand() 149 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand() [all …]
|
| H A D | AArch64ExternalSymbolizer.h | 30 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream,
|
| H A D | AArch64Disassembler.cpp | 315 CommentStream = &CS; in getInstruction()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCDisassembler/ |
| H A D | MCExternalSymbolizer.h | 47 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream, 51 void tryAddingPcLoadReferenceComment(raw_ostream &CommentStream,
|
| H A D | MCDisassembler.h | 218 mutable raw_ostream *CommentStream = nullptr; variable
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/MCDisassembler/ |
| H A D | MCDisassembler.cpp | 33 return Symbolizer->tryAddingSymbolicOperand(Inst, *CommentStream, Value, in tryAddingSymbolicOperand() 42 Symbolizer->tryAddingPcLoadReferenceComment(*CommentStream, Value, Address); in tryAddingPcLoadReferenceComment()
|
| H A D | Disassembler.h | 83 raw_svector_ostream CommentStream; variable 100 IP(std::move(IP)), Options(0), CommentStream(CommentsToEmit) {} in LLVMDisasmContext()
|
| H A D | Disassembler.cpp | 237 DC->CommentStream << "Latency: " << Latency << '\n'; in emitLatency() 336 IP->setCommentStream(DC->CommentStream); in LLVMSetDisasmOptions()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCInstPrinter.cpp | 52 if (CommentStream) { in printAnnotation() 53 (*CommentStream) << Annot; in printAnnotation() 57 (*CommentStream) << '\n'; in printAnnotation()
|
| H A D | MCAsmStreamer.cpp | 54 raw_svector_ostream CommentStream; member in __anon66f09b1a0111::MCAsmStreamer 83 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm), in MCAsmStreamer() 87 InstPrinter->setCommentStream(CommentStream); in MCAsmStreamer() 132 return CommentStream; in getCommentOS() 429 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) { in EmitCommentsAndEOL()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86ATTInstPrinter.cpp | 46 if (CommentStream) in printInst() 47 HasCustomInstComment = EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst() 397 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { in printOperand() 400 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm); in printOperand() 402 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm); in printOperand() 404 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm); in printOperand()
|
| H A D | X86IntelInstPrinter.cpp | 56 if (CommentStream) in printInst() 57 EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCInstPrinter.h | 49 raw_ostream *CommentStream = nullptr; 93 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } in setCommentStream()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | IndirectionUtils.cpp | 411 raw_null_ostream CommentStream; in addFunctionPointerRelocationsToCurrentSymbol() local 437 Instr, InstrSize, Content.drop_front(I), InstrStart, CommentStream); in addFunctionPointerRelocationsToCurrentSymbol()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/Disassembler/ |
| H A D | WebAssemblyDisassembler.cpp | 163 CommentStream = &CS; in getInstruction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyInstPrinter.cpp | 113 if (CommentStream) { in printInst()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 1205 if (CommentStream) in printAddSubImm() 1206 *CommentStream << '=' << formatImm(Val << Shift) << '\n'; in printAddSubImm() 2000 if (CommentStream) { in printImmSVE() 2003 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE() 2005 *CommentStream << '=' << formatHex((uint64_t)Value) << '\n'; in printImmSVE()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1511 raw_svector_ostream CommentStream(Comments); in disassembleObject() local 1692 SectionAddr + Start, CommentStream); in disassembleObject() 1808 ThisAddr, CommentStream); in disassembleObject() 1817 IP->setCommentStream(CommentStream); in disassembleObject() 1845 TargetOS = &CommentStream; in disassembleObject() 1936 if (TargetOS == &CommentStream) in disassembleObject() 1944 CommentStream.str(), LVP); in disassembleObject()
|
| H A D | MachODump.cpp | 7401 static void emitComments(raw_svector_ostream &CommentStream, in emitComments() argument 7612 raw_svector_ostream CommentStream(CommentsToEmit); in DisassembleMachO() local 7928 emitComments(CommentStream, CommentsToEmit, FormattedOS, *AsmInfo); in DisassembleMachO()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Disassembler/ |
| H A D | AMDGPUDisassembler.cpp | 439 CommentStream = &CS; in getInstruction() 1092 *CommentStream << "Error: " + ErrMsg; in errOperand() 1155 *CommentStream << "Warning: " << getRegClassName(SRegClassID) in createSRegOperand()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMInstPrinter.cpp | 362 if (CommentStream) in printOperand() 363 *CommentStream << "imm = #" << formatImm(Op.getImm()) << '\n'; in printOperand()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86Disassembler.cpp | 1738 CommentStream = &CStream; in getInstruction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/Disassembler/ |
| H A D | ARMDisassembler.cpp | 785 CommentStream = &CS; in getARMInstruction() 1071 CommentStream = &CS; in getThumbInstruction()
|