Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:Bytes

117                                            "do not print the instruction bytes."));
226 void llvm::DumpBytes(StringRef bytes) {
237 assert(bytes.size() <= 15
238 && "DumpBytes only supports instructions of up to 15 bytes");
241 for (StringRef::iterator i = bytes.begin(),
242 e = bytes.end(); i != e; ++i) {
434 StringRef Bytes;
435 if (error(i->getContents(Bytes))) break;
436 StringRefMemoryObject memoryObject(Bytes, SectionAddr);
476 DumpBytes(StringRef(Bytes.data() + Index, Size));
485 bytes