xC: different timing on different call sequences (or whatever)

Technical questions regarding the XTC tools and programming with XMOS.
User avatar
aclassifier
Respected Member
Posts: 510
Joined: Wed Apr 25, 2012 8:52 pm

xC: different timing on different call sequences (or whatever)

Post by aclassifier »

Hi!

I thought I should test what is "the best" of these two, where to do the indexing of the array, on the outer level or the inner:

Code: Select all

typedef struct {
    unsigned array[TEST_ARRAY_IN_STRUCT_LEN]; 
} array_type_t;
//
typedef struct {
    array_type_t array_type;
    unsigned     array[TEST_ARRAY_IN_STRUCT_LEN];
} arrays_in_struct_t;
So I made some functions to test this. I was not too surprised to learn that handling of like a 1000 elements used the same amount of time. Maybe indexing is indexing, it doesn't matter where in the tree it's being done. Kind of.

Like when several test functions were called one way, like two times of each function. I have four test functions.

But then I learned that if I made the call sequence one time each function, the time usage seemed to increase for each call.

I don't know if this has to do with what I am testing, or the call sequence or some other strange side effect. The full code is attached.

xCore-200 board. xTIMEcomposer 14.4.1 xC code.

If I run this code together with the full code of a project proper, I get the same kind of strange timing. But they don't need to have the same strange timing for the same type of run.

Anybody recognise this?
You do not have the required permissions to view the files attached to this post.
--
Øyvind Teig
Trondheim (Norway)
https://www.teigfam.net/oyvind/home/
McCrea
Verified
New User
Posts: 2
Joined: Wed May 22, 2024 2:28 pm

Post by McCrea »

Hi Øyvind,
It's hard to say without seeing the compiler invocation, but my suspicion is that this is a result of inlining by the compiler.
It's likely that test_arrays_in_struct_outer and test_arrays_in_struct_inner will be inlined into test_arrays_in_struct_io and similar.
Once the function inlining has taken place, the compiler can make all sorts of transformations - so you might get slightly different instructions emitted depending on where each function gets inlined. Even if the instruction sequences are the same, the instructions might be aligned differently - this can potentially lead to slight differences in performance due to fetch no-ops (cycles where the core can't make progress because it needs to fetch the next series of instructions to execute).
When inlining takes place, executing the inlined sequence is usually faster than making an equivalent function call (it is, after all, an optimisation).
You can prevent the compiler inlining a function into its caller by defining the function and caller in separate source files.
User avatar
aclassifier
Respected Member
Posts: 510
Joined: Wed Apr 25, 2012 8:52 pm

Post by aclassifier »

Thank you! Welcome to the forum!

I will try to put the functions in mind in a different file and test.

If this is interesting to others I could zip the whole project with binaries and all here.

I assume that this would mean that xta would know this and if the limits were set by me in between the shorter and the longer time, then one build might fail and the other not?
--
Øyvind Teig
Trondheim (Norway)
https://www.teigfam.net/oyvind/home/