diff options
| author | b-naber <bn263@gmx.de> | 2022-02-16 10:56:01 +0100 |
|---|---|---|
| committer | b-naber <bn263@gmx.de> | 2022-06-14 16:07:11 +0200 |
| commit | 9096b3e44f6261791e79af851172eebf89a0c2cc (patch) | |
| tree | 2db3d10cb3baf2042349f49e971bd98d7da448e1 | |
| parent | ce2b3a9b4c6084eddc4d1c61436b9d41bb1483e5 (diff) | |
| download | rust-9096b3e44f6261791e79af851172eebf89a0c2cc.tar.gz rust-9096b3e44f6261791e79af851172eebf89a0c2cc.zip | |
implement valtrees as the type-system representation for constant values
| -rw-r--r-- | src/constant.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/constant.rs b/src/constant.rs index 3d14a0eca52..ef72e6efb94 100644 --- a/src/constant.rs +++ b/src/constant.rs @@ -127,7 +127,7 @@ pub(crate) fn codegen_constant<'tcx>( ConstantKind::Val(val, ty) => return codegen_const_value(fx, val, ty), }; let const_val = match const_.kind() { - ConstKind::Value(const_val) => const_val, + ConstKind::Value(valtree) => fx.tcx.valtree_to_const_val((const_.ty(), valtree)), ConstKind::Unevaluated(ty::Unevaluated { def, substs, promoted }) if fx.tcx.is_static(def.did) => { @@ -468,9 +468,10 @@ pub(crate) fn mir_operand_get_const_val<'tcx>( ) -> Option<ConstValue<'tcx>> { match operand { Operand::Constant(const_) => match const_.literal { - ConstantKind::Ty(const_) => { - fx.monomorphize(const_).eval(fx.tcx, ParamEnv::reveal_all()).kind().try_to_value() - } + ConstantKind::Ty(const_) => fx + .monomorphize(const_) + .eval_for_mir(fx.tcx, ParamEnv::reveal_all()) + .try_to_value(fx.tcx), ConstantKind::Val(val, _) => Some(val), }, // FIXME(rust-lang/rust#85105): Casts like `IMM8 as u32` result in the const being stored |
