@@ -20,7 +20,6 @@ use rustc_data_structures::fx::{FxHashMap, FxIndexSet};
20
20
use rustc_data_structures:: profiling:: { get_resident_set_size, print_time_passes_entry} ;
21
21
use rustc_data_structures:: sync:: par_map;
22
22
use rustc_data_structures:: unord:: UnordMap ;
23
- use rustc_hir as hir;
24
23
use rustc_hir:: def_id:: { DefId , LOCAL_CRATE } ;
25
24
use rustc_hir:: lang_items:: LangItem ;
26
25
use rustc_metadata:: EncodedMetadata ;
@@ -30,6 +29,7 @@ use rustc_middle::middle::debugger_visualizer::{DebuggerVisualizerFile, Debugger
30
29
use rustc_middle:: middle:: exported_symbols;
31
30
use rustc_middle:: middle:: exported_symbols:: SymbolExportKind ;
32
31
use rustc_middle:: middle:: lang_items;
32
+ use rustc_middle:: mir:: BinOp ;
33
33
use rustc_middle:: mir:: mono:: { CodegenUnit , CodegenUnitNameBuilder , MonoItem } ;
34
34
use rustc_middle:: query:: Providers ;
35
35
use rustc_middle:: ty:: layout:: { HasTyCtxt , LayoutOf , TyAndLayout } ;
@@ -46,32 +46,32 @@ use std::time::{Duration, Instant};
46
46
47
47
use itertools:: Itertools ;
48
48
49
- pub fn bin_op_to_icmp_predicate ( op : hir :: BinOpKind , signed : bool ) -> IntPredicate {
49
+ pub fn bin_op_to_icmp_predicate ( op : BinOp , signed : bool ) -> IntPredicate {
50
50
match op {
51
- hir :: BinOpKind :: Eq => IntPredicate :: IntEQ ,
52
- hir :: BinOpKind :: Ne => IntPredicate :: IntNE ,
53
- hir :: BinOpKind :: Lt => {
51
+ BinOp :: Eq => IntPredicate :: IntEQ ,
52
+ BinOp :: Ne => IntPredicate :: IntNE ,
53
+ BinOp :: Lt => {
54
54
if signed {
55
55
IntPredicate :: IntSLT
56
56
} else {
57
57
IntPredicate :: IntULT
58
58
}
59
59
}
60
- hir :: BinOpKind :: Le => {
60
+ BinOp :: Le => {
61
61
if signed {
62
62
IntPredicate :: IntSLE
63
63
} else {
64
64
IntPredicate :: IntULE
65
65
}
66
66
}
67
- hir :: BinOpKind :: Gt => {
67
+ BinOp :: Gt => {
68
68
if signed {
69
69
IntPredicate :: IntSGT
70
70
} else {
71
71
IntPredicate :: IntUGT
72
72
}
73
73
}
74
- hir :: BinOpKind :: Ge => {
74
+ BinOp :: Ge => {
75
75
if signed {
76
76
IntPredicate :: IntSGE
77
77
} else {
@@ -86,14 +86,14 @@ pub fn bin_op_to_icmp_predicate(op: hir::BinOpKind, signed: bool) -> IntPredicat
86
86
}
87
87
}
88
88
89
- pub fn bin_op_to_fcmp_predicate ( op : hir :: BinOpKind ) -> RealPredicate {
89
+ pub fn bin_op_to_fcmp_predicate ( op : BinOp ) -> RealPredicate {
90
90
match op {
91
- hir :: BinOpKind :: Eq => RealPredicate :: RealOEQ ,
92
- hir :: BinOpKind :: Ne => RealPredicate :: RealUNE ,
93
- hir :: BinOpKind :: Lt => RealPredicate :: RealOLT ,
94
- hir :: BinOpKind :: Le => RealPredicate :: RealOLE ,
95
- hir :: BinOpKind :: Gt => RealPredicate :: RealOGT ,
96
- hir :: BinOpKind :: Ge => RealPredicate :: RealOGE ,
91
+ BinOp :: Eq => RealPredicate :: RealOEQ ,
92
+ BinOp :: Ne => RealPredicate :: RealUNE ,
93
+ BinOp :: Lt => RealPredicate :: RealOLT ,
94
+ BinOp :: Le => RealPredicate :: RealOLE ,
95
+ BinOp :: Gt => RealPredicate :: RealOGT ,
96
+ BinOp :: Ge => RealPredicate :: RealOGE ,
97
97
op => {
98
98
bug ! (
99
99
"comparison_op_to_fcmp_predicate: expected comparison operator, \
@@ -110,7 +110,7 @@ pub fn compare_simd_types<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
110
110
rhs : Bx :: Value ,
111
111
t : Ty < ' tcx > ,
112
112
ret_ty : Bx :: Type ,
113
- op : hir :: BinOpKind ,
113
+ op : BinOp ,
114
114
) -> Bx :: Value {
115
115
let signed = match t. kind ( ) {
116
116
ty:: Float ( _) => {
0 commit comments