Lines Matching defs:code

5  * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
28 #include "code/codeCache.hpp"
210 log(thread, "nmethod %d%s " INTPTR_FORMAT " code ["INTPTR_FORMAT ", " INTPTR_FORMAT "]",
307 // CompileTask::code/set_code
308 nmethod* CompileTask::code() const {
310 return _code_handle->code();
569 nmethod* nm = code();
916 // The os-priority is set in the CompilerThread startup code itself
1205 nmethod* method_code = method->code();
1244 // the compilation. Native lookups can load code, which is not
1259 assert(method->has_native_function(), "must have native code by now");
1273 // If the compiler is shut off due to code cache flushing or otherwise,
1299 return osr_bci == InvocationEntryBci ? method->code() : method->lookup_osr_nmethod_for(osr_bci, comp_level, false);
1322 nmethod* result = method->code();
1430 // Move this code over from c1_Compiler.cpp
1567 // the code cache is really full
1570 // Attempt to start cleaning the code cache while there is still a little headroom
1604 nmethod* nm = method->code();
1779 if (!ci_env.failing() && task->code() == NULL) {
1804 nmethod* code = task->code();
1805 if (code != NULL) {
1806 _compilation_log->log_nmethod(thread, code);
1816 event.set_codeSize((task->code() == NULL) ? 0 : task->code()->total_size());
1834 int code_size = (task->code() == NULL) ? 0 : task->code()->total_size();
1877 // try code cache cleaning so compilation can continue later.
1883 // Dump code cache state into a buffer before locking the tty,
1894 warning("Try increasing the code cache size using -XX:ReservedCodeCacheSize=");
1976 // Inlined code from jni_PushLocalFrame()
2025 nmethod* code = task->code();
2028 assert(code == NULL || code->is_locked_by_vm(), "will survive the MutexLocker");
2041 } else if (code == NULL) {
2090 _sum_nmethod_size += code->total_size();
2091 _sum_nmethod_code_size += code->insts_size();
2095 _perf_sum_nmethod_size->inc( code->total_size());
2096 _perf_sum_nmethod_code_size->inc(code->insts_size());
2140 tty->print_cr(" nmethod code size : %6d bytes", CompileBroker::_sum_nmethod_code_size);