wok view orc/description.txt @ rev 25294
updated screen, screen-pam and screen-terminfo (4.8.0 -> 4.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 19 17:34:06 2022 +0100 (2022-07-19) |
parents | |
children |
line source
1 Orc is basically a simplified assembly language for data processing
2 (no loops, jumps etc.), it's supposed to map to SIMD instructions on
3 various architectures curently there are two things:
5 - liborc, which is a JIT compiler that will at run-time take orc code
6 (in some byte format) and generate machine code for the architecture
7 in question on the fly and then execute that whenever there's a
8 function call
9 - we have C backup functions as .c files in the gstreamer source code,
10 which are also compiled in when orc can't compile some code (for
11 various reasons), or liborc is not available, then the C backup
12 function will be used that's the current state of things.