summary refs log tree commit diff
path: root/src/test/mir-opt/lower_intrinsics.wrapping.LowerIntrinsics.diff
blob: 5a0286bad2fb7cba37a66835507b7496a3a41101 (plain)
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
- // MIR for `wrapping` before LowerIntrinsics
+ // MIR for `wrapping` after LowerIntrinsics
  
  fn wrapping(_1: i32, _2: i32) -> () {
      debug a => _1;                       // in scope 0 at $DIR/lower_intrinsics.rs:6:17: 6:18
      debug b => _2;                       // in scope 0 at $DIR/lower_intrinsics.rs:6:25: 6:26
      let mut _0: ();                      // return place in scope 0 at $DIR/lower_intrinsics.rs:6:33: 6:33
      let _3: i32;                         // in scope 0 at $DIR/lower_intrinsics.rs:7:9: 7:11
      let mut _4: i32;                     // in scope 0 at $DIR/lower_intrinsics.rs:7:45: 7:46
      let mut _5: i32;                     // in scope 0 at $DIR/lower_intrinsics.rs:7:48: 7:49
      let mut _7: i32;                     // in scope 0 at $DIR/lower_intrinsics.rs:8:45: 8:46
      let mut _8: i32;                     // in scope 0 at $DIR/lower_intrinsics.rs:8:48: 8:49
      let mut _10: i32;                    // in scope 0 at $DIR/lower_intrinsics.rs:9:45: 9:46
      let mut _11: i32;                    // in scope 0 at $DIR/lower_intrinsics.rs:9:48: 9:49
      scope 1 {
          debug _x => _3;                  // in scope 1 at $DIR/lower_intrinsics.rs:7:9: 7:11
          let _6: i32;                     // in scope 1 at $DIR/lower_intrinsics.rs:8:9: 8:11
          scope 2 {
              debug _y => _6;              // in scope 2 at $DIR/lower_intrinsics.rs:8:9: 8:11
              let _9: i32;                 // in scope 2 at $DIR/lower_intrinsics.rs:9:9: 9:11
              scope 3 {
                  debug _z => _9;          // in scope 3 at $DIR/lower_intrinsics.rs:9:9: 9:11
              }
          }
      }
  
      bb0: {
          StorageLive(_3);                 // scope 0 at $DIR/lower_intrinsics.rs:7:9: 7:11
          StorageLive(_4);                 // scope 0 at $DIR/lower_intrinsics.rs:7:45: 7:46
          _4 = _1;                         // scope 0 at $DIR/lower_intrinsics.rs:7:45: 7:46
          StorageLive(_5);                 // scope 0 at $DIR/lower_intrinsics.rs:7:48: 7:49
          _5 = _2;                         // scope 0 at $DIR/lower_intrinsics.rs:7:48: 7:49
-         _3 = wrapping_add::<i32>(move _4, move _5) -> bb1; // scope 0 at $DIR/lower_intrinsics.rs:7:14: 7:50
-                                          // mir::Constant
-                                          // + span: $DIR/lower_intrinsics.rs:7:14: 7:44
-                                          // + literal: Const { ty: extern "rust-intrinsic" fn(i32, i32) -> i32 {wrapping_add::<i32>}, val: Value(Scalar(<ZST>)) }
+         _3 = Add(move _4, move _5);      // scope 0 at $DIR/lower_intrinsics.rs:7:14: 7:50
+         goto -> bb1;                     // scope 0 at $DIR/lower_intrinsics.rs:7:14: 7:50
      }
  
      bb1: {
          StorageDead(_5);                 // scope 0 at $DIR/lower_intrinsics.rs:7:49: 7:50
          StorageDead(_4);                 // scope 0 at $DIR/lower_intrinsics.rs:7:49: 7:50
          StorageLive(_6);                 // scope 1 at $DIR/lower_intrinsics.rs:8:9: 8:11
          StorageLive(_7);                 // scope 1 at $DIR/lower_intrinsics.rs:8:45: 8:46
          _7 = _1;                         // scope 1 at $DIR/lower_intrinsics.rs:8:45: 8:46
          StorageLive(_8);                 // scope 1 at $DIR/lower_intrinsics.rs:8:48: 8:49
          _8 = _2;                         // scope 1 at $DIR/lower_intrinsics.rs:8:48: 8:49
-         _6 = wrapping_sub::<i32>(move _7, move _8) -> bb2; // scope 1 at $DIR/lower_intrinsics.rs:8:14: 8:50
-                                          // mir::Constant
-                                          // + span: $DIR/lower_intrinsics.rs:8:14: 8:44
-                                          // + literal: Const { ty: extern "rust-intrinsic" fn(i32, i32) -> i32 {wrapping_sub::<i32>}, val: Value(Scalar(<ZST>)) }
+         _6 = Sub(move _7, move _8);      // scope 1 at $DIR/lower_intrinsics.rs:8:14: 8:50
+         goto -> bb2;                     // scope 1 at $DIR/lower_intrinsics.rs:8:14: 8:50
      }
  
      bb2: {
          StorageDead(_8);                 // scope 1 at $DIR/lower_intrinsics.rs:8:49: 8:50
          StorageDead(_7);                 // scope 1 at $DIR/lower_intrinsics.rs:8:49: 8:50
          StorageLive(_9);                 // scope 2 at $DIR/lower_intrinsics.rs:9:9: 9:11
          StorageLive(_10);                // scope 2 at $DIR/lower_intrinsics.rs:9:45: 9:46
          _10 = _1;                        // scope 2 at $DIR/lower_intrinsics.rs:9:45: 9:46
          StorageLive(_11);                // scope 2 at $DIR/lower_intrinsics.rs:9:48: 9:49
          _11 = _2;                        // scope 2 at $DIR/lower_intrinsics.rs:9:48: 9:49
-         _9 = wrapping_mul::<i32>(move _10, move _11) -> bb3; // scope 2 at $DIR/lower_intrinsics.rs:9:14: 9:50
-                                          // mir::Constant
-                                          // + span: $DIR/lower_intrinsics.rs:9:14: 9:44
-                                          // + literal: Const { ty: extern "rust-intrinsic" fn(i32, i32) -> i32 {wrapping_mul::<i32>}, val: Value(Scalar(<ZST>)) }
+         _9 = Mul(move _10, move _11);    // scope 2 at $DIR/lower_intrinsics.rs:9:14: 9:50
+         goto -> bb3;                     // scope 2 at $DIR/lower_intrinsics.rs:9:14: 9:50
      }
  
      bb3: {
          StorageDead(_11);                // scope 2 at $DIR/lower_intrinsics.rs:9:49: 9:50
          StorageDead(_10);                // scope 2 at $DIR/lower_intrinsics.rs:9:49: 9:50
          _0 = const ();                   // scope 0 at $DIR/lower_intrinsics.rs:6:33: 10:2
          StorageDead(_9);                 // scope 2 at $DIR/lower_intrinsics.rs:10:1: 10:2
          StorageDead(_6);                 // scope 1 at $DIR/lower_intrinsics.rs:10:1: 10:2
          StorageDead(_3);                 // scope 0 at $DIR/lower_intrinsics.rs:10:1: 10:2
          return;                          // scope 0 at $DIR/lower_intrinsics.rs:10:2: 10:2
      }
  
      bb4 (cleanup): {
          resume;                          // scope 0 at $DIR/lower_intrinsics.rs:6:1: 10:2
      }
  }