]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/struct-return.rs
Initial version of AArch64 support.
[rust.git] / src / test / run-pass / struct-return.rs
1 // Copyright 2012-2015 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 // ignore-lexer-test FIXME #15883
12
13 pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
14
15 impl Copy for Quad {}
16
17 pub struct Floats { a: f64, b: u8, c: f64 }
18
19 impl Copy for Floats {}
20
21 mod rustrt {
22     use super::{Floats, Quad};
23
24     #[link(name = "rust_test_helpers")]
25     extern {
26         pub fn rust_dbg_abi_1(q: Quad) -> Quad;
27         pub fn rust_dbg_abi_2(f: Floats) -> Floats;
28     }
29 }
30
31 fn test1() {
32     unsafe {
33         let q = Quad { a: 0xaaaa_aaaa_aaaa_aaaa_u64,
34                  b: 0xbbbb_bbbb_bbbb_bbbb_u64,
35                  c: 0xcccc_cccc_cccc_cccc_u64,
36                  d: 0xdddd_dddd_dddd_dddd_u64 };
37         let qq = rustrt::rust_dbg_abi_1(q);
38         println!("a: {:x}", qq.a as uint);
39         println!("b: {:x}", qq.b as uint);
40         println!("c: {:x}", qq.c as uint);
41         println!("d: {:x}", qq.d as uint);
42         assert_eq!(qq.a, q.c + 1u64);
43         assert_eq!(qq.b, q.d - 1u64);
44         assert_eq!(qq.c, q.a + 1u64);
45         assert_eq!(qq.d, q.b - 1u64);
46     }
47 }
48
49 #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
50 fn test2() {
51     unsafe {
52         let f = Floats { a: 1.234567890e-15_f64,
53                  b: 0b_1010_1010_u8,
54                  c: 1.0987654321e-15_f64 };
55         let ff = rustrt::rust_dbg_abi_2(f);
56         println!("a: {}", ff.a as f64);
57         println!("b: {}", ff.b as uint);
58         println!("c: {}", ff.c as f64);
59         assert_eq!(ff.a, f.c + 1.0f64);
60         assert_eq!(ff.b, 0xff_u8);
61         assert_eq!(ff.c, f.a - 1.0f64);
62     }
63 }
64
65 #[cfg(any(target_arch = "x86", target_arch = "arm"))]
66 fn test2() {
67 }
68
69 pub fn main() {
70     test1();
71     test2();
72 }