annotate test/callback_suite/README.txt @ 508:1aa2af848e8a

- callback_suite: updated readme to reflect changes and general cleanup
author Tassilo Philipp
date Sat, 09 Apr 2022 14:44:33 +0200
parents 5a3c07a0f376
children f3d44195dbdf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
1 Callback Test Suite
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
2 -------------------
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
4
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
5 CONFIGURE SUITE
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
7 needs lua: edit config.lua and run "make config".
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
8
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
9
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
10 DESCRIPTION
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
11
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
12 Generates a set of callback invokers in C using lua as a preprocessor.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
13
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
14 The invokers pass arguments to the callback to test from a set of reference
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
15 values which are argument type- and position-specific.
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
16
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
17
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
18 The Callback Invocation Body
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
19
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
20 Example:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
21 The body for a signature of type "dpdf)p" at case id 19 is:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
22
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
23 void f19(void* addr)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
24 {
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
25 Result.p = ((CONFIG_API p(*)(d,p,d,f))addr)(ValueMatrix[0].d,ValueMatrix[1].p,ValueMatrix[2].d,ValueMatrix[3].f);
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
26 } ^^^^^^^^^^- specific calling convention
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
27 ^^^^^^^^^^^^^- signature
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
28 ^- return type signature
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
29 ^- arg signature char 0 value (to be retrieved in handler)
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
30
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
31
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
32 Result (type DCValue) and ValueMatrix (type DCValueSet[MAXARGS], holding the
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
33 reference values) are globals, as well as an Args (type DCValue) array, which
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
34 is used by the callback handler to write the received argument values to.
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
35
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
36
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
37 Reference argument and result value
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
38
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
39 The reference values are generated by get_reference_arg() and
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
40 get_reference_result(), which always return the exact same value for the a
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
41 given set of arguments.
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
42 ValueMatrix was filled by those functions and thus holds a temporary copy,
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
43 which is useful to test whether any input argument was modified (which should
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
44 never be the case).
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
45
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
46
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
47 Testing for exotic calling conventions on Windows
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
48
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
49 Specify 'api' and 'ccprefix' accordingly:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
50
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
51
495
45ac093ca822 - test/callback_suite: make it use shared random sig generator from call_suite and call_suite_aggrs
Tassilo Philipp
parents: 0
diff changeset
52 "__stdcall" "_s"
45ac093ca822 - test/callback_suite: make it use shared random sig generator from call_suite and call_suite_aggrs
Tassilo Philipp
parents: 0
diff changeset
53 "__fastcall" "_f" for gcc compiler
45ac093ca822 - test/callback_suite: make it use shared random sig generator from call_suite and call_suite_aggrs
Tassilo Philipp
parents: 0
diff changeset
54 "_F" for microsoft compiler
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
55
508
1aa2af848e8a - callback_suite: updated readme to reflect changes and general cleanup
Tassilo Philipp
parents: 507
diff changeset
56 See the dyncall documentation for other/more calling convention prefixes.
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
57