| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 20 matching lines...) Expand all Loading... |
| 31 #endif | 31 #endif |
| 32 | 32 |
| 33 #include "src/perf-jit.h" | 33 #include "src/perf-jit.h" |
| 34 | 34 |
| 35 | 35 |
| 36 namespace v8 { | 36 namespace v8 { |
| 37 namespace internal { | 37 namespace internal { |
| 38 | 38 |
| 39 #ifdef __linux__ | 39 #ifdef __linux__ |
| 40 | 40 |
| 41 const char PerfJitLogger::kFilenameFormatString[] = "perfjit.dump"; | 41 const char PerfJitLogger::kFilenameFormatString[] = "perfjit-%d.dump"; |
| 42 | 42 |
| 43 // Timestamp module name | 43 // Timestamp module name |
| 44 const char PerfJitLogger::kTraceClockDevice[] = "/dev/trace_clock"; | 44 const char PerfJitLogger::kTraceClockDevice[] = "/dev/trace_clock"; |
| 45 | 45 |
| 46 // Extra padding for the PID in the filename | 46 // Extra padding for the PID in the filename |
| 47 const int PerfJitLogger::kFilenameBufferPadding = 16; | 47 const int PerfJitLogger::kFilenameBufferPadding = 16; |
| 48 | 48 |
| 49 | 49 |
| 50 static clockid_t get_clockid(int fd) { | 50 static clockid_t get_clockid(int fd) { |
| 51 return ((~(clockid_t) (fd) << 3) | 3); | 51 return ((~(clockid_t) (fd) << 3) | 3); |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 header.elf_mach = GetElfMach(); | 160 header.elf_mach = GetElfMach(); |
| 161 header.pid = base::OS::GetCurrentProcessId(); | 161 header.pid = base::OS::GetCurrentProcessId(); |
| 162 header.timestamp = | 162 header.timestamp = |
| 163 static_cast<uint64_t>(base::OS::TimeCurrentMillis() * 1000.0); | 163 static_cast<uint64_t>(base::OS::TimeCurrentMillis() * 1000.0); |
| 164 LogWriteBytes(reinterpret_cast<const char*>(&header), sizeof(header)); | 164 LogWriteBytes(reinterpret_cast<const char*>(&header), sizeof(header)); |
| 165 } | 165 } |
| 166 | 166 |
| 167 #endif // defined(__linux__) | 167 #endif // defined(__linux__) |
| 168 | 168 |
| 169 } } // namespace v8::internal | 169 } } // namespace v8::internal |
| OLD | NEW |