]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/method-on-enum.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / method-on-enum.rs
1 // Copyright 2013-2014 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-tidy-linelength
12 // min-lldb-version: 310
13
14 // compile-flags:-g
15
16 // === GDB TESTS ===================================================================================
17
18 // gdb-command:run
19
20 // STACK BY REF
21 // gdb-command:print *self
22 // gdb-check:$1 = {{RUST$ENUM$DISR = Variant2, [...]}, {RUST$ENUM$DISR = Variant2, __0 = 117901063}}
23 // gdb-command:print arg1
24 // gdb-check:$2 = -1
25 // gdb-command:print arg2
26 // gdb-check:$3 = -2
27 // gdb-command:continue
28
29 // STACK BY VAL
30 // gdb-command:print self
31 // gdb-check:$4 = {{RUST$ENUM$DISR = Variant2, [...]}, {RUST$ENUM$DISR = Variant2, __0 = 117901063}}
32 // gdb-command:print arg1
33 // gdb-check:$5 = -3
34 // gdb-command:print arg2
35 // gdb-check:$6 = -4
36 // gdb-command:continue
37
38 // OWNED BY REF
39 // gdb-command:print *self
40 // gdb-check:$7 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
41 // gdb-command:print arg1
42 // gdb-check:$8 = -5
43 // gdb-command:print arg2
44 // gdb-check:$9 = -6
45 // gdb-command:continue
46
47 // OWNED BY VAL
48 // gdb-command:print self
49 // gdb-check:$10 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
50 // gdb-command:print arg1
51 // gdb-check:$11 = -7
52 // gdb-command:print arg2
53 // gdb-check:$12 = -8
54 // gdb-command:continue
55
56 // OWNED MOVED
57 // gdb-command:print *self
58 // gdb-check:$13 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
59 // gdb-command:print arg1
60 // gdb-check:$14 = -9
61 // gdb-command:print arg2
62 // gdb-check:$15 = -10
63 // gdb-command:continue
64
65
66 // === LLDB TESTS ==================================================================================
67
68 // lldb-command:run
69
70 // STACK BY REF
71 // lldb-command:print *self
72 // lldb-check:[...]$0 = Variant2(117901063)
73 // lldb-command:print arg1
74 // lldb-check:[...]$1 = -1
75 // lldb-command:print arg2
76 // lldb-check:[...]$2 = -2
77 // lldb-command:continue
78
79 // STACK BY VAL
80 // lldb-command:print self
81 // lldb-check:[...]$3 = Variant2(117901063)
82 // lldb-command:print arg1
83 // lldb-check:[...]$4 = -3
84 // lldb-command:print arg2
85 // lldb-check:[...]$5 = -4
86 // lldb-command:continue
87
88 // OWNED BY REF
89 // lldb-command:print *self
90 // lldb-check:[...]$6 = Variant1 { x: 1799, y: 1799 }
91 // lldb-command:print arg1
92 // lldb-check:[...]$7 = -5
93 // lldb-command:print arg2
94 // lldb-check:[...]$8 = -6
95 // lldb-command:continue
96
97 // OWNED BY VAL
98 // lldb-command:print self
99 // lldb-check:[...]$9 = Variant1 { x: 1799, y: 1799 }
100 // lldb-command:print arg1
101 // lldb-check:[...]$10 = -7
102 // lldb-command:print arg2
103 // lldb-check:[...]$11 = -8
104 // lldb-command:continue
105
106 // OWNED MOVED
107 // lldb-command:print *self
108 // lldb-check:[...]$12 = Variant1 { x: 1799, y: 1799 }
109 // lldb-command:print arg1
110 // lldb-check:[...]$13 = -9
111 // lldb-command:print arg2
112 // lldb-check:[...]$14 = -10
113 // lldb-command:continue
114
115 #![feature(box_syntax)]
116 #![feature(omit_gdb_pretty_printer_section)]
117 #![omit_gdb_pretty_printer_section]
118
119 #[derive(Copy, Clone)]
120 enum Enum {
121     Variant1 { x: u16, y: u16 },
122     Variant2 (u32)
123 }
124
125 impl Enum {
126
127     fn self_by_ref(&self, arg1: isize, arg2: isize) -> isize {
128         zzz(); // #break
129         arg1 + arg2
130     }
131
132     fn self_by_val(self, arg1: isize, arg2: isize) -> isize {
133         zzz(); // #break
134         arg1 + arg2
135     }
136
137     fn self_owned(self: Box<Enum>, arg1: isize, arg2: isize) -> isize {
138         zzz(); // #break
139         arg1 + arg2
140     }
141 }
142
143 fn main() {
144     let stack = Enum::Variant2(117901063);
145     let _ = stack.self_by_ref(-1, -2);
146     let _ = stack.self_by_val(-3, -4);
147
148     let owned: Box<_> = box Enum::Variant1{ x: 1799, y: 1799 };
149     let _ = owned.self_by_ref(-5, -6);
150     let _ = owned.self_by_val(-7, -8);
151     let _ = owned.self_owned(-9, -10);
152 }
153
154 fn zzz() {()}