Edward Hervey [Sun, 8 Mar 2015 06:51:34 +0000 (07:51 +0100)]
orcc: Remove duplicate codepath
The code is identical regardless of the variable value
CID #1226451
https://bugzilla.gnome.org/show_bug.cgi?id=745830
Edward Hervey [Fri, 27 Feb 2015 08:02:12 +0000 (09:02 +0100)]
testsuite: Put a limit to the memcpy test
Some systems have massive L3 cache that can exceed 64MB, which would
result in attempting to read/write about our allocated memory.
If we can deal with 64MB... there's a good chance we can handle above.
Vincent Penquerc'h [Fri, 30 Jan 2015 10:30:07 +0000 (10:30 +0000)]
orccodemem: fix mmap leak on error path
Not that these seem to be freed at all on non error
Sebastian Dröge [Wed, 17 Dec 2014 09:14:11 +0000 (10:14 +0100)]
Back to development
Sebastian Dröge [Wed, 17 Dec 2014 09:13:17 +0000 (10:13 +0100)]
Release 0.4.23
Wim Taymans [Wed, 10 Dec 2014 12:33:37 +0000 (13:33 +0100)]
neon: add support for all constants
Use mov and orr to construct all constants.
Wim Taymans [Tue, 9 Dec 2014 15:58:56 +0000 (16:58 +0100)]
neon: add support for 64 bit parameters
Wim Taymans [Tue, 9 Dec 2014 15:54:19 +0000 (16:54 +0100)]
neon: vtrn and vzip are undefined when src == dest
Make sure we use different src and dest registers for vtrn and vzip
because otherwise they are undefined.
Wim Taymans [Fri, 5 Dec 2014 11:01:21 +0000 (12:01 +0100)]
orcc: allow setting custom backup function
Add a new .backup keyword that instructs the orc compiler to call our
custom backup function instead of generating one. This is interesting if
the generated backup function is slower than a plain C implementation.
Jerome Laheurte [Wed, 3 Dec 2014 10:03:52 +0000 (11:03 +0100)]
Fix high-order bit of first register in VPUSH/VPOP generation
CID 1256553
CID 1256554
https://bugzilla.gnome.org/show_bug.cgi?id=727464
Jerome Laheurte [Wed, 26 Nov 2014 12:29:08 +0000 (13:29 +0100)]
Preserve NEON/VFP registers across subroutines according to ARM PCS (5.1.2.1)
https://bugzilla.gnome.org/show_bug.cgi?id=727464
Tim-Philipp Müller [Sat, 8 Nov 2014 13:23:12 +0000 (13:23 +0000)]
orcc: program-c: fix 64-bit parameter loading (loadpq) on big-endian systems
When passing 64-bit parameters through OrcExecutor, we
have to split them up into two 32-bit parameters for
backwards compatibility reasons. When generating C code,
make sure that we split up 64-bit parameters in the same
way as loadpq will read them back later. The lower 32 bits
should end up in params[ORC_VAR_D1+i] and the higher bits
should end up in params[ORC_VAR_T1+i]. The way it was done
so far, the higher/lower bits ended up swapped on big endian
systems, and then got deserialised in swapped order by loadpq.
This resulted in bogus parameters being used.
In particular, this broke the gstreamer volume element and
its unit tests on big endian systems when handling samples
in F64 format (i.e. doubles).
https://bugzilla.gnome.org/show_bug.cgi?id=739354
Wim Taymans [Fri, 26 Sep 2014 16:16:18 +0000 (18:16 +0200)]
orc: include orcprogram only once
Wim Taymans [Fri, 26 Sep 2014 14:32:25 +0000 (16:32 +0200)]
opcode: mark copy opcodes and don't emit mov for them
There is no need to emit a mov operation when the source and dest
registers of a copy operation are different, that's kindof the point of
the copy operation. Saves some useless movs whenever copyX is used.
Wim Taymans [Fri, 26 Sep 2014 13:02:21 +0000 (15:02 +0200)]
compiler: use src register as dest2
Also try to use the src register as the second destination register for
opcodes with 2 results. Saves one unnecessary mov for splitX opcodes.
Wim Taymans [Fri, 26 Sep 2014 10:11:14 +0000 (12:11 +0200)]
compiler: update max_used_temp_reg before use
It should not be smaller than min_temp_reg or we will fail to search for
a free register.
Wim Taymans [Fri, 26 Sep 2014 08:09:17 +0000 (10:09 +0200)]
sse: improve splitXX on sse3
We can implement splitXX with byte shuffles on sse3
Wim Taymans [Mon, 22 Sep 2014 08:14:04 +0000 (10:14 +0200)]
parse: cleanup
Be more elegant in parsing and passing the parameters to
orc_program_append_str_2().
Wim Taymans [Mon, 22 Sep 2014 08:11:35 +0000 (10:11 +0200)]
test: add more tests
Wim Taymans [Fri, 19 Sep 2014 16:07:10 +0000 (18:07 +0200)]
compiler: keep track of temp variables that contain param/const
Keep track of what const/param is loaded into a temp variable. We can
then see if the const is already loaded in a variable and simply reuse
it instead of using a new temp. We must also make sure we load constants
of different size in different temp variables.
Wim Taymans [Fri, 19 Sep 2014 20:57:03 +0000 (22:57 +0200)]
Revert reuse constants
This reverts commit
2ece711c615d327be1e74bec4844186ced58b0ef.
This reverts commit
2ae41b98a35405dbfd35209e7d68428be77a2e62.
This reverts commit
106dacc2620126dedb99d2b981ba2e5a7d4591f9.
This reverts commit
f6697e30681f46f6f3f632ddbbcab98107eec7e0.
These commits are more complicated than needed. A more simple solution
is possible by tracking the registers that hold a certain constant and
simply reusing that register when we can. We can then load the same
constant in different registers of different sizes if needed.
Wim Taymans [Fri, 19 Sep 2014 13:39:22 +0000 (15:39 +0200)]
parse: make contants per size
When we automatically create constants from the opcode arguments, make
different constants per size and rewrite the program to use the newly
created constant.
Wim Taymans [Fri, 19 Sep 2014 13:38:21 +0000 (15:38 +0200)]
parse: fix opcode arg size
Wim Taymans [Fri, 19 Sep 2014 10:23:44 +0000 (12:23 +0200)]
executor: use the size of the opcode arg to get multiplier
When loading a constant, select the multiplier based on the size of the
opcode argument. This is safer because we have existing code that declares
the constants of the wrong size.
Wim Taymans [Thu, 18 Sep 2014 17:32:18 +0000 (19:32 +0200)]
executor: fully expand const vars into the temp register
When loading a const in a register, always make it cover the full
register so that it containts enough values to be used in x2 and
x4 instructions.
Wim Taymans [Fri, 19 Sep 2014 08:55:52 +0000 (10:55 +0200)]
parse: register constants with the right size
When we detect a constant while parsing a line, register it with the
same size as the argument of the opcode.
Wim Taymans [Thu, 18 Sep 2014 12:19:06 +0000 (14:19 +0200)]
program-c: handle X2 and X4 with size < 2 variables
when the variable has a size < 2 it will have been declared as a simple
int8 or int16, when we use this in a X2 or X4 instruction, use the
variable directly instead of trying to use the x fields.
Wim Taymans [Thu, 18 Sep 2014 10:27:01 +0000 (12:27 +0200)]
compiler: generate only 1 temp for constants
Generate only 1 temp variable for constants. We do this by keeping track
of what variable we used to replace the constant.
Previously, orc would allocate a new temp variable every time a constant
was used, this wastes registers and is not needed.
Wim Taymans [Thu, 18 Sep 2014 08:21:48 +0000 (10:21 +0200)]
compiler: reuse _try_get_constant in _get_constant
Wim Taymans [Wed, 17 Sep 2014 14:06:35 +0000 (16:06 +0200)]
opcodes: avoid undefined operations on signed ints
Cast to unsigned int when doing addition and subtraction that can
overflow.
Cast to unsigned int when doing the lower part of a multiplication.
Cast to unsigned int when doing left shifts into the sign bit.
Regenerate the emulation code. This should avoid multiple warnings
reported with clang and -fsanitize=undefined.
See https://bugzilla.gnome.org/show_bug.cgi?id=728738
Wim Taymans [Wed, 17 Sep 2014 13:36:47 +0000 (15:36 +0200)]
compiler: do << and | on unsigned ints only
Wim Taymans [Wed, 17 Sep 2014 13:28:57 +0000 (15:28 +0200)]
compiler: avoid nagative array index
For instructions that don't have a second variable, don't try to index
the variable array with a -1 index.
Wim Taymans [Wed, 17 Sep 2014 13:19:46 +0000 (15:19 +0200)]
utils: convert to uin32 before doing |
In ORC_READ_UINT32_LE, convert each byte to uint32 before or-ing them
together. This avoids | with signed ints.
Wim Taymans [Wed, 17 Sep 2014 08:32:27 +0000 (10:32 +0200)]
docs: remove old env variable
ORC_CPU_FLAGS has been removed quite some time ago
Fabian Deutsch [Tue, 2 Sep 2014 08:38:17 +0000 (10:38 +0200)]
TMPDIR becomes the last option
Previously $TMPDIR and /tmp were the first options to try to use for
intermediate files. To prevent name collisions, now user specific dirs ($HOME
and $XDG_RUNTIME_DIR) are prefered over the user unspecific dirs ($TMP and
/tmp).
https://bugzilla.gnome.org/show_bug.cgi?id=735871
Sebastian Dröge [Wed, 27 Aug 2014 09:24:28 +0000 (12:24 +0300)]
Back to development
Sebastian Dröge [Wed, 27 Aug 2014 09:24:03 +0000 (12:24 +0300)]
Release 0.4.22
Jan Schmidt [Tue, 26 Aug 2014 05:29:50 +0000 (15:29 +1000)]
Add fallback CPU feature detection for Android
On Android, /proc/self/auxv might not be readable (except
when debuggable=true in the build, annoyingly), so do what
the android cpufeatures detection code does and fall back to
/proc/cpuinfo string matching.
Without this, release builds run really slowly, due to ORC always
doing emulation.
Jan Schmidt [Tue, 26 Aug 2014 05:29:28 +0000 (15:29 +1000)]
Remove declarations for deleted functions from orcutils.h
Jan Schmidt [Tue, 26 Aug 2014 03:10:04 +0000 (13:10 +1000)]
Detect android liblog and use android's log functions for debug output
Thiago Santos [Fri, 27 Jun 2014 16:30:03 +0000 (13:30 -0300)]
orccompiler: free error message
Edward Hervey [Fri, 27 Jun 2014 09:33:16 +0000 (11:33 +0200)]
orcarray: Use size_t for pointer arithmetics
Fixes these warnings on windows x86_64:
orcarray.c:80:33: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
orcarray.c:80:22: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
Sebastian Dröge [Mon, 23 Jun 2014 17:14:26 +0000 (19:14 +0200)]
orccompiler: If compiling a program twice, first free the results of the previous compilation
Sebastian Dröge [Mon, 23 Jun 2014 17:14:18 +0000 (19:14 +0200)]
orcc: Fix some memory leaks in the compiler
Colin Walters [Mon, 23 Jun 2014 10:59:35 +0000 (06:59 -0400)]
autogen: Honor NOCONFIGURE=1
See https://github.com/cgwalters/build-api
Sebastian Dröge [Mon, 23 Jun 2014 08:14:47 +0000 (10:14 +0200)]
Back to development
Sebastian Dröge [Mon, 23 Jun 2014 08:06:29 +0000 (10:06 +0200)]
Release 0.4.21
Sebastian Dröge [Mon, 23 Jun 2014 07:59:43 +0000 (09:59 +0200)]
configure: Pass -version-info to libtool again
Sebastian Dröge [Mon, 23 Jun 2014 07:39:26 +0000 (09:39 +0200)]
Back to development
Sebastian Dröge [Mon, 23 Jun 2014 07:38:51 +0000 (09:38 +0200)]
Release 0.4.20
Sebastian Dröge [Mon, 23 Jun 2014 07:20:03 +0000 (09:20 +0200)]
build: Modernize autotools build system
Vincent Penquerc'h [Thu, 1 May 2014 14:47:41 +0000 (15:47 +0100)]
Add some checks on the number of variables per type
We want to ensure no more than, say, 8 constants are added
to a program. Adding more will violate pervasive assumptions
in the code, and may lead to various buffer overflows. By
trapping these add creation time, we prevent these issues
without cluttering the code with range checks. The user is
assumed non malicious here.
Add a test to check we can add up to and including the limit
for a type, but no more.
Tim-Philipp Müller [Thu, 5 Jun 2014 14:45:57 +0000 (15:45 +0100)]
Update .gitignore
Tim-Philipp Müller [Wed, 4 Jun 2014 22:25:52 +0000 (23:25 +0100)]
orccodemem: fix list corruption when splitting memory chunks in two
When splitting orc memory chunks in two, the 'prev' pointer of the
new memory chunk to be inserted was wrong, causing invalid memory
access and double frees later down the line.
https://bugzilla.gnome.org/show_bug.cgi?id=731227
Sebastian Dröge [Tue, 20 May 2014 08:07:57 +0000 (10:07 +0200)]
orc: Close file after usage in the copied around file reading function
CID 1147011.
Sebastian Dröge [Mon, 19 May 2014 09:09:55 +0000 (11:09 +0200)]
orcarray: Use fabs() instead of abs(), the latter is for integers
orcarray.c:254:15: error: using integer absolute value function 'abs' when
argument is of floating point type [-Werror,-Wabsolute-value]
if (abs(a[i] - b[i]) < MIN_NONDENORMAL_D) continue;
Sebastian Dröge [Fri, 25 Apr 2014 18:42:02 +0000 (20:42 +0200)]
orcprogram-c: Convert shifts in swap opcodes to operations on unsigned integers
Shifting into the sign bit is undefined, so let's stop doing that.
Sebastian Dröge [Tue, 22 Apr 2014 16:05:17 +0000 (18:05 +0200)]
memcpy_speed: Use unsigned integers, overflows are undefined for signed integers
Sebastian Dröge [Fri, 18 Apr 2014 08:49:59 +0000 (10:49 +0200)]
Back to development
Sebastian Dröge [Fri, 18 Apr 2014 08:32:23 +0000 (10:32 +0200)]
Release 0.4.19
Vincent Penquerc'h [Thu, 17 Apr 2014 08:16:46 +0000 (09:16 +0100)]
orccodemem: mask group/other bits for temporary file
Ensures another user can't inject code into your process when
winning a race with the ORC temp file code.
Coverity 1147013
Vincent Penquerc'h [Wed, 16 Apr 2014 11:07:40 +0000 (12:07 +0100)]
orcprogam-{mips,mmx,sse}: bail out if get_align_var fails
Coverity 1146979, 1146980, 1146977, 1146978, 1146973
Vincent Penquerc'h [Wed, 16 Apr 2014 11:02:13 +0000 (12:02 +0100)]
orcprogram: bail out on error
Coverity 1146972
Sebastian Dröge [Tue, 15 Apr 2014 08:24:56 +0000 (10:24 +0200)]
orcbytecode: Don't replace program name without freeing the old name if any
Sebastian Dröge [Tue, 15 Apr 2014 08:17:04 +0000 (10:17 +0200)]
orcc: Fix indention of generated code
Sebastian Dröge [Mon, 14 Apr 2014 22:20:49 +0000 (00:20 +0200)]
orc: Update autogenerated files
Sebastian Dröge [Mon, 14 Apr 2014 21:12:57 +0000 (23:12 +0200)]
orcprogram-c: Fix swaplq C implementation
Sebastian Dröge [Mon, 14 Apr 2014 20:39:15 +0000 (22:39 +0200)]
orcbytecodes: Fix filename of generated file
We don't want to override orcbytecode.h but orcbytecodes.h
Sebastian Dröge [Mon, 14 Apr 2014 19:53:40 +0000 (21:53 +0200)]
orcarray: Fix compiler warning with gcc 4.9
In file included from ../orc/orcprogram.h:5:0,
from ../orc/orc.h:5,
from ../orc-test/orctest.h:5,
from orcarray.c:6:
../orc/orcutils.h:124:37: error: 'data' may be used uninitialized in this function [-Werror=maybe-uninitialized]
#define ORC_PTR_OFFSET(ptr,offset) ((void *)(((unsigned char *)(ptr)) + (offset)))
^
orcarray.c:42:9: note: 'data' was declared here
void *data;
Sebastian Dröge [Mon, 14 Apr 2014 16:54:57 +0000 (18:54 +0200)]
memcpy_speed: Properly define ALIGN macro and fix memory leaks
With the previous definition we would use memory *before* our
allocated memory area.
Sebastian Dröge [Sun, 13 Apr 2014 20:01:38 +0000 (22:01 +0200)]
bench10: Fix syntax errors
Sebastian Dröge [Sun, 13 Apr 2014 19:58:16 +0000 (21:58 +0200)]
test.orc: Fix syntax errors
Sebastian Dröge [Sun, 13 Apr 2014 19:57:59 +0000 (21:57 +0200)]
benchmorc: Fix memory leaks in test
Sebastian Dröge [Sun, 13 Apr 2014 19:56:01 +0000 (21:56 +0200)]
orcparse: Guard against unknown tokens
Sebastian Dröge [Sun, 13 Apr 2014 19:55:52 +0000 (21:55 +0200)]
orcprogram: Free init function name
Sebastian Dröge [Sun, 13 Apr 2014 19:38:48 +0000 (21:38 +0200)]
tests: Fix various memory leaks in tests
Sebastian Dröge [Sun, 13 Apr 2014 19:36:43 +0000 (21:36 +0200)]
orcprogram: Free OrcCode together with the program
Sebastian Dröge [Sun, 13 Apr 2014 19:22:37 +0000 (21:22 +0200)]
orcprogram: Free type names of variables when freeing a program
Sebastian Dröge [Sun, 13 Apr 2014 19:22:28 +0000 (21:22 +0200)]
bytecode_parse: Fix memory leaks in test
Edward Hervey [Fri, 11 Apr 2014 14:13:08 +0000 (16:13 +0200)]
orcmips: Fix register range check
There are 32 possible registers and not 33
CID #1146987
Edward Hervey [Fri, 11 Apr 2014 14:03:16 +0000 (16:03 +0200)]
orcexecutor: Don't use negative values on arrays
orc_program_find_var_by_name() can return -1 on errors, if that
happens, don't try to read/write in random memory :)
CID #1146974
CID #1146975
CID #1146976
Edward Hervey [Fri, 11 Apr 2014 13:58:17 +0000 (15:58 +0200)]
orc: Remove unused variable
include_file was never used in these variants since they were
added.
CID #1146970
CID #1146969
Vincent Penquerc'h [Thu, 10 Apr 2014 17:12:36 +0000 (18:12 +0100)]
testsuite: file leak fix
Coverity 1147011
Vincent Penquerc'h [Mon, 7 Apr 2014 09:51:51 +0000 (10:51 +0100)]
Fix FILE leak
Coverity 1147011
Sebastian Dröge [Sat, 8 Feb 2014 15:55:19 +0000 (16:55 +0100)]
orcrules-neon: Remove unused variable
William Manley [Tue, 28 Jan 2014 15:02:57 +0000 (15:02 +0000)]
docs: mulhsw, mulhsw shifts by 16, not 8
The documentation said that mulhsw and mulsuw was equivalent to:
(a * b) >> 8
when the implementation actually shifts by 16 bits.
https://bugzilla.gnome.org/show_bug.cgi?id=723170
Todd Agulnick [Thu, 2 Jan 2014 00:40:00 +0000 (16:40 -0800)]
orcarm: OSX doesn't like comparisons against enum and int.
Tim-Philipp Müller [Mon, 30 Dec 2013 13:41:14 +0000 (13:41 +0000)]
tools: fix memory leak in orcc
Coverity CID 1147542
Tim-Philipp Müller [Mon, 30 Dec 2013 13:32:14 +0000 (13:32 +0000)]
testsuite: fix file descriptor leak in benchmorc
Coverity CID 1147543
Olivier Crête [Mon, 14 Oct 2013 19:25:14 +0000 (15:25 -0400)]
Make it ANSI-C
Use /* */ instead of //
Define _GNU_SOURCE in the ORC_CFLAGS
Edward Hervey [Fri, 20 Sep 2013 09:52:21 +0000 (11:52 +0200)]
autogen.sh: Allow calling from out of tree
This is similar to the fix that was done for gstreamer
https://bugzilla.gnome.org/show_bug.cgi?id=667664
Edward Hervey [Fri, 20 Sep 2013 10:04:25 +0000 (12:04 +0200)]
configure: version back to unreleased
David Schleef [Sat, 24 Aug 2013 17:23:53 +0000 (10:23 -0700)]
Release 0.4.18
Tim-Philipp Müller [Mon, 19 Aug 2013 17:12:21 +0000 (18:12 +0100)]
orcbytecode: Fix parsing of 32 bit values from bytecode as well
The shift by 24 bits has to be casted as well, otherwise we
shift into the sign bit which causes undefined behaviour.
See https://bugzilla.gnome.org/show_bug.cgi?id=698520
Sebastian Dröge [Mon, 19 Aug 2013 15:02:24 +0000 (17:02 +0200)]
orcbytecode: Fix parsing of 64 bit values from bytecode
The shift by 24 bits has to be casted already, otherwise we shift
into the sign bit which causes undefined behaviour.
Thanks to Edward Hervey for debugging this.
https://bugzilla.gnome.org/show_bug.cgi?id=698520
Stefan Sauer [Thu, 6 Jun 2013 07:03:48 +0000 (09:03 +0200)]
docs: add more opcode descriptions
Stefan Sauer [Thu, 6 Jun 2013 06:06:05 +0000 (08:06 +0200)]
docs: hook up generate_table tools
Add a makefile-target in docs to update the tables (for a release). Emit a
comment at the top of the generated files which tool produces them so that
people don't edit them manually.
Stefan Sauer [Wed, 5 Jun 2013 19:50:26 +0000 (21:50 +0200)]
accumulator: use the local variable 'var'
The code already had the local var, but barely used it.
Stefan Sauer [Wed, 5 Jun 2013 18:11:43 +0000 (20:11 +0200)]
tests: use the ORC_STATIC_OPCODE_FLOAT flag to simplify the tests
Stefan Sauer [Mon, 3 Jun 2013 19:53:13 +0000 (21:53 +0200)]
orcparse: fix copy and paste of error message