| OLD | NEW |
| 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 7683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7694 | 7694 |
| 7695 #endif // ENABLE_DEBUGGER_SUPPORT | 7695 #endif // ENABLE_DEBUGGER_SUPPORT |
| 7696 | 7696 |
| 7697 #ifdef ENABLE_LOGGING_AND_PROFILING | 7697 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 7698 | 7698 |
| 7699 static Object* Runtime_ProfilerResume(Arguments args) { | 7699 static Object* Runtime_ProfilerResume(Arguments args) { |
| 7700 NoHandleAllocation ha; | 7700 NoHandleAllocation ha; |
| 7701 ASSERT(args.length() == 1); | 7701 ASSERT(args.length() == 1); |
| 7702 | 7702 |
| 7703 CONVERT_CHECKED(Smi, smi_modules, args[0]); | 7703 CONVERT_CHECKED(Smi, smi_modules, args[0]); |
| 7704 Logger::ResumeProfiler(smi_modules->value()); | 7704 v8::V8::ResumeProfilerEx(smi_modules->value()); |
| 7705 return Heap::undefined_value(); | 7705 return Heap::undefined_value(); |
| 7706 } | 7706 } |
| 7707 | 7707 |
| 7708 | 7708 |
| 7709 static Object* Runtime_ProfilerPause(Arguments args) { | 7709 static Object* Runtime_ProfilerPause(Arguments args) { |
| 7710 NoHandleAllocation ha; | 7710 NoHandleAllocation ha; |
| 7711 ASSERT(args.length() == 1); | 7711 ASSERT(args.length() == 1); |
| 7712 | 7712 |
| 7713 CONVERT_CHECKED(Smi, smi_modules, args[0]); | 7713 CONVERT_CHECKED(Smi, smi_modules, args[0]); |
| 7714 Logger::PauseProfiler(smi_modules->value()); | 7714 v8::V8::PauseProfilerEx(smi_modules->value()); |
| 7715 return Heap::undefined_value(); | 7715 return Heap::undefined_value(); |
| 7716 } | 7716 } |
| 7717 | 7717 |
| 7718 #endif // ENABLE_LOGGING_AND_PROFILING | 7718 #endif // ENABLE_LOGGING_AND_PROFILING |
| 7719 | 7719 |
| 7720 // Finds the script object from the script data. NOTE: This operation uses | 7720 // Finds the script object from the script data. NOTE: This operation uses |
| 7721 // heap traversal to find the function generated for the source position | 7721 // heap traversal to find the function generated for the source position |
| 7722 // for the requested break point. For lazily compiled functions several heap | 7722 // for the requested break point. For lazily compiled functions several heap |
| 7723 // traversals might be required rendering this operation as a rather slow | 7723 // traversals might be required rendering this operation as a rather slow |
| 7724 // operation. However for setting break points which is normally done through | 7724 // operation. However for setting break points which is normally done through |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7958 } else { | 7958 } else { |
| 7959 // Handle last resort GC and make sure to allow future allocations | 7959 // Handle last resort GC and make sure to allow future allocations |
| 7960 // to grow the heap without causing GCs (if possible). | 7960 // to grow the heap without causing GCs (if possible). |
| 7961 Counters::gc_last_resort_from_js.Increment(); | 7961 Counters::gc_last_resort_from_js.Increment(); |
| 7962 Heap::CollectAllGarbage(false); | 7962 Heap::CollectAllGarbage(false); |
| 7963 } | 7963 } |
| 7964 } | 7964 } |
| 7965 | 7965 |
| 7966 | 7966 |
| 7967 } } // namespace v8::internal | 7967 } } // namespace v8::internal |
| OLD | NEW |