@@ -35,6 +35,8 @@ const STEPS_UNTIL_DETECTOR_ENABLED: isize = 1_000_000;
35
35
/// Should be a power of two for performance reasons.
36
36
const DETECTOR_SNAPSHOT_PERIOD : isize = 256 ;
37
37
38
+ /// Warning: do not use this function if you expect to start interpreting the given `Mir`.
39
+ /// The `EvalContext` is only meant to be used to query values from constants and statics.
38
40
pub fn mk_borrowck_eval_cx < ' a , ' mir , ' tcx > (
39
41
tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
40
42
instance : Instance < ' tcx > ,
@@ -46,6 +48,8 @@ pub fn mk_borrowck_eval_cx<'a, 'mir, 'tcx>(
46
48
mk_eval_cx_inner ( tcx, instance, mir, span, param_env)
47
49
}
48
50
51
+ /// This is just a helper function to reduce code duplication between `mk_borrowck_eval_cx` and
52
+ /// `mk_eval_cx`. Do not call this function directly.
49
53
fn mk_eval_cx_inner < ' a , ' mir , ' tcx > (
50
54
tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
51
55
instance : Instance < ' tcx > ,
@@ -54,8 +58,9 @@ fn mk_eval_cx_inner<'a, 'mir, 'tcx>(
54
58
param_env : ty:: ParamEnv < ' tcx > ,
55
59
) -> EvalResult < ' tcx , CompileTimeEvalContext < ' a , ' mir , ' tcx > > {
56
60
let mut ecx = EvalContext :: new ( tcx. at ( span) , param_env, CompileTimeInterpreter :: new ( ) ) ;
57
- // insert a stack frame so any queries have the correct substs
58
- // cannot use `push_stack_frame`; if we do `const_prop` explodes
61
+ // Insert a stack frame so any queries have the correct substs.
62
+ // We also avoid all the extra work performed by push_stack_frame,
63
+ // like initializing local variables
59
64
ecx. stack . push ( interpret:: Frame {
60
65
block : mir:: START_BLOCK ,
61
66
locals : IndexVec :: new ( ) ,
@@ -70,6 +75,9 @@ fn mk_eval_cx_inner<'a, 'mir, 'tcx>(
70
75
Ok ( ecx)
71
76
}
72
77
78
+ /// Warning: do not use this function if you expect to start interpreting the given `Mir`.
79
+ /// The `EvalContext` is only meant to be used to do field and index projections into constants for
80
+ /// `simd_shuffle` and const patterns in match arms.
73
81
fn mk_eval_cx < ' a , ' tcx > (
74
82
tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
75
83
instance : Instance < ' tcx > ,
0 commit comments