Lines Matching refs:PerfJitLogger
114 const char PerfJitLogger::kFilenameFormatString[] = "./jit-%d.dump";
117 const int PerfJitLogger::kFilenameBufferPadding = 16;
122 base::LazyRecursiveMutex PerfJitLogger::file_mutex_;
124 int PerfJitLogger::process_id_ = 0;
125 uint64_t PerfJitLogger::reference_count_ = 0;
126 void* PerfJitLogger::marker_address_ = nullptr;
127 uint64_t PerfJitLogger::code_index_ = 0;
128 FILE* PerfJitLogger::perf_output_handle_ = nullptr;
130 void PerfJitLogger::OpenJitDumpFile() { in OpenJitDumpFile()
156 void PerfJitLogger::CloseJitDumpFile() { in CloseJitDumpFile()
162 void* PerfJitLogger::OpenMarkerFile(int fd) { in OpenMarkerFile()
174 void PerfJitLogger::CloseMarkerFile(void* marker_address) { in CloseMarkerFile()
181 PerfJitLogger::PerfJitLogger(Isolate* isolate) : CodeEventLogger(isolate) { in PerfJitLogger() function in v8::internal::PerfJitLogger
194 PerfJitLogger::~PerfJitLogger() { in ~PerfJitLogger()
204 uint64_t PerfJitLogger::GetTimestamp() { in GetTimestamp()
213 void PerfJitLogger::LogRecordedBuffer( in LogRecordedBuffer()
255 void PerfJitLogger::LogRecordedBuffer(const wasm::WasmCode* code, in LogRecordedBuffer()
268 void PerfJitLogger::WriteJitCodeLoadEntry(const uint8_t* code_pointer, in WriteJitCodeLoadEntry()
331 void PerfJitLogger::LogWriteDebugInfo(Handle<Code> code, in LogWriteDebugInfo()
413 void PerfJitLogger::LogWriteDebugInfo(const wasm::WasmCode* code) { in LogWriteDebugInfo()
481 void PerfJitLogger::LogWriteUnwindingInfo(Code code) { in LogWriteUnwindingInfo()
516 void PerfJitLogger::CodeMoveEvent(AbstractCode from, AbstractCode to) { in CodeMoveEvent()
522 void PerfJitLogger::LogWriteBytes(const char* bytes, int size) { in LogWriteBytes()
528 void PerfJitLogger::LogWriteHeader() { in LogWriteHeader()