<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Entropy Wave Open Source &#187; orc</title>
	<atom:link href="http://code.entropywave.com/category/orc/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.entropywave.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 20:53:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Orc-0.4.12 and 0.4.13</title>
		<link>http://code.entropywave.com/2011/04/orc-0-4-12-and-0-4-13/</link>
		<comments>http://code.entropywave.com/2011/04/orc-0-4-12-and-0-4-13/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 00:39:04 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=54</guid>
		<description><![CDATA[This is what happens when you rush a release.  Not only did I forget to post about 0.4.12, but the inclusion of two code generation bugs (both easily caught by the test suite) made a quick follow-up 0.4.13 release a necessity. 0.4.13 ====== Fixes two serious code generation bugs in 0.4.12 on SSE and Altivec.  [...]]]></description>
			<content:encoded><![CDATA[<p>This is what happens when you rush a release.  Not only did I forget to post about 0.4.12, but the inclusion of two code generation bugs (both easily caught by the test suite) made a quick follow-up 0.4.13 release a necessity.<br />
0.4.13<br />
======</p>
<p>Fixes two serious code generation bugs in 0.4.12 on SSE and<br />
Altivec.  Also added some compatibility code to mitigate<br />
the previous automatic inclusion of stdint.h.</p>
<p>0.4.12<br />
======</p>
<p>This is primarily a bug fixing release.</p>
<p>- Fix gcc-4.6 warnings in generated code<br />
- Codegen fixes for Altivec.  Passes regression tests again.<br />
- More error checking for code allocation.<br />
- NEON: floating point improvements<br />
- Removed stdint.h from API.  This could theoretically cause<br />
breakage if you depended on orc to include stdint.h.</p>
<p>One new feature is the OrcCode structure, which keeps track of<br />
compiled code.  This now allows applications to free unused code.</p>
<p>Internally, x86 code generation was completely refactored to add<br />
an intermediate stage, which will later be used for instruction<br />
reordering.  None of this is useful yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2011/04/orc-0-4-12-and-0-4-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc Presentation Online</title>
		<link>http://code.entropywave.com/2011/03/orc-presentation-online/</link>
		<comments>http://code.entropywave.com/2011/03/orc-presentation-online/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 00:50:31 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>
		<category><![CDATA[conference video]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[gstreamer conference]]></category>
		<category><![CDATA[orc presentation]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[webm]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=52</guid>
		<description><![CDATA[David Schleef&#8217;s presentation on Orc at the GStreamer conference in Cambridge, November 2010 is now available in WebM format on the Free Electrons web site.]]></description>
			<content:encoded><![CDATA[<p>David Schleef&#8217;s presentation on Orc at the <a href="http://gstreamer.freedesktop.org/conference/">GStreamer conference</a> in Cambridge, November 2010 is now <a href="http://free-electrons.com/blog/gst-2010-videos/">available</a> in WebM format on the <a href="http://free-electrons.com/">Free Electrons</a> web site.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2011/03/orc-presentation-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc-0.4.10</title>
		<link>http://code.entropywave.com/2010/10/orc-0-4-10/</link>
		<comments>http://code.entropywave.com/2010/10/orc-0-4-10/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 00:42:15 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=49</guid>
		<description><![CDATA[Changes: &#8211; Added several simple 64-bit opcodes &#8211; Improved debugging by adding ORC_CODE=emulate &#8211; Allocation of mmap&#8217;d areas for code now has several fallback methods, in order to placate various SELinux configurations. &#8211; Various speed improvements in SSE backend &#8211; Add SSE implementations of ldreslinl and ldresnearl. &#8211; Update Mersenne Twister example There was a [...]]]></description>
			<content:encoded><![CDATA[<p>Changes:</p>
<p> &#8211; Added several simple 64-bit opcodes<br />
 &#8211; Improved debugging by adding ORC_CODE=emulate<br />
 &#8211; Allocation of mmap&#8217;d areas for code now has several fallback<br />
   methods, in order to placate various SELinux configurations.<br />
 &#8211; Various speed improvements in SSE backend<br />
 &#8211; Add SSE implementations of ldreslinl and ldresnearl.<br />
 &#8211; Update Mersenne Twister example</p>
<p>There was a bug in the calculation of maximum loop shift that, when<br />
fixed, increases the speed of certain functions by a factor of two.<br />
However, the fix also triggers a bug in Schroedinger, which is fixed<br />
in the 1.0.10 release.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2010/10/orc-0-4-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc-0.4.7 released</title>
		<link>http://code.entropywave.com/2010/08/orc-0-4-7-released/</link>
		<comments>http://code.entropywave.com/2010/08/orc-0-4-7-released/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 08:13:55 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=47</guid>
		<description><![CDATA[Changes: &#8211; Lots of specialized new opcodes and opcode prefixes. &#8211; Important fixes for ARM backend &#8211; Improved emulation of programs (much faster) &#8211; Implemented fallback rules for almost all opcodes for SSE and NEON backends &#8211; Performance improvements for SSE and NEON backends. &#8211; Many fixes to make larger programs compile properly. &#8211; 64-bit [...]]]></description>
			<content:encoded><![CDATA[<p>Changes:</p>
<p> &#8211; Lots of specialized new opcodes and opcode prefixes.<br />
 &#8211; Important fixes for ARM backend<br />
 &#8211; Improved emulation of programs (much faster)<br />
 &#8211; Implemented fallback rules for almost all opcodes for<br />
   SSE and NEON backends<br />
 &#8211; Performance improvements for SSE and NEON backends.<br />
 &#8211; Many fixes to make larger programs compile properly.<br />
 &#8211; 64-bit data types are now fully implemented, although<br />
   there are few operations on them.</p>
<p>Loads and stores are now handled by separate opcodes (loadb,<br />
storeb, etc).  For compatibility, these are automatically<br />
included where necessary.  This allowed new specialized<br />
loading opcodes, for example, resampling a source array<br />
for use in scaling images.</p>
<p>Opcodes may now be prefixed by &#8220;x2&#8243; or &#8220;x4&#8243;, indicating that<br />
a operation should be done on 2 or 4 parts of a proportionally<br />
larger value.  For example, &#8220;x4 addusb&#8221; performs 4 saturated<br />
unsigned additions on each of the four bytes of 32-bit<br />
quantities.  This is useful in pixel operations.</p>
<p>The MMX backend is now (semi-) automatically generated from<br />
the SSE backend.</p>
<p>The orcc tool has a new option &#8220;&#8211;inline&#8221;, which creates inline<br />
versions of the Orc stub functions.  The orcc tool also recognizes<br />
a new directive &#8216;.init&#8217;, which instructs the compiler to generate<br />
an initialization function, which when called at application init<br />
time, compiles all the generated functions.  This allows the<br />
generated stub functions to avoid checking if the function has<br />
already been compiled.  The use of these two features can<br />
dramatically decrease the cost of calling Orc functions.</p>
<p>Known Bugs: Orc generates code that crashes on 64-bit OS/X.</p>
<p>Plans for 0.4.8: (was 2.5 for 4 this time around, not too bad!)<br />
Document all the new features in 0.4.7.  Instruction scheduler.<br />
Code and API cleanup.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2010/08/orc-0-4-7-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc-0.4.6 released</title>
		<link>http://code.entropywave.com/2010/07/orc-0-4-6-released/</link>
		<comments>http://code.entropywave.com/2010/07/orc-0-4-6-released/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:14:56 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=35</guid>
		<description><![CDATA[Changes: &#8211; Various fixes to make Orc more portable &#8211; Major performance improvements to NEON backend &#8211; Minor performance improvements to SSE backend &#8211; Major improvements to ARM backend, now passes regression tests. The defaults for floating point operations have been changed somewhat: NANs are handled more like the IEEE 754 standard, and denormals in [...]]]></description>
			<content:encoded><![CDATA[<p>Changes:</p>
<p> &#8211; Various fixes to make Orc more portable<br />
 &#8211; Major performance improvements to NEON backend<br />
 &#8211; Minor performance improvements to SSE backend<br />
 &#8211; Major improvements to ARM backend, now passes regression<br />
   tests.</p>
<p>The defaults for floating point operations have been changed<br />
somewhat: NANs are handled more like the IEEE 754 standard,<br />
and denormals in operations are treated as zeros.  The NAN<br />
changes causes certain SSE operations to be slightly slower,<br />
but produce less surprising results.  Treating denormals as<br />
zero has effects ranging from &#8220;slightly faster&#8221; to &#8220;now possible&#8221;.</p>
<p>New tool: orc-bugreport.  Mainly this is to provide a limited<br />
testing tool in the field, especially for embedded targets<br />
which would not have access to the testsuite that is not<br />
installed.</p>
<p>The environment variable ORC_CODE can now be used to adjust<br />
some code generation.  See orc-bugreport &#8211;help for details.</p>
<p>orcc has a new option to generate code that is compatible<br />
with older versions of Orc.  For example, if your software<br />
package only uses 0.4.5 features, you can use &#8211;compat 0.4.5<br />
to generate code that run on 0.4.5, otherwise it may generate<br />
code that requires 0.4.6.  Useful for generating source code<br />
for distribution.</p>
<p>New NEON detection relies on Linux 2.6.29 or later.</p>
<p>Plans for 0.4.7: (not that past predictions have been at all<br />
accurate) New opcodes for FIR filtering, scaling and compositing<br />
of images and video.  Instruction scheduler, helpful for non-OOO<br />
CPUs.  Minor SSE/NEON improvements.  Orcc generation of inline<br />
macros.</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2010/07/orc-0-4-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Old News) Orc-0.4.5 released</title>
		<link>http://code.entropywave.com/2010/06/old-news-orc-0-4-5-released/</link>
		<comments>http://code.entropywave.com/2010/06/old-news-orc-0-4-5-released/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 19:54:12 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=30</guid>
		<description><![CDATA[I forgot to make an announcement here when 0.4.5 was released a few weeks ago. 0.4.5 ===== This release contains many small improvements related to converting GStreamer from liboil to Orc. The major addition in this release is the mainstreaming of the NEON backend, made possible by Nokia. There is a new experimental option to [...]]]></description>
			<content:encoded><![CDATA[<p>I forgot to make an announcement here when 0.4.5 was released a few weeks ago.</p>
<p><code><br />
0.4.5<br />
=====</p>
<p>This release contains many small improvements related to<br />
converting GStreamer from liboil to Orc.</p>
<p>The major addition in this release is the mainstreaming of<br />
the NEON backend, made possible by Nokia.</p>
<p>There is a new experimental option to ./configure,<br />
--enable-backend, which allows you to choose a single code<br />
generation backend to include in the library.  This is mostly<br />
useful for embedded systems, and is not recommended in general.</p>
<p>The upcoming release will focus on improving code generation<br />
for the SSE and NEON backends.<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2010/06/old-news-orc-0-4-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc-0.4.4 Released</title>
		<link>http://code.entropywave.com/2010/03/orc-0-4-4-released/</link>
		<comments>http://code.entropywave.com/2010/03/orc-0-4-4-released/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 06:34:38 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=26</guid>
		<description><![CDATA[This is almost entirely a cleanup and bug fix release. - fix register copying on x86-64 - better checking for partial test failures - fix documention build - fix build on many systems I don&#8217;t personally use - various fixes to build/run on Win64 (Ramiro Polla) - add performance tests Next release will merge in [...]]]></description>
			<content:encoded><![CDATA[<p>This is almost entirely a cleanup and bug fix release.</p>
<p>- fix register copying on x86-64<br />
- better checking for partial test failures<br />
- fix documention build<br />
- fix build on many systems I don&#8217;t personally use<br />
- various fixes to build/run on Win64 (Ramiro Polla)<br />
- add performance tests</p>
<p>Next release will merge in the new pixel compositing opcodes<br />
and the SSE instruction scheduler.</p>
<p>Web: <a href="http://code.entropywave.com/projects/orc/">http://code.entropywave.com/projects/orc/</a></p>
<p>Download: <a href="http://code.entropywave.com/download/orc/">http://code.entropywave.com/download/orc/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2010/03/orc-0-4-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orc moved to code.entropywave.com</title>
		<link>http://code.entropywave.com/2009/10/orc-moved-to-code-entropywave-com/</link>
		<comments>http://code.entropywave.com/2009/10/orc-moved-to-code-entropywave-com/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 20:54:30 +0000</pubDate>
		<dc:creator>entropywave</dc:creator>
				<category><![CDATA[orc]]></category>

		<guid isPermaLink="false">http://code.entropywave.com/?p=1</guid>
		<description><![CDATA[Orc has moved to its new home at code.entropywave.com.  The git repository was previously hosted from my home directory at freedesktop.org, and there was no main web page to direct people to.  That will be fixed now that it has a real web site.  This move has been planned for some time, but the recent [...]]]></description>
			<content:encoded><![CDATA[<p>Orc has moved to its new home at code.entropywave.com.  The git repository was previously hosted from my home directory at freedesktop.org, and there was no main web page to direct people to.  That will be fixed now that it has a real web site.  This move has been planned for some time, but the recent power outage and subsequent meltdown of the filesystem at freedesktop.org that contained the repository triggered the action.</p>
<p>The Git clone URI for Orc is now git://code.entropywave.com/git/orc.git</p>
]]></content:encoded>
			<wfw:commentRss>http://code.entropywave.com/2009/10/orc-moved-to-code-entropywave-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

