Searched defs:log (Results 326 - 330 of 330) sorted by relevance

<<11121314

/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp101 // then brackets are put into the log, with time stamps and node counts.
646 CompileLog* log() const { return _log; } function in class:Compile
H A DgraphKit.cpp584 if (C->log() != NULL)
585 C->log()->elem("hot_throw preallocated='1' reason='%s'",
618 if (C->log() != NULL)
619 C->log()->elem("hot_throw preallocated='0' reason='%s' mcount='%d'",
1939 CompileLog* log = C->log(); local
1940 if (log != NULL) {
1941 int kid = (klass == NULL)? -1: log->identify(klass);
1942 log->begin_elem("uncommon_trap bci='%d'", bci());
1944 log
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java192 private static final PlatformLogger log = PlatformLogger.getLogger("java.awt.Component"); field in class:Component
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp674 // log JavaThread being processed by oops_do
922 ObjPtrQueue _satb_mark_queue; // Thread-local log for SATB barrier.
926 DirtyCardQueue _dirty_card_queue; // Thread-local log for dirty cards.
1807 CompileLog* log() { return _log; } function in class:CompilerThread
1808 void init_log(CompileLog* log) { argument
1811 _log = log;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp2057 void log (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_log, from, LIR_OprFact::illegalOpr, to, tmp)); } function in class:LIR_List

Completed in 91 milliseconds

<<11121314