| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 10 matching lines...) Expand all Loading... |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_CPU_PROFILER_INL_H_ | 28 #ifndef V8_CPU_PROFILER_INL_H_ |
| 29 #define V8_CPU_PROFILER_INL_H_ | 29 #define V8_CPU_PROFILER_INL_H_ |
| 30 | 30 |
| 31 #include "cpu-profiler.h" |
| 32 |
| 31 #ifdef ENABLE_CPP_PROFILES_PROCESSOR | 33 #ifdef ENABLE_CPP_PROFILES_PROCESSOR |
| 32 | 34 |
| 33 #include "circular-queue-inl.h" | 35 #include "circular-queue-inl.h" |
| 34 #include "profile-generator-inl.h" | 36 #include "profile-generator-inl.h" |
| 35 | 37 |
| 36 #include "cpu-profiler.h" | |
| 37 | |
| 38 namespace v8 { | 38 namespace v8 { |
| 39 namespace internal { | 39 namespace internal { |
| 40 | 40 |
| 41 void CodeCreateEventRecord::UpdateCodeMap(CodeMap* code_map) { |
| 42 code_map->AddCode(start, entry, size); |
| 43 } |
| 44 |
| 45 |
| 46 void CodeMoveEventRecord::UpdateCodeMap(CodeMap* code_map) { |
| 47 code_map->MoveCode(from, to); |
| 48 } |
| 49 |
| 50 |
| 51 void CodeDeleteEventRecord::UpdateCodeMap(CodeMap* code_map) { |
| 52 code_map->DeleteCode(start); |
| 53 } |
| 54 |
| 55 |
| 56 void CodeAliasEventRecord::UpdateCodeMap(CodeMap* code_map) { |
| 57 code_map->AddAlias(alias, start); |
| 58 } |
| 59 |
| 60 |
| 41 TickSample* ProfilerEventsProcessor::TickSampleEvent() { | 61 TickSample* ProfilerEventsProcessor::TickSampleEvent() { |
| 42 TickSampleEventRecord* evt = | 62 TickSampleEventRecord* evt = |
| 43 TickSampleEventRecord::cast(ticks_buffer_.Enqueue()); | 63 TickSampleEventRecord::cast(ticks_buffer_.Enqueue()); |
| 44 evt->order = enqueue_order_; // No increment! | 64 evt->order = enqueue_order_; // No increment! |
| 45 return &evt->sample; | 65 return &evt->sample; |
| 46 } | 66 } |
| 47 | 67 |
| 48 } } // namespace v8::internal | 68 } } // namespace v8::internal |
| 49 | 69 |
| 50 #endif // ENABLE_CPP_PROFILES_PROCESSOR | 70 #endif // ENABLE_CPP_PROFILES_PROCESSOR |
| 51 | 71 |
| 52 #endif // V8_CPU_PROFILER_INL_H_ | 72 #endif // V8_CPU_PROFILER_INL_H_ |
| OLD | NEW |