| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 void Unload(); | 229 void Unload(); |
| 230 bool IsLoaded() { return !debug_context_.is_null(); } | 230 bool IsLoaded() { return !debug_context_.is_null(); } |
| 231 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; } | 231 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; } |
| 232 void PreemptionWhileInDebugger(); | 232 void PreemptionWhileInDebugger(); |
| 233 void Iterate(ObjectVisitor* v); | 233 void Iterate(ObjectVisitor* v); |
| 234 | 234 |
| 235 NO_INLINE(void PutValuesOnStackAndDie(int start, | 235 NO_INLINE(void PutValuesOnStackAndDie(int start, |
| 236 Address c_entry_fp, | 236 Address c_entry_fp, |
| 237 Address last_fp, | 237 Address last_fp, |
| 238 Address larger_fp, | 238 Address larger_fp, |
| 239 Address last_in_fp, |
| 240 Address last_out_fp, |
| 239 int count, | 241 int count, |
| 240 int end)); | 242 int end)); |
| 241 Object* Break(Arguments args); | 243 Object* Break(Arguments args); |
| 242 void SetBreakPoint(Handle<JSFunction> function, | 244 void SetBreakPoint(Handle<JSFunction> function, |
| 243 Handle<Object> break_point_object, | 245 Handle<Object> break_point_object, |
| 244 int* source_position); | 246 int* source_position); |
| 245 bool SetBreakPointForScript(Handle<Script> script, | 247 bool SetBreakPointForScript(Handle<Script> script, |
| 246 Handle<Object> break_point_object, | 248 Handle<Object> break_point_object, |
| 247 int* source_position); | 249 int* source_position); |
| 248 void ClearBreakPoint(Handle<Object> break_point_object); | 250 void ClearBreakPoint(Handle<Object> break_point_object); |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 | 1043 |
| 1042 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); | 1044 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); |
| 1043 }; | 1045 }; |
| 1044 | 1046 |
| 1045 | 1047 |
| 1046 } } // namespace v8::internal | 1048 } } // namespace v8::internal |
| 1047 | 1049 |
| 1048 #endif // ENABLE_DEBUGGER_SUPPORT | 1050 #endif // ENABLE_DEBUGGER_SUPPORT |
| 1049 | 1051 |
| 1050 #endif // V8_DEBUG_H_ | 1052 #endif // V8_DEBUG_H_ |
| OLD | NEW |