]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/fastcall-inreg.rs
Enable emission of alignment attrs for pointer params
[rust.git] / src / test / codegen / fastcall-inreg.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Checks if the "fastcall" calling convention marks function arguments
12 // as "inreg" like the C/C++ compilers for the platforms.
13 // x86 only.
14
15 // ignore-aarch64
16 // ignore-aarch64_be
17 // ignore-arm
18 // ignore-armeb
19 // ignore-avr
20 // ignore-bpfel
21 // ignore-bpfeb
22 // ignore-hexagon
23 // ignore-mips
24 // ignore-mips64
25 // ignore-msp430
26 // ignore-powerpc64
27 // ignore-powerpc64le
28 // ignore-powerpc
29 // ignore-r600
30 // ignore-amdgcn
31 // ignore-sparc
32 // ignore-sparc64
33 // ignore-sparcv9
34 // ignore-sparcel
35 // ignore-s390x
36 // ignore-tce
37 // ignore-thumb
38 // ignore-thumbeb
39 // ignore-x86_64
40 // ignore-xcore
41 // ignore-nvptx
42 // ignore-nvptx64
43 // ignore-le32
44 // ignore-le64
45 // ignore-amdil
46 // ignore-amdil64
47 // ignore-hsail
48 // ignore-hsail64
49 // ignore-spir
50 // ignore-spir64
51 // ignore-kalimba
52 // ignore-shave
53 // ignore-wasm32
54 // ignore-wasm64
55 // ignore-emscripten
56
57 // compile-flags: -C no-prepopulate-passes
58
59 #![crate_type = "lib"]
60
61 pub mod tests {
62     // CHECK: @f1(i32 inreg %arg0, i32 inreg %arg1, i32 %arg2)
63     #[no_mangle]
64     pub extern "fastcall" fn f1(_: i32, _: i32, _: i32) {}
65
66     // CHECK: @f2(i32* inreg %arg0, i32* inreg %arg1, i32* %arg2)
67     #[no_mangle]
68     pub extern "fastcall" fn f2(_: *const i32, _: *const i32, _: *const i32) {}
69
70     // CHECK: @f3(float %arg0, i32 inreg %arg1, i32 inreg %arg2, i32 %arg3)
71     #[no_mangle]
72     pub extern "fastcall" fn f3(_: f32, _: i32, _: i32, _: i32) {}
73
74     // CHECK: @f4(i32 inreg %arg0, float %arg1, i32 inreg %arg2, i32 %arg3)
75     #[no_mangle]
76     pub extern "fastcall" fn f4(_: i32, _: f32, _: i32, _: i32) {}
77
78     // CHECK: @f5(i64 %arg0, i32 %arg1)
79     #[no_mangle]
80     pub extern "fastcall" fn f5(_: i64, _: i32) {}
81
82     // CHECK: @f6(i1 inreg zeroext %arg0, i32 inreg %arg1, i32 %arg2)
83     #[no_mangle]
84     pub extern "fastcall" fn f6(_: bool, _: i32, _: i32) {}
85 }