--
You received this message because you are subscribed to a topic in the Google Groups "JITWatch" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jitwatch/vpzfphri0OQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jitwatch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
grep "FastIteratorRow hasNext" jvm-slow.log | grep "<task "
<task compile_id='1814' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='119652' iicount='119651' decompiles='2' level='3' stamp='1.918'>
<task compile_id='1873' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='159223' iicount='159224' decompiles='3' level='3' stamp='1.972'>
<task compile_id='1766' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='7120' iicount='7120' level='2' stamp='1.792'>
<task compile_id='1797' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='49718' iicount='49719' decompiles='1' level='2' stamp='1.811'>
<task compile_id='2431' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='184882' iicount='184883' decompiles='4' level='3' stamp='6.471'>
<task compile_id='1815' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='125175' iicount='125176' decompiles='2' stamp='1.925'>
<task compile_id='2432' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='185532' iicount='185533' decompiles='4' stamp='6.472'>
<task compile_id='1798' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='52136' iicount='52137' decompiles='1' stamp='1.812'>
<task compile_id='1878' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='171984' iicount='171982' decompiles='3' stamp='1.985'>
<task compile_id='1787' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='13589' iicount='13591' stamp='1.796'>
GOOD RUN
grep "FastIteratorRow hasNext" jvm-ok.log | grep "<task "
<task compile_id='1763' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='1337' iicount='1337' level='3' stamp='2.028'>
<task compile_id='1792' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='23799' iicount='23800' decompiles='1' level='3' stamp='2.053'>
<task compile_id='1795' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='29256' iicount='29258' decompiles='1' stamp='2.057'>
<task compile_id='1782' method='com/github/animeshtrivedi/FileBench/FastIteratorRow hasNext ()Z' bytes='17' count='8742' iicount='8743' stamp='2.037'>
override def hasNext():Boolean= {
readNext()
!done
}
def readNext(): Unit = {
incomingSize = stream.readInt()
if(incomingSize == -1){
done = true
this.stream.close()
} else {
if (buffer.length < incomingSize) {
/* we resize the buffer */
buffer = new Array[Byte](incomingSize)
}
/* then we read the next value */
readFullByteArray(stream, buffer, incomingSize)
unsafeRow.pointTo(buffer, incomingSize)
}
}
To unsubscribe from this group and all its topics, send an email to jitwatch+u...@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "JITWatch" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jitwatch/vpzfphri0OQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jitwatch+u...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to jitwatch+unsubscribe@googlegroups.com.