diff options
author | Derek Schuff <dschuff@google.com> | 2012-02-06 22:30:29 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2012-02-06 22:30:29 +0000 |
commit | 8b2dcad4b53aa9403f9a6397e35566cc78ee843c (patch) | |
tree | 4f7173ceab4188ae1bb82547d0f7e7d04c497496 /llvm/lib/Target/ARM/Disassembler | |
parent | fe3bdad393272c3f546e49eba300223c2426217e (diff) | |
download | bcm5719-llvm-8b2dcad4b53aa9403f9a6397e35566cc78ee843c.tar.gz bcm5719-llvm-8b2dcad4b53aa9403f9a6397e35566cc78ee843c.zip |
Enable streaming of bitcode
This CL delays reading of function bodies from initial parse until
materialization, allowing overlap of compilation with bitcode download.
llvm-svn: 149918
Diffstat (limited to 'llvm/lib/Target/ARM/Disassembler')
-rw-r--r-- | llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp b/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp index c5d2ea2ca5c..222cb30ac7d 100644 --- a/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp +++ b/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp @@ -46,7 +46,7 @@ public: /// getInstruction - See MCDisassembler. DecodeStatus getInstruction(MCInst &instr, uint64_t &size, - const MemoryObject ®ion, + MemoryObject ®ion, uint64_t address, raw_ostream &vStream, raw_ostream &cStream) const; @@ -71,7 +71,7 @@ public: /// getInstruction - See MCDisassembler. DecodeStatus getInstruction(MCInst &instr, uint64_t &size, - const MemoryObject ®ion, + MemoryObject ®ion, uint64_t address, raw_ostream &vStream, raw_ostream &cStream) const; @@ -341,7 +341,7 @@ EDInstInfo *ThumbDisassembler::getEDInfo() const { } DecodeStatus ARMDisassembler::getInstruction(MCInst &MI, uint64_t &Size, - const MemoryObject &Region, + MemoryObject &Region, uint64_t Address, raw_ostream &os, raw_ostream &cs) const { @@ -691,7 +691,7 @@ void ThumbDisassembler::UpdateThumbVFPPredicate(MCInst &MI) const { } DecodeStatus ThumbDisassembler::getInstruction(MCInst &MI, uint64_t &Size, - const MemoryObject &Region, + MemoryObject &Region, uint64_t Address, raw_ostream &os, raw_ostream &cs) const { |