1// REQUIRES: amdgpu-registered-target 2// RUN: %clang_cc1 -triple amdgcn-unknown-unknown-amdgiz -S -emit-llvm -o - %s | FileCheck -check-prefixes=CHECK,AMDGCN %s 3// RUN: %clang_cc1 -triple r600-unknown-unknown -S -emit-llvm -o - %s | FileCheck -check-prefixes=CHECK,R600 %s 4 5typedef __attribute__(( ext_vector_type(2) )) char char2; 6typedef __attribute__(( ext_vector_type(3) )) char char3; 7typedef __attribute__(( ext_vector_type(4) )) char char4; 8 9typedef __attribute__(( ext_vector_type(2) )) short short2; 10typedef __attribute__(( ext_vector_type(3) )) short short3; 11typedef __attribute__(( ext_vector_type(4) )) short short4; 12 13typedef __attribute__(( ext_vector_type(2) )) int int2; 14typedef __attribute__(( ext_vector_type(3) )) int int3; 15typedef __attribute__(( ext_vector_type(4) )) int int4; 16typedef __attribute__(( ext_vector_type(16) )) int int16; 17typedef __attribute__(( ext_vector_type(32) )) int int32; 18 19// CHECK: %struct.empty_struct = type {} 20typedef struct empty_struct 21{ 22} empty_struct; 23 24// CHECK-NOT: %struct.single_element_struct_arg 25typedef struct single_element_struct_arg 26{ 27 int i; 28} single_element_struct_arg_t; 29 30// CHECK-NOT: %struct.nested_single_element_struct_arg 31typedef struct nested_single_element_struct_arg 32{ 33 single_element_struct_arg_t i; 34} nested_single_element_struct_arg_t; 35 36// CHECK: %struct.struct_arg = type { i32, float, i32 } 37typedef struct struct_arg 38{ 39 int i1; 40 float f; 41 int i2; 42} struct_arg_t; 43 44// CHECK: %struct.struct_padding_arg = type { i8, i64 } 45typedef struct struct_padding_arg 46{ 47 char i1; 48 long f; 49} struct_padding_arg; 50 51// CHECK: %struct.struct_of_arrays_arg = type { [2 x i32], float, [4 x i32], [3 x float], i32 } 52typedef struct struct_of_arrays_arg 53{ 54 int i1[2]; 55 float f1; 56 int i2[4]; 57 float f2[3]; 58 int i3; 59} struct_of_arrays_arg_t; 60 61// CHECK: %struct.struct_of_structs_arg = type { i32, float, %struct.struct_arg, i32 } 62typedef struct struct_of_structs_arg 63{ 64 int i1; 65 float f1; 66 struct_arg_t s1; 67 int i2; 68} struct_of_structs_arg_t; 69 70// CHECK: %union.transparent_u = type { i32 } 71typedef union 72{ 73 int b1; 74 float b2; 75} transparent_u __attribute__((__transparent_union__)); 76 77// CHECK: %struct.single_array_element_struct_arg = type { [4 x i32] } 78typedef struct single_array_element_struct_arg 79{ 80 int i[4]; 81} single_array_element_struct_arg_t; 82 83// CHECK: %struct.single_struct_element_struct_arg = type { %struct.inner } 84// CHECK: %struct.inner = type { i32, i64 } 85typedef struct single_struct_element_struct_arg 86{ 87 struct inner { 88 int a; 89 long b; 90 } s; 91} single_struct_element_struct_arg_t; 92 93// CHECK: %struct.different_size_type_pair 94typedef struct different_size_type_pair { 95 long l; 96 int i; 97} different_size_type_pair; 98 99// CHECK: %struct.flexible_array = type { i32, [0 x i32] } 100typedef struct flexible_array 101{ 102 int i; 103 int flexible[]; 104} flexible_array; 105 106// CHECK: %struct.struct_arr16 = type { [16 x i32] } 107typedef struct struct_arr16 108{ 109 int arr[16]; 110} struct_arr16; 111 112// CHECK: %struct.struct_arr32 = type { [32 x i32] } 113typedef struct struct_arr32 114{ 115 int arr[32]; 116} struct_arr32; 117 118// CHECK: %struct.struct_arr33 = type { [33 x i32] } 119typedef struct struct_arr33 120{ 121 int arr[33]; 122} struct_arr33; 123 124// CHECK: %struct.struct_char_arr32 = type { [32 x i8] } 125typedef struct struct_char_arr32 126{ 127 char arr[32]; 128} struct_char_arr32; 129 130// CHECK-NOT: %struct.struct_char_x8 131typedef struct struct_char_x8 { 132 char x, y, z, w; 133 char a, b, c, d; 134} struct_char_x8; 135 136// CHECK-NOT: %struct.struct_char_x4 137typedef struct struct_char_x4 { 138 char x, y, z, w; 139} struct_char_x4; 140 141// CHECK-NOT: %struct.struct_char_x3 142typedef struct struct_char_x3 { 143 char x, y, z; 144} struct_char_x3; 145 146// CHECK-NOT: %struct.struct_char_x2 147typedef struct struct_char_x2 { 148 char x, y; 149} struct_char_x2; 150 151// CHECK-NOT: %struct.struct_char_x1 152typedef struct struct_char_x1 { 153 char x; 154} struct_char_x1; 155 156// 4 registers from fields, 5 if padding included. 157// CHECK: %struct.nested = type { i8, i64 } 158// CHECK: %struct.num_regs_nested_struct = type { i32, %struct.nested } 159typedef struct num_regs_nested_struct { 160 int x; 161 struct nested { 162 char z; 163 long y; 164 } inner; 165} num_regs_nested_struct; 166 167// CHECK: %struct.double_nested = type { %struct.inner_inner } 168// CHECK: %struct.inner_inner = type { i8, i32, i8 } 169// CHECK: %struct.double_nested_struct = type { i32, %struct.double_nested, i16 } 170typedef struct double_nested_struct { 171 int x; 172 struct double_nested { 173 struct inner_inner { 174 char y; 175 int q; 176 char z; 177 } inner_inner; 178 } inner; 179 180 short w; 181} double_nested_struct; 182 183// This is a large struct, but uses fewer registers than the limit. 184// CHECK: %struct.large_struct_padding = type { i8, i32, i8, i32, i8, i8, i16, i16, [3 x i8], i64, i32, i8, i32, i16, i8 } 185typedef struct large_struct_padding { 186 char e0; 187 int e1; 188 char e2; 189 int e3; 190 char e4; 191 char e5; 192 short e6; 193 short e7; 194 char e8[3]; 195 long e9; 196 int e10; 197 char e11; 198 int e12; 199 short e13; 200 char e14; 201} large_struct_padding; 202 203// CHECK: %struct.int3_pair = type { <3 x i32>, <3 x i32> } 204// The number of registers computed should be 6, not 8. 205typedef struct int3_pair { 206 int3 dx; 207 int3 dy; 208} int3_pair; 209 210// CHECK: %struct.struct_4regs = type { i32, i32, i32, i32 } 211typedef struct struct_4regs 212{ 213 int x; 214 int y; 215 int z; 216 int w; 217} struct_4regs; 218 219// CHECK: void @kernel_empty_struct_arg(%struct.empty_struct %s.coerce) 220__kernel void kernel_empty_struct_arg(empty_struct s) { } 221 222// CHECK: void @kernel_single_element_struct_arg(i32 %arg1.coerce) 223__kernel void kernel_single_element_struct_arg(single_element_struct_arg_t arg1) { } 224 225// CHECK: void @kernel_nested_single_element_struct_arg(i32 %arg1.coerce) 226__kernel void kernel_nested_single_element_struct_arg(nested_single_element_struct_arg_t arg1) { } 227 228// CHECK: void @kernel_struct_arg(%struct.struct_arg %arg1.coerce) 229__kernel void kernel_struct_arg(struct_arg_t arg1) { } 230 231// CHECK: void @kernel_struct_padding_arg(%struct.struct_padding_arg %arg1.coerce) 232__kernel void kernel_struct_padding_arg(struct_padding_arg arg1) { } 233 234// CHECK: void @kernel_test_struct_of_arrays_arg(%struct.struct_of_arrays_arg %arg1.coerce) 235__kernel void kernel_test_struct_of_arrays_arg(struct_of_arrays_arg_t arg1) { } 236 237// CHECK: void @kernel_struct_of_structs_arg(%struct.struct_of_structs_arg %arg1.coerce) 238__kernel void kernel_struct_of_structs_arg(struct_of_structs_arg_t arg1) { } 239 240// CHECK: void @test_kernel_transparent_union_arg(%union.transparent_u %u.coerce) 241__kernel void test_kernel_transparent_union_arg(transparent_u u) { } 242 243// CHECK: void @kernel_single_array_element_struct_arg(%struct.single_array_element_struct_arg %arg1.coerce) 244__kernel void kernel_single_array_element_struct_arg(single_array_element_struct_arg_t arg1) { } 245 246// CHECK: void @kernel_single_struct_element_struct_arg(%struct.single_struct_element_struct_arg %arg1.coerce) 247__kernel void kernel_single_struct_element_struct_arg(single_struct_element_struct_arg_t arg1) { } 248 249// CHECK: void @kernel_different_size_type_pair_arg(%struct.different_size_type_pair %arg1.coerce) 250__kernel void kernel_different_size_type_pair_arg(different_size_type_pair arg1) { } 251 252// CHECK: define void @func_f32_arg(float %arg) 253void func_f32_arg(float arg) { } 254 255// CHECK: define void @func_v2i16_arg(<2 x i16> %arg) 256void func_v2i16_arg(short2 arg) { } 257 258// CHECK: define void @func_v3i32_arg(<3 x i32> %arg) 259void func_v3i32_arg(int3 arg) { } 260 261// CHECK: define void @func_v4i32_arg(<4 x i32> %arg) 262void func_v4i32_arg(int4 arg) { } 263 264// CHECK: define void @func_v16i32_arg(<16 x i32> %arg) 265void func_v16i32_arg(int16 arg) { } 266 267// CHECK: define void @func_v32i32_arg(<32 x i32> %arg) 268void func_v32i32_arg(int32 arg) { } 269 270// CHECK: define void @func_empty_struct_arg() 271void func_empty_struct_arg(empty_struct empty) { } 272 273// CHECK: void @func_single_element_struct_arg(i32 %arg1.coerce) 274void func_single_element_struct_arg(single_element_struct_arg_t arg1) { } 275 276// CHECK: void @func_nested_single_element_struct_arg(i32 %arg1.coerce) 277void func_nested_single_element_struct_arg(nested_single_element_struct_arg_t arg1) { } 278 279// CHECK: void @func_struct_arg(i32 %arg1.coerce0, float %arg1.coerce1, i32 %arg1.coerce2) 280void func_struct_arg(struct_arg_t arg1) { } 281 282// CHECK: void @func_struct_padding_arg(i8 %arg1.coerce0, i64 %arg1.coerce1) 283void func_struct_padding_arg(struct_padding_arg arg1) { } 284 285// CHECK: define void @func_struct_char_x8([2 x i32] %arg.coerce) 286void func_struct_char_x8(struct_char_x8 arg) { } 287 288// CHECK: define void @func_struct_char_x4(i32 %arg.coerce) 289void func_struct_char_x4(struct_char_x4 arg) { } 290 291// CHECK: define void @func_struct_char_x3(i32 %arg.coerce) 292void func_struct_char_x3(struct_char_x3 arg) { } 293 294// CHECK: define void @func_struct_char_x2(i16 %arg.coerce) 295void func_struct_char_x2(struct_char_x2 arg) { } 296 297// CHECK: define void @func_struct_char_x1(i8 %arg.coerce) 298void func_struct_char_x1(struct_char_x1 arg) { } 299 300// CHECK: void @func_transparent_union_arg(i32 %u.coerce) 301void func_transparent_union_arg(transparent_u u) { } 302 303// CHECK: void @func_single_array_element_struct_arg([4 x i32] %arg1.coerce) 304void func_single_array_element_struct_arg(single_array_element_struct_arg_t arg1) { } 305 306// CHECK: void @func_single_struct_element_struct_arg(%struct.inner %arg1.coerce) 307void func_single_struct_element_struct_arg(single_struct_element_struct_arg_t arg1) { } 308 309// CHECK: void @func_different_size_type_pair_arg(i64 %arg1.coerce0, i32 %arg1.coerce1) 310void func_different_size_type_pair_arg(different_size_type_pair arg1) { } 311 312// AMDGCN: void @func_flexible_array_arg(%struct.flexible_array addrspace(5)* byval nocapture align 4 %arg) 313// R600: void @func_flexible_array_arg(%struct.flexible_array* byval nocapture align 4 %arg) 314void func_flexible_array_arg(flexible_array arg) { } 315 316// CHECK: define float @func_f32_ret() 317float func_f32_ret() 318{ 319 return 0.0f; 320} 321 322// CHECK: define void @func_empty_struct_ret() 323empty_struct func_empty_struct_ret() 324{ 325 empty_struct s = {}; 326 return s; 327} 328 329// CHECK: define i32 @single_element_struct_ret() 330// CHECK: ret i32 0 331single_element_struct_arg_t single_element_struct_ret() 332{ 333 single_element_struct_arg_t s = { 0 }; 334 return s; 335} 336 337// CHECK: define i32 @nested_single_element_struct_ret() 338// CHECK: ret i32 0 339nested_single_element_struct_arg_t nested_single_element_struct_ret() 340{ 341 nested_single_element_struct_arg_t s = { 0 }; 342 return s; 343} 344 345// CHECK: define %struct.struct_arg @func_struct_ret() 346// CHECK: ret %struct.struct_arg zeroinitializer 347struct_arg_t func_struct_ret() 348{ 349 struct_arg_t s = { 0 }; 350 return s; 351} 352 353// CHECK: define %struct.struct_padding_arg @func_struct_padding_ret() 354// CHECK: ret %struct.struct_padding_arg zeroinitializer 355struct_padding_arg func_struct_padding_ret() 356{ 357 struct_padding_arg s = { 0 }; 358 return s; 359} 360 361// CHECK: define [2 x i32] @func_struct_char_x8_ret() 362// CHECK: ret [2 x i32] zeroinitializer 363struct_char_x8 func_struct_char_x8_ret() 364{ 365 struct_char_x8 s = { 0 }; 366 return s; 367} 368 369// CHECK: define i32 @func_struct_char_x4_ret() 370// CHECK: ret i32 0 371struct_char_x4 func_struct_char_x4_ret() 372{ 373 struct_char_x4 s = { 0 }; 374 return s; 375} 376 377// CHECK: define i32 @func_struct_char_x3_ret() 378// CHECK: ret i32 0 379struct_char_x3 func_struct_char_x3_ret() 380{ 381 struct_char_x3 s = { 0 }; 382 return s; 383} 384 385// CHECK: define i16 @func_struct_char_x2_ret() 386struct_char_x2 func_struct_char_x2_ret() 387{ 388 struct_char_x2 s = { 0 }; 389 return s; 390} 391 392// CHECK: define i8 @func_struct_char_x1_ret() 393// CHECK: ret i8 0 394struct_char_x1 func_struct_char_x1_ret() 395{ 396 struct_char_x1 s = { 0 }; 397 return s; 398} 399 400// CHECK: define %struct.struct_arr16 @func_ret_struct_arr16() 401// CHECK: ret %struct.struct_arr16 zeroinitializer 402struct_arr16 func_ret_struct_arr16() 403{ 404 struct_arr16 s = { 0 }; 405 return s; 406} 407 408// AMDGCN: define void @func_ret_struct_arr32(%struct.struct_arr32 addrspace(5)* noalias nocapture sret %agg.result) 409// R600: define void @func_ret_struct_arr32(%struct.struct_arr32* noalias nocapture sret %agg.result) 410struct_arr32 func_ret_struct_arr32() 411{ 412 struct_arr32 s = { 0 }; 413 return s; 414} 415 416// AMDGCN: define void @func_ret_struct_arr33(%struct.struct_arr33 addrspace(5)* noalias nocapture sret %agg.result) 417// R600: define void @func_ret_struct_arr33(%struct.struct_arr33* noalias nocapture sret %agg.result) 418struct_arr33 func_ret_struct_arr33() 419{ 420 struct_arr33 s = { 0 }; 421 return s; 422} 423 424// CHECK: define %struct.struct_char_arr32 @func_ret_struct_char_arr32() 425struct_char_arr32 func_ret_struct_char_arr32() 426{ 427 struct_char_arr32 s = { 0 }; 428 return s; 429} 430 431// CHECK: define i32 @func_transparent_union_ret() local_unnamed_addr #0 { 432// CHECK: ret i32 0 433transparent_u func_transparent_union_ret() 434{ 435 transparent_u u = { 0 }; 436 return u; 437} 438 439// CHECK: define %struct.different_size_type_pair @func_different_size_type_pair_ret() 440different_size_type_pair func_different_size_type_pair_ret() 441{ 442 different_size_type_pair s = { 0 }; 443 return s; 444} 445 446// AMDGCN: define void @func_flexible_array_ret(%struct.flexible_array addrspace(5)* noalias nocapture sret %agg.result) 447// R600: define void @func_flexible_array_ret(%struct.flexible_array* noalias nocapture sret %agg.result) 448flexible_array func_flexible_array_ret() 449{ 450 flexible_array s = { 0 }; 451 return s; 452} 453 454// CHECK: define void @func_reg_state_lo(<4 x i32> %arg0, <4 x i32> %arg1, <4 x i32> %arg2, i32 %arg3, i32 %s.coerce0, float %s.coerce1, i32 %s.coerce2) 455void func_reg_state_lo(int4 arg0, int4 arg1, int4 arg2, int arg3, struct_arg_t s) { } 456 457// AMDGCN: define void @func_reg_state_hi(<4 x i32> %arg0, <4 x i32> %arg1, <4 x i32> %arg2, i32 %arg3, i32 %arg4, %struct.struct_arg addrspace(5)* byval nocapture align 4 %s) 458// R600: define void @func_reg_state_hi(<4 x i32> %arg0, <4 x i32> %arg1, <4 x i32> %arg2, i32 %arg3, i32 %arg4, %struct.struct_arg* byval nocapture align 4 %s) 459void func_reg_state_hi(int4 arg0, int4 arg1, int4 arg2, int arg3, int arg4, struct_arg_t s) { } 460 461// XXX - Why don't the inner structs flatten? 462// AMDGCN: define void @func_reg_state_num_regs_nested_struct(<4 x i32> %arg0, i32 %arg1, i32 %arg2.coerce0, %struct.nested %arg2.coerce1, i32 %arg3.coerce0, %struct.nested %arg3.coerce1, %struct.num_regs_nested_struct addrspace(5)* byval nocapture align 8 %arg4) 463// R600: define void @func_reg_state_num_regs_nested_struct(<4 x i32> %arg0, i32 %arg1, i32 %arg2.coerce0, %struct.nested %arg2.coerce1, i32 %arg3.coerce0, %struct.nested %arg3.coerce1, %struct.num_regs_nested_struct* byval nocapture align 8 %arg4) 464void func_reg_state_num_regs_nested_struct(int4 arg0, int arg1, num_regs_nested_struct arg2, num_regs_nested_struct arg3, num_regs_nested_struct arg4) { } 465 466// CHECK: define void @func_double_nested_struct_arg(<4 x i32> %arg0, i32 %arg1, i32 %arg2.coerce0, %struct.double_nested %arg2.coerce1, i16 %arg2.coerce2) 467void func_double_nested_struct_arg(int4 arg0, int arg1, double_nested_struct arg2) { } 468 469// CHECK: define %struct.double_nested_struct @func_double_nested_struct_ret(<4 x i32> %arg0, i32 %arg1) 470double_nested_struct func_double_nested_struct_ret(int4 arg0, int arg1) { 471 double_nested_struct s = { 0 }; 472 return s; 473} 474 475// CHECK: define void @func_large_struct_padding_arg_direct(i8 %arg.coerce0, i32 %arg.coerce1, i8 %arg.coerce2, i32 %arg.coerce3, i8 %arg.coerce4, i8 %arg.coerce5, i16 %arg.coerce6, i16 %arg.coerce7, [3 x i8] %arg.coerce8, i64 %arg.coerce9, i32 %arg.coerce10, i8 %arg.coerce11, i32 %arg.coerce12, i16 %arg.coerce13, i8 %arg.coerce14) 476void func_large_struct_padding_arg_direct(large_struct_padding arg) { } 477 478// AMDGCN: define void @func_large_struct_padding_arg_store(%struct.large_struct_padding addrspace(1)* nocapture %out, %struct.large_struct_padding addrspace(5)* byval nocapture readonly align 8 %arg) 479// R600: define void @func_large_struct_padding_arg_store(%struct.large_struct_padding addrspace(1)* nocapture %out, %struct.large_struct_padding* byval nocapture readonly align 8 %arg) 480void func_large_struct_padding_arg_store(global large_struct_padding* out, large_struct_padding arg) { 481 *out = arg; 482} 483 484// CHECK: define void @v3i32_reg_count(<3 x i32> %arg1, <3 x i32> %arg2, <3 x i32> %arg3, <3 x i32> %arg4, i32 %arg5.coerce0, float %arg5.coerce1, i32 %arg5.coerce2) 485void v3i32_reg_count(int3 arg1, int3 arg2, int3 arg3, int3 arg4, struct_arg_t arg5) { } 486 487// Function signature from blender, nothing should be passed byval. The v3i32 488// should not count as 4 passed registers. 489// AMDGCN: define void @v3i32_pair_reg_count(%struct.int3_pair addrspace(5)* nocapture %arg0, <3 x i32> %arg1.coerce0, <3 x i32> %arg1.coerce1, <3 x i32> %arg2, <3 x i32> %arg3.coerce0, <3 x i32> %arg3.coerce1, <3 x i32> %arg4, float %arg5) 490// R600: define void @v3i32_pair_reg_count(%struct.int3_pair* nocapture %arg0, <3 x i32> %arg1.coerce0, <3 x i32> %arg1.coerce1, <3 x i32> %arg2, <3 x i32> %arg3.coerce0, <3 x i32> %arg3.coerce1, <3 x i32> %arg4, float %arg5) 491void v3i32_pair_reg_count(int3_pair *arg0, int3_pair arg1, int3 arg2, int3_pair arg3, int3 arg4, float arg5) { } 492 493// Each short4 should fit pack into 2 registers. 494// CHECK: define void @v4i16_reg_count(<4 x i16> %arg0, <4 x i16> %arg1, <4 x i16> %arg2, <4 x i16> %arg3, <4 x i16> %arg4, <4 x i16> %arg5, i32 %arg6.coerce0, i32 %arg6.coerce1, i32 %arg6.coerce2, i32 %arg6.coerce3) 495void v4i16_reg_count(short4 arg0, short4 arg1, short4 arg2, short4 arg3, 496 short4 arg4, short4 arg5, struct_4regs arg6) { } 497 498// AMDGCN: define void @v4i16_pair_reg_count_over(<4 x i16> %arg0, <4 x i16> %arg1, <4 x i16> %arg2, <4 x i16> %arg3, <4 x i16> %arg4, <4 x i16> %arg5, <4 x i16> %arg6, %struct.struct_4regs addrspace(5)* byval nocapture align 4 %arg7) 499// R600: define void @v4i16_pair_reg_count_over(<4 x i16> %arg0, <4 x i16> %arg1, <4 x i16> %arg2, <4 x i16> %arg3, <4 x i16> %arg4, <4 x i16> %arg5, <4 x i16> %arg6, %struct.struct_4regs* byval nocapture align 4 %arg7) 500void v4i16_pair_reg_count_over(short4 arg0, short4 arg1, short4 arg2, short4 arg3, 501 short4 arg4, short4 arg5, short4 arg6, struct_4regs arg7) { } 502 503// CHECK: define void @v3i16_reg_count(<3 x i16> %arg0, <3 x i16> %arg1, <3 x i16> %arg2, <3 x i16> %arg3, <3 x i16> %arg4, <3 x i16> %arg5, i32 %arg6.coerce0, i32 %arg6.coerce1, i32 %arg6.coerce2, i32 %arg6.coerce3) 504void v3i16_reg_count(short3 arg0, short3 arg1, short3 arg2, short3 arg3, 505 short3 arg4, short3 arg5, struct_4regs arg6) { } 506 507// AMDGCN: define void @v3i16_reg_count_over(<3 x i16> %arg0, <3 x i16> %arg1, <3 x i16> %arg2, <3 x i16> %arg3, <3 x i16> %arg4, <3 x i16> %arg5, <3 x i16> %arg6, %struct.struct_4regs addrspace(5)* byval nocapture align 4 %arg7) 508// R600: define void @v3i16_reg_count_over(<3 x i16> %arg0, <3 x i16> %arg1, <3 x i16> %arg2, <3 x i16> %arg3, <3 x i16> %arg4, <3 x i16> %arg5, <3 x i16> %arg6, %struct.struct_4regs* byval nocapture align 4 %arg7) 509void v3i16_reg_count_over(short3 arg0, short3 arg1, short3 arg2, short3 arg3, 510 short3 arg4, short3 arg5, short3 arg6, struct_4regs arg7) { } 511 512// CHECK: define void @v2i16_reg_count(<2 x i16> %arg0, <2 x i16> %arg1, <2 x i16> %arg2, <2 x i16> %arg3, <2 x i16> %arg4, <2 x i16> %arg5, <2 x i16> %arg6, <2 x i16> %arg7, <2 x i16> %arg8, <2 x i16> %arg9, <2 x i16> %arg10, <2 x i16> %arg11, i32 %arg13.coerce0, i32 %arg13.coerce1, i32 %arg13.coerce2, i32 %arg13.coerce3) 513void v2i16_reg_count(short2 arg0, short2 arg1, short2 arg2, short2 arg3, 514 short2 arg4, short2 arg5, short2 arg6, short2 arg7, 515 short2 arg8, short2 arg9, short2 arg10, short2 arg11, 516 struct_4regs arg13) { } 517 518// AMDGCN: define void @v2i16_reg_count_over(<2 x i16> %arg0, <2 x i16> %arg1, <2 x i16> %arg2, <2 x i16> %arg3, <2 x i16> %arg4, <2 x i16> %arg5, <2 x i16> %arg6, <2 x i16> %arg7, <2 x i16> %arg8, <2 x i16> %arg9, <2 x i16> %arg10, <2 x i16> %arg11, <2 x i16> %arg12, %struct.struct_4regs addrspace(5)* byval nocapture align 4 %arg13) 519// R600: define void @v2i16_reg_count_over(<2 x i16> %arg0, <2 x i16> %arg1, <2 x i16> %arg2, <2 x i16> %arg3, <2 x i16> %arg4, <2 x i16> %arg5, <2 x i16> %arg6, <2 x i16> %arg7, <2 x i16> %arg8, <2 x i16> %arg9, <2 x i16> %arg10, <2 x i16> %arg11, <2 x i16> %arg12, %struct.struct_4regs* byval nocapture align 4 %arg13) 520void v2i16_reg_count_over(short2 arg0, short2 arg1, short2 arg2, short2 arg3, 521 short2 arg4, short2 arg5, short2 arg6, short2 arg7, 522 short2 arg8, short2 arg9, short2 arg10, short2 arg11, 523 short2 arg12, struct_4regs arg13) { } 524 525// CHECK: define void @v2i8_reg_count(<2 x i8> %arg0, <2 x i8> %arg1, <2 x i8> %arg2, <2 x i8> %arg3, <2 x i8> %arg4, <2 x i8> %arg5, i32 %arg6.coerce0, i32 %arg6.coerce1, i32 %arg6.coerce2, i32 %arg6.coerce3) 526void v2i8_reg_count(char2 arg0, char2 arg1, char2 arg2, char2 arg3, 527 char2 arg4, char2 arg5, struct_4regs arg6) { } 528 529// AMDGCN: define void @v2i8_reg_count_over(<2 x i8> %arg0, <2 x i8> %arg1, <2 x i8> %arg2, <2 x i8> %arg3, <2 x i8> %arg4, <2 x i8> %arg5, i32 %arg6, %struct.struct_4regs addrspace(5)* byval nocapture align 4 %arg7) 530// R600: define void @v2i8_reg_count_over(<2 x i8> %arg0, <2 x i8> %arg1, <2 x i8> %arg2, <2 x i8> %arg3, <2 x i8> %arg4, <2 x i8> %arg5, i32 %arg6, %struct.struct_4regs* byval nocapture align 4 %arg7) 531void v2i8_reg_count_over(char2 arg0, char2 arg1, char2 arg2, char2 arg3, 532 char2 arg4, char2 arg5, int arg6, struct_4regs arg7) { } 533 534// CHECK: define void @num_regs_left_64bit_aggregate(<4 x i32> %arg0, <4 x i32> %arg1, <4 x i32> %arg2, <3 x i32> %arg3, [2 x i32] %arg4.coerce, i32 %arg5) 535void num_regs_left_64bit_aggregate(int4 arg0, int4 arg1, int4 arg2, int3 arg3, struct_char_x8 arg4, int arg5) { } 536