summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2009-05-31 16:58:58 -0700
committerDavid Schleef <ds@schleef.org>2009-05-31 16:58:58 -0700
commite84df03d27a458a1ffd5d293e81466f2a8fd4f17 (patch)
tree5022e91ce786e70fbfaa3489f29ba8f7d2916daa
parent4563edc0728f7075a18e9f1b1460d79d5657fab7 (diff)
0.3->0.4 fixes, update READMEorc-0.4.0
-rw-r--r--.gitignore4
-rw-r--r--README22
-rw-r--r--configure.ac2
-rw-r--r--testsuite/Makefile.am14
-rw-r--r--tools/Makefile.am2
5 files changed, 21 insertions, 23 deletions
diff --git a/.gitignore b/.gitignore
index 53310a3..e0e3e58 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,9 +2,9 @@
*.la
*.lo
orc.pc
-orc-0.3.pc
+orc-0.4.pc
orc-uninstalled.pc
-orc-0.3-uninstalled.pc
+orc-0.4-uninstalled.pc
Makefile
Makefile.in
config.h
diff --git a/README b/README
index 62de84b..313b16e 100644
--- a/README
+++ b/README
@@ -38,8 +38,9 @@ Features:
- An application can add rules for converting existing or new opcodes
to binary code for a specific target.
- - Current targets: SSE, MMX, ARM, Altivec. (SSE is the only target
- that has gotten much testing.)
+ - Current targets: SSE, MMX, ARM, Altivec. (ARM is very limited.)
+ The NEON and TI c64x+ DSP targets are not open source and can be
+ licensed separately from Entropy Wave.
- Programs can optionally be emulated, which is useful for testing, or
if no rules are available to convert Orc opcodes to executable code.
@@ -54,7 +55,7 @@ Questions and Answers:
second, Orc can generate code for functions you define at runtime.
Many algorithms require gluing together several stages of operations,
and if each stage has several options, the total amount of code to
- cover all combinations
+ cover all combinations could be inconveniently large.
- Q: Why not use compiler intrinsics for SIMD code?
@@ -66,25 +67,22 @@ Questions and Answers:
- Q: How big is the Orc library?
A: Compiled with only one target (SSE), the library size is about
- 60 kB uncompressed, or 20 kB compressed. The goal is to keep the
+ 86 kB uncompressed, or 30 kB compressed. The goal is to keep the
uncompressed size under about 100 kB.
Caveats (Known Bugs):
- - The SSE target may generate illegal instructions on your CPU, since
- it doesn't (yet) check which instructions are legal. This will be
- fixed in the next release.
-
- - Most other targets are very limited in their instruction coverage.
+ - ?
Future directions:
- - A parser, so that programs can be written in text form instead
- of constructed directly in intermediate form using function calls.
+ - A more full-featured compiler tool, in order to make it easier to
+ convert Orc language source into assembly source code that can be
+ compiled and distributed without depending on the Orc library.
- - Addition of various convenience functions.
+ - Addition of convenience functions.
- Addition of an option to compile the Orc library with only the
runtime features for a single target, e.g., for embedded systems.
diff --git a/configure.ac b/configure.ac
index 5f0ecc2..9b2a129 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE(1.6)
AM_MAINTAINER_MODE
-ORC_MAJORMINOR=0.3
+ORC_MAJORMINOR=0.4
AC_SUBST(ORC_MAJORMINOR)
AM_CONFIG_HEADER(config.h)
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
index acfcd6a..05aefe4 100644
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -19,19 +19,19 @@ orcbin_PROGRAMS = $(TESTS) generate_xml_table generate_xml_table2
CLEANFILES = temp-orc-test-*
AM_CFLAGS = $(ORC_CFLAGS)
-LIBS = $(ORC_LIBS) $(top_builddir)/orc-test/liborc-test-0.3.la
+LIBS = $(ORC_LIBS) $(top_builddir)/orc-test/liborc-test-@ORC_MAJORMINOR@.la
compile_opcodes_float_c_LDADD = \
- $(top_builddir)/orc-float/liborc-float-0.3.la
+ $(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
compile_opcodes_float_LDADD = \
- $(top_builddir)/orc-float/liborc-float-0.3.la
+ $(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
exec_opcodes_float_LDADD = \
- $(top_builddir)/orc-float/liborc-float-0.3.la
+ $(top_builddir)/orc-float/liborc-float-@ORC_MAJORMINOR@.la
compile_opcodes_pixel_c_LDADD = \
- $(top_builddir)/orc-pixel/liborc-pixel-0.3.la
+ $(top_builddir)/orc-pixel/liborc-pixel-@ORC_MAJORMINOR@.la
compile_opcodes_pixel_LDADD = \
- $(top_builddir)/orc-pixel/liborc-pixel-0.3.la
+ $(top_builddir)/orc-pixel/liborc-pixel-@ORC_MAJORMINOR@.la
exec_opcodes_pixel_LDADD = \
- $(top_builddir)/orc-pixel/liborc-pixel-0.3.la
+ $(top_builddir)/orc-pixel/liborc-pixel-@ORC_MAJORMINOR@.la
diff --git a/tools/Makefile.am b/tools/Makefile.am
index f4381f0..69d2d50 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -2,7 +2,7 @@
orcbin_PROGRAMS = orcc
AM_CFLAGS = $(ORC_CFLAGS)
-LDADD = $(ORC_LIBS) ../orc-test/liborc-test-0.3.la
+LDADD = $(ORC_LIBS) ../orc-test/liborc-test-@ORC_MAJORMINOR@.la
EXTRA_DIST = test.orc