<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems-testing (2011-01-24)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
<font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* CoverageReaderQEMU.cc: Add debug for trace block having a bad address
range.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/ChangeLog.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>covoar/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/CoverageReaderQEMU.cc.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>covoar/CoverageReaderQEMU.cc</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/covoar/ChangeLog:1.15 rtems-testing/covoar/ChangeLog:1.16
--- rtems-testing/covoar/ChangeLog:1.15 Mon Jan 17 16:19:16 2011
+++ rtems-testing/covoar/ChangeLog Mon Jan 24 14:29:23 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * CoverageReaderQEMU.cc: Add debug for trace block having a bad address
+ range.
+
</font> 2011-01-17 Joel Sherrill <joel.sherrilL@OARcorp.com>
* CoverageMapBase.cc, CoverageMapBase.h, DesiredSymbols.cc: Improve NOP
<font color='#006600'>diff -u rtems-testing/covoar/CoverageReaderQEMU.cc:1.1 rtems-testing/covoar/CoverageReaderQEMU.cc:1.2
--- rtems-testing/covoar/CoverageReaderQEMU.cc:1.1 Mon May 24 15:07:07 2010
+++ rtems-testing/covoar/CoverageReaderQEMU.cc Mon Jan 24 14:29:23 2011
</font><font color='#997700'>@@ -139,9 +139,17 @@
</font> }
}
<font color='#880000'>- // Determine if additional branch information is available.
</font><font color='#000088'>+ // Determine if additional branch information is available.
</font> if ( (entry->op & branchInfo) != 0 ) {
unsigned int a = entry->pc + entry->size - 1;
<font color='#000088'>+if ( (entry->pc < aCoverageMap->getLowAddress()) ||
+ (entry->pc > aCoverageMap->getHighAddress()) )
+ fprintf( stderr, "*** entry PC of trace block is too low\n" );
+
+if ( (a < aCoverageMap->getLowAddress()) ||
+ (a > aCoverageMap->getHighAddress()) )
+ fprintf( stderr, "*** last byte of trace block is too high\n" );
+
</font> while (!aCoverageMap->isStartOfInstruction(a))
a--;
if (entry->op & taken) {
</pre>
<p> </p>
<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>