Skip to content

Commit 81dd382

Browse files
committed
Auto merge of #30265 - oli-obk:const_val_trans, r=pnkfelix
r? @nagisa I'm going to need the `ConstVal` -> `ValueRef` translation to start removing trans/consts piece by piece. If you need anything implemented in the translation, feel free to assign an issue to me.
2 parents 01e5c48 + 9a63bb6 commit 81dd382

File tree

2 files changed

+40
-42
lines changed

2 files changed

+40
-42
lines changed

src/librustc_trans/trans/consts.rs

+34
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ use trans::{adt, closure, debuginfo, expr, inline, machine};
3131
use trans::base::{self, push_ctxt};
3232
use trans::common::{self, type_is_sized, ExprOrMethodCall, node_id_substs, C_nil, const_get_elt};
3333
use trans::common::{CrateContext, C_integral, C_floating, C_bool, C_str_slice, C_bytes, val_ty};
34+
use trans::common::C_floating_f64;
3435
use trans::common::{C_struct, C_undef, const_to_opt_int, const_to_opt_uint, VariantInfo, C_uint};
3536
use trans::common::{type_is_fat_ptr, Field, C_vector, C_array, C_null, ExprId, MethodCallKey};
3637
use trans::declare;
@@ -107,6 +108,39 @@ pub fn const_lit(cx: &CrateContext, e: &hir::Expr, lit: &ast::Lit)
107108
}
108109
}
109110

111+
pub fn trans_constval<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
112+
cv: &ConstVal,
113+
ty: Ty<'tcx>,
114+
param_substs: &'tcx Substs<'tcx>)
115+
-> ValueRef
116+
{
117+
let llty = type_of::type_of(ccx, ty);
118+
match *cv {
119+
ConstVal::Float(v) => C_floating_f64(v, llty),
120+
ConstVal::Bool(v) => C_bool(ccx, v),
121+
ConstVal::Int(v) => C_integral(llty, v as u64, true),
122+
ConstVal::Uint(v) => C_integral(llty, v, false),
123+
ConstVal::Str(ref v) => C_str_slice(ccx, v.clone()),
124+
ConstVal::ByteStr(ref v) => addr_of(ccx, C_bytes(ccx, v), 1, "byte_str"),
125+
ConstVal::Struct(id) | ConstVal::Tuple(id) => {
126+
let expr = ccx.tcx().map.expect_expr(id);
127+
match const_expr(ccx, expr, param_substs, None, TrueConst::Yes) {
128+
Ok((val, _)) => val,
129+
Err(e) => panic!("const eval failure: {}", e.description()),
130+
}
131+
},
132+
ConstVal::Function(_) => {
133+
unimplemented!()
134+
},
135+
ConstVal::Array(..) => {
136+
unimplemented!()
137+
},
138+
ConstVal::Repeat(..) => {
139+
unimplemented!()
140+
},
141+
}
142+
}
143+
110144
pub fn ptrcast(val: ValueRef, ty: Type) -> ValueRef {
111145
unsafe {
112146
llvm::LLVMConstPointerCast(val, ty.to_ref())

src/librustc_trans/trans/mir/constant.rs

+6-42
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,8 @@
1111
use middle::ty::{Ty, HasTypeFlags};
1212
use rustc::middle::const_eval::ConstVal;
1313
use rustc::mir::repr as mir;
14-
use trans::consts::{self, TrueConst};
14+
use trans::consts;
1515
use trans::common::{self, Block};
16-
use trans::common::{C_bool, C_bytes, C_floating_f64, C_integral, C_str_slice};
17-
use trans::type_of;
1816

1917
use super::operand::OperandRef;
2018
use super::MirContext;
@@ -29,45 +27,11 @@ impl<'bcx, 'tcx> MirContext<'bcx, 'tcx> {
2927
use super::operand::OperandValue::{Ref, Immediate};
3028

3129
let ccx = bcx.ccx();
32-
let llty = type_of::type_of(ccx, ty);
33-
let val = match *cv {
34-
ConstVal::Float(v) => Immediate(C_floating_f64(v, llty)),
35-
ConstVal::Bool(v) => Immediate(C_bool(ccx, v)),
36-
ConstVal::Int(v) => Immediate(C_integral(llty, v as u64, true)),
37-
ConstVal::Uint(v) => Immediate(C_integral(llty, v, false)),
38-
ConstVal::Str(ref v) => Immediate(C_str_slice(ccx, v.clone())),
39-
ConstVal::ByteStr(ref v) => {
40-
Immediate(consts::addr_of(ccx,
41-
C_bytes(ccx, v),
42-
1,
43-
"byte_str"))
44-
}
45-
46-
ConstVal::Struct(id) | ConstVal::Tuple(id) => {
47-
let expr = bcx.tcx().map.expect_expr(id);
48-
let (llval, _) = match consts::const_expr(ccx,
49-
expr,
50-
bcx.fcx.param_substs,
51-
None,
52-
TrueConst::Yes) {
53-
Ok(v) => v,
54-
Err(_) => panic!("constant eval failure"),
55-
};
56-
if common::type_is_immediate(bcx.ccx(), ty) {
57-
Immediate(llval)
58-
} else {
59-
Ref(llval)
60-
}
61-
}
62-
ConstVal::Function(_) => {
63-
unimplemented!()
64-
}
65-
ConstVal::Array(..) => {
66-
unimplemented!()
67-
}
68-
ConstVal::Repeat(..) => {
69-
unimplemented!()
70-
}
30+
let val = consts::trans_constval(ccx, cv, ty, bcx.fcx.param_substs);
31+
let val = if common::type_is_immediate(ccx, ty) {
32+
Immediate(val)
33+
} else {
34+
Ref(val)
7135
};
7236

7337
assert!(!ty.has_erasable_regions());

0 commit comments

Comments
 (0)