1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* Copyright 2011 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/**
* This file will test that the pnacl-generated wrapper functions match
* the comments in this IDL.
*/
label Chrome {
M13 = 0.0,
M14 = 1.0,
M15 = 2.0
};
describe {
void;
mem_t;
int32_t;
};
[passByValue, returnByValue] struct some_struct {
mem_t X;
int32_t Y;
};
struct some_struct2 {
mem_t X;
int32_t Y;
};
[union, passByValue, returnByValue] struct some_union {
mem_t X;
int32_t Y;
};
/*
* static int32_t
* Pnacl_M15_PPB_Iface_struct_wrap_foo1(int32_t a, struct some_struct* b) {
* const struct PPB_Iface_struct_wrap_2_0 *iface =
* Pnacl_WrapperInfo_PPB_Iface_struct_wrap_2_0.real_iface;
* return iface->foo1(a, *b);
* }
*/
[version=2.0]
interface PPB_Iface_struct_wrap {
int32_t foo1(int32_t a, [in] some_struct b);
};
/*
* static int32_t
* Pnacl_M15_PPB_Iface_union_wrap_foo1(int32_t a, union some_union* b) {
* const struct PPB_Iface_union_wrap_2_0 *iface =
* Pnacl_WrapperInfo_PPB_Iface_union_wrap_2_0.real_iface;
* return iface->foo1(a, *b);
* }
*/
[version=2.0]
interface PPB_Iface_union_wrap {
int32_t foo1(int32_t a, [in] some_union b);
};
[version=2.0]
interface PPB_Iface_nowrap {
int32_t foo1(int32_t a, [in] some_struct2 b);
};
/*
* static
* int32_t Pnacl_M13_PPB_SomeWrap_foo1(struct some_struct* a) {
* const struct PPB_SomeWrap_0_0 *iface =
* Pnacl_WrapperInfo_PPB_SomeWrap_0_0.real_iface;
* return iface->foo1(*a);
* }
*
* static
* void Pnacl_M13_PPB_SomeWrap_foo2(struct some_struct* _struct_result,
* int32_t a) {
* const struct PPB_SomeWrap_0_0 *iface =
* Pnacl_WrapperInfo_PPB_SomeWrap_0_0.real_iface;
* *_struct_result = iface->foo2(a);
* }
*/
[version=0.0]
interface PPB_SomeWrap {
int32_t foo1([in] some_struct a);
some_struct foo2([in] int32_t a);
/* Not generating wrapper methods for PPB_SomeWrap_1_0 */
[version=1.0]
int32_t foo1([in] some_struct[] a);
[version=1.0]
void foo2([in] int32_t a, [out] some_struct b);
/* Not generating wrapper methods for PPB_SomeWrap */
[version=2.0]
int32_t foo1([in] some_struct2 a);
};
/*
* static int32_t Pnacl_M13_PPP_SomeWrap_foo1(struct some_struct a) {
* const struct PPP_SomeWrap_0_0 *iface =
* Pnacl_WrapperInfo_PPP_SomeWrap_0_0.real_iface;
* int32_t (*temp_fp)(struct some_struct* a) =
* ((int32_t (*)(struct some_struct* a))iface->foo1);
* return temp_fp(&a);
* }
*
* static struct some_struct Pnacl_M13_PPP_SomeWrap_foo2(int32_t a) {
* const struct PPP_SomeWrap_0_0 *iface =
* Pnacl_WrapperInfo_PPP_SomeWrap_0_0.real_iface;
* void (*temp_fp)(struct some_struct* _struct_result, int32_t a) =
* ((void (*)(struct some_struct* _struct_result, int32_t a))iface->foo2);
* struct some_struct _struct_result;
* temp_fp(&_struct_result, a);
* return _struct_result;
* }
*
* static struct some_struct Pnacl_M14_PPP_SomeWrap_foo2(int32_t a) {
* const struct PPP_SomeWrap_1_0 *iface =
* Pnacl_WrapperInfo_PPP_SomeWrap_1_0.real_iface;
* void (*temp_fp)(struct some_struct* _struct_result, int32_t a) =
* ((void (*)(struct some_struct* _struct_result, int32_t a))iface->foo2);
* struct some_struct _struct_result;
* temp_fp(&_struct_result, a);
* return _struct_result;
* }
*
* static int32_t Pnacl_M14_PPP_SomeWrap_foo1(const struct some_struct a[]) {
* const struct PPP_SomeWrap_1_0 *iface =
* Pnacl_WrapperInfo_PPP_SomeWrap_1_0.real_iface;
* int32_t (*temp_fp)(const struct some_struct a[]) =
* ((int32_t (*)(const struct some_struct a[]))iface->foo1);
* return temp_fp(a);
* }
*/
[version=0.0]
interface PPP_SomeWrap {
int32_t foo1([in] some_struct a);
some_struct foo2([in] int32_t a);
[version=1.0]
int32_t foo1([in] some_struct[] a);
/* Not generating wrapper interface for PPP_SomeWrap */
[version=2.0]
int32_t foo1([in] some_struct2 a);
[version=2.0]
void foo2([in] int32_t a);
};
[no_interface_string]
interface PPP_NoIFString {
int32_t Dummy([in] some_struct a);
};
|