| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // Definition of MiniDisassembler. | 4 // Definition of MiniDisassembler. |
| 5 | 5 |
| 6 #ifndef TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ | 6 #ifndef TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ |
| 7 #define TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ | 7 #define TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ |
| 8 | 8 |
| 9 #include "sidestep/mini_disassembler_types.h" | 9 #include "sidestep/mini_disassembler_types.h" |
| 10 | 10 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 146 |
| 147 // Indicators of whether we got certain prefixes that certain | 147 // Indicators of whether we got certain prefixes that certain |
| 148 // silly Intel instructions depend on in nonstandard ways for | 148 // silly Intel instructions depend on in nonstandard ways for |
| 149 // their behaviors. | 149 // their behaviors. |
| 150 bool got_f2_prefix_, got_f3_prefix_, got_66_prefix_; | 150 bool got_f2_prefix_, got_f3_prefix_, got_66_prefix_; |
| 151 }; | 151 }; |
| 152 | 152 |
| 153 }; // namespace sidestep | 153 }; // namespace sidestep |
| 154 | 154 |
| 155 #endif // TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ | 155 #endif // TRACELINE_SIDESTEP_MINI_DISASSEMBLER_H_ |
| 156 | |
| OLD | NEW |