| 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 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 // Don't allow step into functions in the native context. | 1303 // Don't allow step into functions in the native context. |
| 1304 if (function->context()->global() != Top::context()->builtins()) { | 1304 if (function->context()->global() != Top::context()->builtins()) { |
| 1305 if (function->shared()->code() == | 1305 if (function->shared()->code() == |
| 1306 Builtins::builtin(Builtins::FunctionApply) || | 1306 Builtins::builtin(Builtins::FunctionApply) || |
| 1307 function->shared()->code() == | 1307 function->shared()->code() == |
| 1308 Builtins::builtin(Builtins::FunctionCall)) { | 1308 Builtins::builtin(Builtins::FunctionCall)) { |
| 1309 // Handle function.apply and function.call separately to flood the | 1309 // Handle function.apply and function.call separately to flood the |
| 1310 // function to be called and not the code for Builtins::FunctionApply or | 1310 // function to be called and not the code for Builtins::FunctionApply or |
| 1311 // Builtins::FunctionCall. The receiver of call/apply is the target | 1311 // Builtins::FunctionCall. The receiver of call/apply is the target |
| 1312 // function. | 1312 // function. |
| 1313 if (!holder.is_null() && holder->IsJSFunction()) { | 1313 if (!holder.is_null() && holder->IsJSFunction() && |
| 1314 JSFunction::cast(*holder)->context()->global() != |
| 1315 Top::context()->builtins()) { |
| 1314 Handle<SharedFunctionInfo> shared_info( | 1316 Handle<SharedFunctionInfo> shared_info( |
| 1315 JSFunction::cast(*holder)->shared()); | 1317 JSFunction::cast(*holder)->shared()); |
| 1316 Debug::FloodWithOneShot(shared_info); | 1318 Debug::FloodWithOneShot(shared_info); |
| 1317 } | 1319 } |
| 1318 } else { | 1320 } else { |
| 1319 Debug::FloodWithOneShot(Handle<SharedFunctionInfo>(function->shared())); | 1321 Debug::FloodWithOneShot(Handle<SharedFunctionInfo>(function->shared())); |
| 1320 } | 1322 } |
| 1321 } | 1323 } |
| 1322 } | 1324 } |
| 1323 } | 1325 } |
| (...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2562 | 2564 |
| 2563 | 2565 |
| 2564 void LockingCommandMessageQueue::Clear() { | 2566 void LockingCommandMessageQueue::Clear() { |
| 2565 ScopedLock sl(lock_); | 2567 ScopedLock sl(lock_); |
| 2566 queue_.Clear(); | 2568 queue_.Clear(); |
| 2567 } | 2569 } |
| 2568 | 2570 |
| 2569 #endif // ENABLE_DEBUGGER_SUPPORT | 2571 #endif // ENABLE_DEBUGGER_SUPPORT |
| 2570 | 2572 |
| 2571 } } // namespace v8::internal | 2573 } } // namespace v8::internal |
| OLD | NEW |