blob: 57bfa6f8f6337ba229528a593274278a26c9e191 [file] [log] [blame]
Matt Wala105b7042014-08-11 19:56:19 -07001//===- subzero/crosstest/test_calling_conv.cpp - Implementation for tests -===//
2//
3// The Subzero Code Generator
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the test functions used to check that Subzero
11// generates code compatible with the calling convention used by
12// llc. "Caller" functions test the handling of out-args, and "callee"
13// functions test the handling of in-args.
14//
15//===----------------------------------------------------------------------===//
16
17#include <cstring>
18
19#include "test_calling_conv.h"
20
21#define CALL_AS_TYPE(Ty, Func) (reinterpret_cast<Ty *>(Func))
22
23void caller_i(void) {
24 int arg1 = 0x12345678;
25 CALL_AS_TYPE(callee_i_Ty, Callee)(arg1);
26}
27
28void caller_vvvvv(void) {
29 v4si32 arg1 = {0, 1, 2, 3};
30 v4si32 arg2 = {4, 5, 6, 7};
31 v4si32 arg3 = {8, 9, 10, 11};
32 v4si32 arg4 = {12, 13, 14, 15};
33 v4si32 arg5 = {16, 17, 18, 19};
34
35 CALL_AS_TYPE(callee_vvvvv_Ty, Callee)(arg1, arg2, arg3, arg4, arg5);
36}
37
38void caller_vlvlivfvdviv(void) {
39 v4f32 arg1 = {0, 1, 2, 3};
40 int64_t arg2 = 4;
41 v4f32 arg3 = {6, 7, 8, 9};
42 int64_t arg4 = 10;
43 int arg5 = 11;
44 v4f32 arg6 = {12, 13, 14, 15};
45 float arg7 = 16;
46 v4f32 arg8 = {17, 18, 19, 20};
47 double arg9 = 21;
48 v4f32 arg10 = {22, 23, 24, 25};
49 int arg11 = 26;
50 v4f32 arg12 = {27, 28, 29, 30};
51
52 CALL_AS_TYPE(callee_vlvlivfvdviv_Ty, Callee)(arg1, arg2, arg3, arg4, arg5,
53 arg6, arg7, arg8, arg9, arg10,
54 arg11, arg12);
55}
56
57#define HANDLE_ARG(ARGNUM) \
58 case ARGNUM: \
59 memcpy(&Buf[0], &arg##ARGNUM, sizeof(arg##ARGNUM)); \
60 break;
61
62void __attribute__((noinline)) callee_i(int arg1) {
63 switch (ArgNum) { HANDLE_ARG(1); }
64}
65
66void __attribute__((noinline))
67callee_vvvvv(v4si32 arg1, v4si32 arg2, v4si32 arg3, v4si32 arg4, v4si32 arg5) {
68 switch (ArgNum) {
69 HANDLE_ARG(1);
70 HANDLE_ARG(2);
71 HANDLE_ARG(3);
72 HANDLE_ARG(4);
73 HANDLE_ARG(5);
74 }
75}
76
77void __attribute__((noinline))
78callee_vlvlivfvdviv(v4f32 arg1, int64_t arg2, v4f32 arg3, int64_t arg4, int arg5,
79 v4f32 arg6, float arg7, v4f32 arg8, double arg9, v4f32 arg10,
80 int arg11, v4f32 arg12) {
81 switch (ArgNum) {
82 HANDLE_ARG(1);
83 HANDLE_ARG(2);
84 HANDLE_ARG(3);
85 HANDLE_ARG(4);
86 HANDLE_ARG(5);
87 HANDLE_ARG(6);
88 HANDLE_ARG(7);
89 HANDLE_ARG(8);
90 HANDLE_ARG(9);
91 HANDLE_ARG(10);
92 HANDLE_ARG(11);
93 HANDLE_ARG(12);
94 }
95}