Lines Matching refs:PerfJitLogger

108 const char PerfJitLogger::kFilenameFormatString[] = "./jit-%d.dump";
111 const int PerfJitLogger::kFilenameBufferPadding = 16;
113 base::LazyRecursiveMutex PerfJitLogger::file_mutex_;
115 uint64_t PerfJitLogger::reference_count_ = 0;
116 void* PerfJitLogger::marker_address_ = nullptr;
117 uint64_t PerfJitLogger::code_index_ = 0;
118 FILE* PerfJitLogger::perf_output_handle_ = nullptr;
120 void PerfJitLogger::OpenJitDumpFile() { in OpenJitDumpFile()
142 void PerfJitLogger::CloseJitDumpFile() { in CloseJitDumpFile()
148 void* PerfJitLogger::OpenMarkerFile(int fd) { in OpenMarkerFile()
160 void PerfJitLogger::CloseMarkerFile(void* marker_address) { in CloseMarkerFile()
167 PerfJitLogger::PerfJitLogger(Isolate* isolate) : CodeEventLogger(isolate) { in PerfJitLogger() function in v8::internal::PerfJitLogger
179 PerfJitLogger::~PerfJitLogger() { in ~PerfJitLogger()
189 uint64_t PerfJitLogger::GetTimestamp() { in GetTimestamp()
198 void PerfJitLogger::LogRecordedBuffer(AbstractCode* abstract_code, in LogRecordedBuffer()
238 void PerfJitLogger::LogRecordedBuffer(const wasm::WasmCode* code, in LogRecordedBuffer()
248 void PerfJitLogger::WriteJitCodeLoadEntry(const uint8_t* code_pointer, in WriteJitCodeLoadEntry()
325 void PerfJitLogger::LogWriteDebugInfo(Code* code, SharedFunctionInfo* shared) { in LogWriteDebugInfo()
388 void PerfJitLogger::LogWriteUnwindingInfo(Code* code) { in LogWriteUnwindingInfo()
423 void PerfJitLogger::CodeMoveEvent(AbstractCode* from, AbstractCode* to) { in CodeMoveEvent()
429 void PerfJitLogger::LogWriteBytes(const char* bytes, int size) { in LogWriteBytes()
435 void PerfJitLogger::LogWriteHeader() { in LogWriteHeader()