| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-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 23 matching lines...) Expand all Loading... |
| 34 #include "execution.h" | 34 #include "execution.h" |
| 35 #include "factory.h" | 35 #include "factory.h" |
| 36 #include "hashmap.h" | 36 #include "hashmap.h" |
| 37 #include "platform.h" | 37 #include "platform.h" |
| 38 #include "string-stream.h" | 38 #include "string-stream.h" |
| 39 #include "v8threads.h" | 39 #include "v8threads.h" |
| 40 | 40 |
| 41 #ifdef ENABLE_DEBUGGER_SUPPORT | 41 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 42 #include "../include/v8-debug.h" | 42 #include "../include/v8-debug.h" |
| 43 | 43 |
| 44 namespace v8 { namespace internal { | 44 namespace v8 { |
| 45 namespace internal { |
| 45 | 46 |
| 46 | 47 |
| 47 // Forward declarations. | 48 // Forward declarations. |
| 48 class EnterDebugger; | 49 class EnterDebugger; |
| 49 | 50 |
| 50 | 51 |
| 51 // Step actions. NOTE: These values are in macros.py as well. | 52 // Step actions. NOTE: These values are in macros.py as well. |
| 52 enum StepAction { | 53 enum StepAction { |
| 53 StepNone = -1, // Stepping not prepared. | 54 StepNone = -1, // Stepping not prepared. |
| 54 StepOut = 0, // Step out of the current function. | 55 StepOut = 0, // Step out of the current function. |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 Debug::AddressId id_; | 819 Debug::AddressId id_; |
| 819 int reg_; | 820 int reg_; |
| 820 }; | 821 }; |
| 821 | 822 |
| 822 | 823 |
| 823 } } // namespace v8::internal | 824 } } // namespace v8::internal |
| 824 | 825 |
| 825 #endif // ENABLE_DEBUGGER_SUPPORT | 826 #endif // ENABLE_DEBUGGER_SUPPORT |
| 826 | 827 |
| 827 #endif // V8_DEBUG_H_ | 828 #endif // V8_DEBUG_H_ |
| OLD | NEW |