1 /* 2 * Copyright (c) 2002, 2025, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. 8 * 9 * This code is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * version 2 for more details (a copy is included in the LICENSE file that 13 * accompanied this code). 14 * 15 * You should have received a copy of the GNU General Public License version 16 * 2 along with this work; if not, write to the Free Software Foundation, 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 * 23 */ 24 25 #include "ci/ciMethod.hpp" 26 #include "code/codeCache.hpp" 27 #include "compiler/compileLog.hpp" 28 #include "jvm.h" 29 #include "memory/allocation.inline.hpp" 30 #include "oops/method.hpp" 31 #include "runtime/mutexLocker.hpp" 32 #include "runtime/os.hpp" 33 34 CompileLog* CompileLog::_first = nullptr; 35 36 // ------------------------------------------------------------------ 37 // CompileLog::CompileLog 38 CompileLog::CompileLog(const char* file_name, FILE* fp, intx thread_id) 39 : _context(_context_buffer, sizeof(_context_buffer)) 40 { 41 initialize(new(mtCompiler) fileStream(fp, true)); 42 _file_end = 0; 43 _thread_id = thread_id; 44 45 _identities_limit = 0; 46 _identities_capacity = 400; 47 _identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler); 48 _file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler); 49 strcpy((char*)_file, file_name); 50 51 // link into the global list 52 { MutexLocker locker(CompileTaskAlloc_lock); 53 _next = _first; 54 _first = this; 55 } 56 } 57 58 CompileLog::~CompileLog() { 59 delete _out; // Close fd in fileStream::~fileStream() 60 _out = nullptr; 61 // Remove partial file after merging in CompileLog::finish_log_on_error 62 unlink(_file); 63 FREE_C_HEAP_ARRAY(char, _identities); 64 FREE_C_HEAP_ARRAY(char, _file); 65 } 66 67 68 // see_tag, pop_tag: Override the default do-nothing methods on xmlStream. 69 // These methods provide a hook for managing the extra context markup. 70 void CompileLog::see_tag(const char* tag, bool push) { 71 if (_context.size() > 0 && _out != nullptr) { 72 _out->write(_context.base(), _context.size()); 73 _context.reset(); 74 } 75 xmlStream::see_tag(tag, push); 76 } 77 void CompileLog::pop_tag(const char* tag) { 78 _context.reset(); // toss any context info. 79 xmlStream::pop_tag(tag); 80 } 81 82 83 // ------------------------------------------------------------------ 84 // CompileLog::identify 85 int CompileLog::identify(ciBaseObject* obj) { 86 if (obj == nullptr) return 0; 87 int id = obj->ident(); 88 if (id < 0) return id; 89 // If it has already been identified, just return the id. 90 if (id < _identities_limit && _identities[id] != 0) return id; 91 // Lengthen the array, if necessary. 92 if (id >= _identities_capacity) { 93 int new_cap = _identities_capacity * 2; 94 if (new_cap <= id) new_cap = id + 100; 95 _identities = REALLOC_C_HEAP_ARRAY(char, _identities, new_cap, mtCompiler); 96 _identities_capacity = new_cap; 97 } 98 while (id >= _identities_limit) { 99 _identities[_identities_limit++] = 0; 100 } 101 assert(id < _identities_limit, "oob"); 102 // Mark this id as processed. 103 // (Be sure to do this before any recursive calls to identify.) 104 _identities[id] = 1; // mark 105 106 // Now, print the object's identity once, in detail. 107 if (obj->is_metadata()) { 108 ciMetadata* mobj = obj->as_metadata(); 109 if (mobj->is_klass()) { 110 ciKlass* klass = mobj->as_klass(); 111 begin_elem("klass id='%d'", id); 112 name(klass); 113 if (!klass->is_loaded()) { 114 print(" unloaded='1'"); 115 } else { 116 print(" flags='%d'", klass->modifier_flags()); 117 } 118 end_elem(); 119 } else if (mobj->is_method()) { 120 ciMethod* method = mobj->as_method(); 121 ciSignature* sig = method->signature(); 122 // Pre-identify items that we will need! 123 identify(sig->return_type()); 124 for (int i = 0; i < sig->count(); i++) { 125 identify(sig->type_at(i)); 126 } 127 begin_elem("method id='%d' holder='%d'", 128 id, identify(method->holder())); 129 name(method->name()); 130 print(" return='%d'", identify(sig->return_type())); 131 if (sig->count() > 0) { 132 print(" arguments='"); 133 for (int i = 0; i < sig->count(); i++) { 134 print((i == 0) ? "%d" : " %d", identify(sig->type_at(i))); 135 } 136 print("'"); 137 } 138 if (!method->is_loaded()) { 139 print(" unloaded='1'"); 140 } else { 141 print(" flags='%d'", (jchar) method->flags().as_int()); 142 // output a few metrics 143 print(" bytes='%d'", method->code_size()); 144 method->log_nmethod_identity(this); 145 //print(" count='%d'", method->invocation_count()); 146 //int bec = method->backedge_count(); 147 //if (bec != 0) print(" backedge_count='%d'", bec); 148 print(" iicount='%d'", method->interpreter_invocation_count()); 149 } 150 end_elem(); 151 } else if (mobj->is_type()) { 152 BasicType type = mobj->as_type()->basic_type(); 153 elem("type id='%d' name='%s'", id, type2name(type)); 154 } else { 155 // Should not happen. 156 elem("unknown id='%d'", id); 157 ShouldNotReachHere(); 158 } 159 } else if (obj->is_symbol()) { 160 begin_elem("symbol id='%d'", id); 161 name(obj->as_symbol()); 162 end_elem(); 163 } else { 164 // Should not happen. 165 elem("unknown id='%d'", id); 166 } 167 return id; 168 } 169 170 void CompileLog::name(ciSymbol* name) { 171 if (name == nullptr) return; 172 print(" name='"); 173 name->print_symbol_on(text()); // handles quoting conventions 174 print("'"); 175 } 176 177 void CompileLog::name(ciKlass* k) { 178 print(" name='"); 179 if (!k->is_loaded()) { 180 text()->print("%s", k->name()->as_klass_external_name()); 181 } else { 182 text()->print("%s", k->external_name()); 183 } 184 print("'"); 185 } 186 187 // ------------------------------------------------------------------ 188 // CompileLog::clear_identities 189 // Forget which identities have been printed. 190 void CompileLog::clear_identities() { 191 _identities_limit = 0; 192 } 193 194 // ------------------------------------------------------------------ 195 // CompileLog::finish_log_on_error 196 // 197 // Note: This function is called after fatal error, avoid unnecessary memory 198 // or stack allocation, use only async-safe functions. It's possible JVM is 199 // only partially initialized. 200 void CompileLog::finish_log_on_error(outputStream* file, char* buf, int buflen) { 201 static bool called_exit = false; 202 if (called_exit) return; 203 called_exit = true; 204 205 CompileLog* log = _first; 206 while (log != nullptr) { 207 log->flush(); 208 const char* partial_file = log->file(); 209 int partial_fd = open(partial_file, O_RDONLY); 210 if (partial_fd != -1) { 211 // print/print_cr may need to allocate large stack buffer to format 212 // strings, here we use snprintf() and print_raw() instead. 213 file->print_raw("<compilation_log thread='"); 214 jio_snprintf(buf, buflen, "%zu", log->thread_id()); 215 file->print_raw(buf); 216 file->print_raw_cr("'>"); 217 218 size_t nr; // number read into buf from partial log 219 // In case of unsuccessful completion, read returns -1. 220 ssize_t bytes_read; 221 // Copy data up to the end of the last <event> element: 222 julong to_read = log->_file_end; 223 while (to_read > 0) { 224 if (to_read < (julong)buflen) 225 nr = (size_t)to_read; 226 else nr = buflen; 227 bytes_read = ::read(partial_fd, buf, (int)nr); 228 if (bytes_read <= 0) break; 229 nr = bytes_read; 230 to_read -= (julong)nr; 231 file->write(buf, nr); 232 } 233 234 // Copy any remaining data inside a quote: 235 bool saw_slop = false; 236 int end_cdata = 0; // state machine [0..2] watching for too many "]]" 237 while ((bytes_read = ::read(partial_fd, buf, buflen-1)) > 0) { 238 nr = bytes_read; 239 buf[buflen-1] = '\0'; 240 if (!saw_slop) { 241 file->print_raw_cr("<fragment>"); 242 file->print_raw_cr("<![CDATA["); 243 saw_slop = true; 244 } 245 // The rest of this loop amounts to a simple copy operation: 246 // { file->write(buf, nr); } 247 // However, it must sometimes output the buffer in parts, 248 // in case there is a CDATA quote embedded in the fragment. 249 const char* bufp; // pointer into buf 250 size_t nw; // number written in each pass of the following loop: 251 for (bufp = buf; nr > 0; nr -= nw, bufp += nw) { 252 // Write up to any problematic CDATA delimiter (usually all of nr). 253 for (nw = 0; nw < nr; nw++) { 254 // First, scan ahead into the buf, checking the state machine. 255 switch (bufp[nw]) { 256 case ']': 257 if (end_cdata < 2) end_cdata += 1; // saturating counter 258 continue; // keep scanning 259 case '>': 260 if (end_cdata == 2) break; // found CDATA delimiter! 261 // else fall through: 262 default: 263 end_cdata = 0; 264 continue; // keep scanning 265 } 266 // If we get here, nw is pointing at a bad '>'. 267 // It is very rare for this to happen. 268 // However, this code has been tested by introducing 269 // CDATA sequences into the compilation log. 270 break; 271 } 272 // Now nw is the number of characters to write, usually == nr. 273 file->write(bufp, nw); 274 if (nw < nr) { 275 // We are about to go around the loop again. 276 // But first, disrupt the ]]> by closing and reopening the quote. 277 file->print_raw("]]><![CDATA["); 278 end_cdata = 0; // reset state machine 279 } 280 } 281 } 282 if (saw_slop) { 283 file->print_raw_cr("]]>"); 284 file->print_raw_cr("</fragment>"); 285 } 286 file->print_raw_cr("</compilation_log>"); 287 ::close(partial_fd); 288 } 289 CompileLog* next_log = log->_next; 290 delete log; // Removes partial file 291 log = next_log; 292 } 293 _first = nullptr; 294 } 295 296 // ------------------------------------------------------------------ 297 // CompileLog::finish_log 298 // 299 // Called during normal shutdown. For now, any clean-up needed in normal 300 // shutdown is also needed in VM abort, so is covered by finish_log_on_error(). 301 // Just allocate a buffer and call finish_log_on_error(). 302 void CompileLog::finish_log(outputStream* file) { 303 char buf[4 * K]; 304 finish_log_on_error(file, buf, sizeof(buf)); 305 } 306 307 // ------------------------------------------------------------------ 308 // CompileLog::inline_success 309 // 310 // Print about successful method inlining. 311 void CompileLog::inline_success(const char* reason) { 312 begin_elem("inline_success reason='"); 313 text("%s", reason); 314 end_elem("'"); 315 } 316 317 // ------------------------------------------------------------------ 318 // CompileLog::inline_fail 319 // 320 // Print about failed method inlining. 321 void CompileLog::inline_fail(const char* reason) { 322 begin_elem("inline_fail reason='"); 323 text("%s", reason); 324 end_elem("'"); 325 } 326 327 // ------------------------------------------------------------------ 328 // CompileLog::set_context 329 // 330 // Set XML tag as an optional marker - it is printed only if 331 // there are other entries after until it is reset. 332 void CompileLog::set_context(const char* format, ...) { 333 va_list ap; 334 va_start(ap, format); 335 clear_context(); 336 _context.print("<"); 337 _context.vprint(format, ap); 338 _context.print_cr("/>"); 339 va_end(ap); 340 } 341 342 // ------------------------------------------------------------------ 343 // CompileLog::code_cache_state 344 // 345 // Print code cache state. 346 void CompileLog::code_cache_state() { 347 begin_elem("code_cache"); 348 CodeCache::log_state(this); 349 end_elem("%s", ""); 350 }