Home
last modified time | relevance | path

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

123

/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, in tryAddingSymbolicOperand() argument
87 CommentStream << "symbol stub for: " << ReferenceName; in tryAddingSymbolicOperand()
90 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
102 CommentStream << format("0x%llx", in tryAddingSymbolicOperand()
135 CommentStream << "literal pool symbol address: " << ReferenceName; in tryAddingSymbolicOperand()
138 CommentStream << "literal pool for: \""; in tryAddingSymbolicOperand()
139 CommentStream.write_escaped(ReferenceName); in tryAddingSymbolicOperand()
140 CommentStream << "\""; in tryAddingSymbolicOperand()
143 CommentStream << "Objc cfstring ref: @\"" << ReferenceName << "\""; in tryAddingSymbolicOperand()
146 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, in tryAddingSymbolicOperand() argument
87 CommentStream << "symbol stub for: " << ReferenceName; in tryAddingSymbolicOperand()
90 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
102 CommentStream << format("0x%llx", (0xfffffffffffff000LL & Address) + in tryAddingSymbolicOperand()
135 CommentStream << "literal pool symbol address: " << ReferenceName; in tryAddingSymbolicOperand()
138 CommentStream << "literal pool for: \""; in tryAddingSymbolicOperand()
139 CommentStream.write_escaped(ReferenceName); in tryAddingSymbolicOperand()
140 CommentStream << "\""; in tryAddingSymbolicOperand()
143 CommentStream << "Objc cfstring ref: @\"" << ReferenceName << "\""; in tryAddingSymbolicOperand()
146 CommentStream << "Objc message: " << ReferenceName; in tryAddingSymbolicOperand()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCDisassembler/
DMCDisassembler.cpp22 raw_ostream &cStream = CommentStream ? *CommentStream : nulls(); in tryAddingSymbolicOperand()
31 raw_ostream &cStream = CommentStream ? *CommentStream : nulls(); in tryAddingPcLoadReferenceComment()
DDisassembler.h84 raw_svector_ostream CommentStream; variable
95 Options(0), CommentStream(CommentsToEmit) { in LLVMDisasmContext()
/external/llvm/lib/MC/MCDisassembler/
DMCDisassembler.cpp23 raw_ostream &cStream = CommentStream ? *CommentStream : nulls(); in tryAddingSymbolicOperand()
32 raw_ostream &cStream = CommentStream ? *CommentStream : nulls(); in tryAddingPcLoadReferenceComment()
DDisassembler.h84 raw_svector_ostream CommentStream; variable
95 Options(0), CommentStream(CommentsToEmit) { in LLVMDisasmContext()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/InstPrinter/
DX86ATTInstPrinter.cpp45 if (CommentStream) in printInst()
46 HasCustomInstComment = EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst()
94 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { in printOperand()
97 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm); in printOperand()
99 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm); in printOperand()
101 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm); in printOperand()
DX86IntelInstPrinter.cpp54 if (CommentStream) in printInst()
55 EmitAnyX86InstComments(MI, *CommentStream, MII); in printInst()
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXMCAsmStreamer.cpp37 raw_svector_ostream CommentStream; member in __anon150edaef0111::PTXMCAsmStreamer
50 InstPrinter(printer), Emitter(emitter), CommentStream(CommentToEmit), in PTXMCAsmStreamer()
54 InstPrinter->setCommentStream(CommentStream); in PTXMCAsmStreamer()
91 return CommentStream; in GetCommentOS()
191 CommentStream.flush(); in AddComment()
198 CommentStream.resync(); in AddComment()
202 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) { in EmitCommentsAndEOL()
207 CommentStream.flush(); in EmitCommentsAndEOL()
223 CommentStream.resync(); in EmitCommentsAndEOL()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCInstPrinter.h26 raw_ostream *CommentStream;
36 : CommentStream(0), MAI(mai), AvailableFeatures(0) {} in MCInstPrinter()
41 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } in setCommentStream()
DMCDisassembler.h60 STI(STI), CommentStream(0) {} in MCDisassembler()
131 mutable raw_ostream *CommentStream; variable
/external/llvm/lib/Target/X86/InstPrinter/
DX86ATTInstPrinter.cpp46 if (CommentStream) in printInst()
48 EmitAnyX86InstComments(MI, *CommentStream, getRegisterName); in printInst()
178 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { in printOperand()
181 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm); in printOperand()
183 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm); in printOperand()
185 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm); in printOperand()
/external/swiftshader/third_party/LLVM/lib/Target/X86/InstPrinter/
DX86ATTInstPrinter.cpp49 if (CommentStream) { in printInst()
51 EmitAnyX86InstComments(MI, *CommentStream, getRegisterName); in printInst()
99 if (CommentStream && (Op.getImm() > 255 || Op.getImm() < -256)) in printOperand()
100 *CommentStream << format("imm = 0x%llX\n", (long long)Op.getImm()); in printOperand()
DX86IntelInstPrinter.cpp40 if (CommentStream) { in printInst()
42 EmitAnyX86InstComments(MI, *CommentStream, getRegisterName); in printInst()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCInstPrinter.cpp46 if (CommentStream) { in printAnnotation()
47 (*CommentStream) << Annot; in printAnnotation()
51 (*CommentStream) << '\n'; in printAnnotation()
/external/llvm/lib/MC/
DMCInstPrinter.cpp43 if (CommentStream) { in printAnnotation()
44 (*CommentStream) << Annot; in printAnnotation()
48 (*CommentStream) << '\n'; in printAnnotation()
/external/llvm/include/llvm/MC/
DMCInstPrinter.h43 raw_ostream *CommentStream;
63 : CommentStream(nullptr), MAI(mai), MII(mii), MRI(mri), UseMarkup(0), in MCInstPrinter()
69 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } in setCommentStream()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCInstPrinter.cpp31 if (CommentStream) in printAnnotation()
32 (*CommentStream) << Annot; in printAnnotation()
DMCAsmStreamer.cpp47 raw_svector_ostream CommentStream; member in __anon247e66110111::MCAsmStreamer
71 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm), in MCAsmStreamer()
74 InstPrinter->setCommentStream(CommentStream); in MCAsmStreamer()
110 return CommentStream; in GetCommentOS()
267 CommentStream.flush(); in AddComment()
274 CommentStream.resync(); in AddComment()
278 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) { in EmitCommentsAndEOL()
283 CommentStream.flush(); in EmitCommentsAndEOL()
299 CommentStream.resync(); in EmitCommentsAndEOL()
/external/llvm/include/llvm/MC/MCDisassembler/
DMCExternalSymbolizer.h48 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream,
51 void tryAddingPcLoadReferenceComment(raw_ostream &CommentStream,
DMCDisassembler.h57 : Ctx(Ctx), STI(STI), Symbolizer(), CommentStream(nullptr) {} in MCDisassembler()
108 mutable raw_ostream *CommentStream; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCDisassembler/
DMCExternalSymbolizer.h48 bool tryAddingSymbolicOperand(MCInst &MI, raw_ostream &CommentStream,
51 void tryAddingPcLoadReferenceComment(raw_ostream &CommentStream,
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
DDisassembler.cpp145 /*REMOVE*/ nulls(), DC->CommentStream); in LLVMDisasmInstruction()
153 DC->CommentStream.flush(); in LLVMDisasmInstruction()
163 DC->CommentStream.resync(); in LLVMDisasmInstruction()
DDisassembler.h74 raw_svector_ostream CommentStream; variable
85 CommentStream(CommentsToEmit) { in LLVMDisasmContext()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCInstPrinter.h45 raw_ostream *CommentStream = nullptr;
69 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } in setCommentStream()

123