~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to VMs/iPad/source/Cross/plugins/IA32ABI/AlienSUnitTestProcedures.h

  • Committer: Hilaire Fernandes
  • Date: 2012-01-27 21:15:40 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20120127211540-912spf97bhpx6mve
Initial additions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  AlienSUnitTestProcedures.h
 
3
 *  IA32ABI
 
4
 *
 
5
 *  Created by John M McIntosh on 02/12/08.
 
6
 *  Copyright 2008 Corporate Smalltalk Consulting Ltd. All rights reserved.
 
7
 
 
8
 MIT License
 
9
 Permission is hereby granted, free of charge, to any person
 
10
 obtaining a copy of this software and associated documentation
 
11
 files (the "Software"), to deal in the Software without
 
12
 restriction, including without limitation the rights to use,
 
13
 copy, modify, merge, publish, distribute, sublicense, and/or sell
 
14
 copies of the Software, and to permit persons to whom the
 
15
 Software is furnished to do so, subject to the following
 
16
 conditions:
 
17
 
 
18
 The above copyright notice and this permission notice shall be
 
19
 included in all copies or substantial portions of the Software.
 
20
 
 
21
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
22
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
23
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
24
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 
25
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
26
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
27
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
28
 OTHER DEALINGS IN THE SOFTWARE.
 
29
 
 
30
 
 
31
 */
 
32
#include "sqVirtualMachine.h"
 
33
 
 
34
#pragma export on
 
35
 
 
36
typedef struct ffiTestPoint2 {
 
37
int x;
 
38
int y;
 
39
} ffiTestPoint2;
 
40
 
 
41
typedef struct ffiTestPoint4 {
 
42
int x;
 
43
int y;
 
44
int z;
 
45
int w;
 
46
} ffiTestPoint4;
 
47
 
 
48
#define LONGLONG long long
 
49
 
 
50
EXPORT(char) ffiTestChars(char c1, char c2, char c3, char c4);
 
51
EXPORT(short) ffiTestShorts(short c1, short c2, short c3, short c4);
 
52
EXPORT(int) ffiTestInts(int c1, int c2, int c3, int c4);
 
53
EXPORT(int) ffiTestInts8(int c1, int c2, int c3, int c4, int c5, int c6, int c7, int c8);
 
54
EXPORT(float) ffiTestFloats(float f1, float f2);
 
55
EXPORT(float) ffiTestFloatAndInteger(float f1, int c1);
 
56
EXPORT(float) ffiTestIntegerAndFloat(int c1, float f1);
 
57
EXPORT(float) ffiTestFloats7(float f1, float f2, float f3, float f4, float f5, float f6, float f7);
 
58
EXPORT(float) ffiTestFloats13(float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13);
 
59
EXPORT(float) ffiTestFloats14(float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13, float f14);
 
60
EXPORT(double) ffiTestDoubles14(double f1, double f2, double f3, double f4, double f5, double f6, double f7, double f8, double f9, double f10, double f11, double f12, double f13, double f14);
 
61
EXPORT(double) ffiTestDoubles(double d1, double d2);
 
62
EXPORT(char *) ffiPrintString(char *string);
 
63
EXPORT(ffiTestPoint2) ffiTestStruct64(ffiTestPoint2 pt1, ffiTestPoint2 pt2);
 
64
EXPORT(ffiTestPoint4) ffiTestStructBig(ffiTestPoint4 pt1, ffiTestPoint4 pt2);
 
65
EXPORT(ffiTestPoint4*) ffiTestPointers(ffiTestPoint4 *pt1, ffiTestPoint4 *pt2);
 
66
EXPORT(LONGLONG) ffiTestLongLong(LONGLONG i1, LONGLONG i2);
 
67
EXPORT(LONGLONG) ffiTestLongLong8(char c1, char c2, char c3, char c4, char c5, char c6, char c7, char c8, LONGLONG i1, LONGLONG i2);
 
68
EXPORT(LONGLONG) ffiTestLongLong9a1(char c1, char c2, char c3, char c4, char c5, char c6, char c7, char c8, char c9, LONGLONG i1, LONGLONG i2);
 
69
EXPORT(LONGLONG) ffiTestLongLong10a2(char c1, char c2, char c3, char c4, char c5, char c6, char c7, char c8, char c9,  char c10, LONGLONG i1, LONGLONG i2);
 
70
EXPORT(LONGLONG) ffiTestLongLonga1(char c1, LONGLONG i1, LONGLONG i2);
 
71
EXPORT(LONGLONG) ffiTestLongLonga2(char c1, char c2, LONGLONG i1, LONGLONG i2);
 
72
#pragma export off
 
73