| 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 21 matching lines...) Expand all Loading... |
| 32 #include "bootstrapper.h" | 32 #include "bootstrapper.h" |
| 33 #include "code-stubs.h" | 33 #include "code-stubs.h" |
| 34 #include "codegen.h" | 34 #include "codegen.h" |
| 35 #include "compilation-cache.h" | 35 #include "compilation-cache.h" |
| 36 #include "compiler.h" | 36 #include "compiler.h" |
| 37 #include "debug.h" | 37 #include "debug.h" |
| 38 #include "execution.h" | 38 #include "execution.h" |
| 39 #include "global-handles.h" | 39 #include "global-handles.h" |
| 40 #include "ic.h" | 40 #include "ic.h" |
| 41 #include "ic-inl.h" | 41 #include "ic-inl.h" |
| 42 #include "messages.h" |
| 42 #include "natives.h" | 43 #include "natives.h" |
| 43 #include "stub-cache.h" | 44 #include "stub-cache.h" |
| 44 #include "log.h" | 45 #include "log.h" |
| 45 | 46 |
| 46 #include "../include/v8-debug.h" | 47 #include "../include/v8-debug.h" |
| 47 | 48 |
| 48 namespace v8 { | 49 namespace v8 { |
| 49 namespace internal { | 50 namespace internal { |
| 50 | 51 |
| 51 #ifdef ENABLE_DEBUGGER_SUPPORT | 52 #ifdef ENABLE_DEBUGGER_SUPPORT |
| (...skipping 2747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2799 { | 2800 { |
| 2800 Locker locker; | 2801 Locker locker; |
| 2801 Debugger::CallMessageDispatchHandler(); | 2802 Debugger::CallMessageDispatchHandler(); |
| 2802 } | 2803 } |
| 2803 } | 2804 } |
| 2804 } | 2805 } |
| 2805 | 2806 |
| 2806 #endif // ENABLE_DEBUGGER_SUPPORT | 2807 #endif // ENABLE_DEBUGGER_SUPPORT |
| 2807 | 2808 |
| 2808 } } // namespace v8::internal | 2809 } } // namespace v8::internal |
| OLD | NEW |