| 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 12 matching lines...) Expand all Loading... |
| 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" | 31 #include "cpu-profiler.h" |
| 32 | 32 |
| 33 #ifdef ENABLE_LOGGING_AND_PROFILING | |
| 34 | |
| 35 #include <new> | 33 #include <new> |
| 36 #include "circular-queue-inl.h" | 34 #include "circular-queue-inl.h" |
| 37 #include "profile-generator-inl.h" | 35 #include "profile-generator-inl.h" |
| 38 #include "unbound-queue-inl.h" | 36 #include "unbound-queue-inl.h" |
| 39 | 37 |
| 40 namespace v8 { | 38 namespace v8 { |
| 41 namespace internal { | 39 namespace internal { |
| 42 | 40 |
| 43 void CodeCreateEventRecord::UpdateCodeMap(CodeMap* code_map) { | 41 void CodeCreateEventRecord::UpdateCodeMap(CodeMap* code_map) { |
| 44 code_map->AddCode(start, entry, size); | 42 code_map->AddCode(start, entry, size); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 return FLAG_prof_browser_mode | 74 return FLAG_prof_browser_mode |
| 77 && (tag != Logger::CALLBACK_TAG | 75 && (tag != Logger::CALLBACK_TAG |
| 78 && tag != Logger::FUNCTION_TAG | 76 && tag != Logger::FUNCTION_TAG |
| 79 && tag != Logger::LAZY_COMPILE_TAG | 77 && tag != Logger::LAZY_COMPILE_TAG |
| 80 && tag != Logger::REG_EXP_TAG | 78 && tag != Logger::REG_EXP_TAG |
| 81 && tag != Logger::SCRIPT_TAG); | 79 && tag != Logger::SCRIPT_TAG); |
| 82 } | 80 } |
| 83 | 81 |
| 84 } } // namespace v8::internal | 82 } } // namespace v8::internal |
| 85 | 83 |
| 86 #endif // ENABLE_LOGGING_AND_PROFILING | |
| 87 | |
| 88 #endif // V8_CPU_PROFILER_INL_H_ | 84 #endif // V8_CPU_PROFILER_INL_H_ |
| OLD | NEW |