| OLD | NEW |
| 1 // Copyright 2007-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2007-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_DISASM_H_ | 28 #ifndef V8_DISASM_H_ |
| 29 #define V8_DISASM_H_ | 29 #define V8_DISASM_H_ |
| 30 | 30 |
| 31 #include "v8-global-context.h" |
| 32 |
| 31 namespace disasm { | 33 namespace disasm { |
| 32 | 34 |
| 33 typedef unsigned char byte; | 35 typedef unsigned char byte; |
| 34 | 36 |
| 35 // Interface and default implementation for converting addresses and | 37 // Interface and default implementation for converting addresses and |
| 36 // register-numbers to text. The default implementation is machine | 38 // register-numbers to text. The default implementation is machine |
| 37 // specific. | 39 // specific. |
| 38 class NameConverter { | 40 class NameConverter { |
| 39 public: | 41 public: |
| 40 virtual ~NameConverter() {} | 42 virtual ~NameConverter() {} |
| (...skipping 24 matching lines...) Expand all Loading... |
| 65 | 67 |
| 66 // Write disassembly into specified file 'f' using specified NameConverter | 68 // Write disassembly into specified file 'f' using specified NameConverter |
| 67 // (see constructor). | 69 // (see constructor). |
| 68 static void Disassemble(FILE* f, byte* begin, byte* end); | 70 static void Disassemble(FILE* f, byte* begin, byte* end); |
| 69 private: | 71 private: |
| 70 const NameConverter& converter_; | 72 const NameConverter& converter_; |
| 71 | 73 |
| 72 DISALLOW_IMPLICIT_CONSTRUCTORS(Disassembler); | 74 DISALLOW_IMPLICIT_CONSTRUCTORS(Disassembler); |
| 73 }; | 75 }; |
| 74 | 76 |
| 77 class DisassemblerData { |
| 78 public: |
| 79 v8::internal::EmbeddedVector<char, 128> buffer_; |
| 80 v8::internal::EmbeddedVector<char, 32> tmp_buffer_; |
| 81 }; |
| 82 |
| 75 } // namespace disasm | 83 } // namespace disasm |
| 76 | 84 |
| 77 #endif // V8_DISASM_H_ | 85 #endif // V8_DISASM_H_ |
| OLD | NEW |