@@ -8,6 +8,7 @@ use rustc_data_structures::fx::FxHashMap;
8
8
use rustc_middle:: ty:: layout:: LayoutOf ;
9
9
use rustc_target:: abi:: Size ;
10
10
11
+ use crate :: helpers:: target_os_is_unix;
11
12
use crate :: * ;
12
13
13
14
/// Check whether an operation that writes to a target buffer was successful.
@@ -55,7 +56,7 @@ impl<'tcx> EnvVars<'tcx> {
55
56
} ;
56
57
if forward {
57
58
let var_ptr = match target_os {
58
- "linux" | "macos" =>
59
+ target if target_os_is_unix ( target ) =>
59
60
alloc_env_var_as_c_str ( name. as_ref ( ) , value. as_ref ( ) , ecx) ?,
60
61
"windows" => alloc_env_var_as_wide_str ( name. as_ref ( ) , value. as_ref ( ) , ecx) ?,
61
62
unsupported =>
@@ -113,11 +114,7 @@ impl<'mir, 'tcx: 'mir> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mi
113
114
pub trait EvalContextExt < ' mir , ' tcx : ' mir > : crate :: MiriEvalContextExt < ' mir , ' tcx > {
114
115
fn getenv ( & mut self , name_op : & OpTy < ' tcx , Tag > ) -> InterpResult < ' tcx , Pointer < Option < Tag > > > {
115
116
let this = self . eval_context_mut ( ) ;
116
- let target_os = & this. tcx . sess . target . os ;
117
- assert ! (
118
- target_os == "linux" || target_os == "macos" ,
119
- "`getenv` is only available for the UNIX target family"
120
- ) ;
117
+ this. assert_target_os_is_unix ( "getenv" ) ;
121
118
122
119
let name_ptr = this. read_pointer ( name_op) ?;
123
120
let name = this. read_os_str_from_c_str ( name_ptr) ?;
@@ -211,11 +208,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
211
208
value_op : & OpTy < ' tcx , Tag > ,
212
209
) -> InterpResult < ' tcx , i32 > {
213
210
let this = self . eval_context_mut ( ) ;
214
- let target_os = & this. tcx . sess . target . os ;
215
- assert ! (
216
- target_os == "linux" || target_os == "macos" ,
217
- "`setenv` is only available for the UNIX target family"
218
- ) ;
211
+ this. assert_target_os_is_unix ( "setenv" ) ;
219
212
220
213
let name_ptr = this. read_pointer ( name_op) ?;
221
214
let value_ptr = this. read_pointer ( value_op) ?;
@@ -285,11 +278,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
285
278
286
279
fn unsetenv ( & mut self , name_op : & OpTy < ' tcx , Tag > ) -> InterpResult < ' tcx , i32 > {
287
280
let this = self . eval_context_mut ( ) ;
288
- let target_os = & this. tcx . sess . target . os ;
289
- assert ! (
290
- target_os == "linux" || target_os == "macos" ,
291
- "`unsetenv` is only available for the UNIX target family"
292
- ) ;
281
+ this. assert_target_os_is_unix ( "unsetenv" ) ;
293
282
294
283
let name_ptr = this. read_pointer ( name_op) ?;
295
284
let mut success = None ;
@@ -319,11 +308,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
319
308
size_op : & OpTy < ' tcx , Tag > ,
320
309
) -> InterpResult < ' tcx , Pointer < Option < Tag > > > {
321
310
let this = self . eval_context_mut ( ) ;
322
- let target_os = & this. tcx . sess . target . os ;
323
- assert ! (
324
- target_os == "linux" || target_os == "macos" ,
325
- "`getcwd` is only available for the UNIX target family"
326
- ) ;
311
+ this. assert_target_os_is_unix ( "getcwd" ) ;
327
312
328
313
let buf = this. read_pointer ( buf_op) ?;
329
314
let size = this. read_scalar ( size_op) ?. to_machine_usize ( & * this. tcx ) ?;
@@ -378,11 +363,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
378
363
379
364
fn chdir ( & mut self , path_op : & OpTy < ' tcx , Tag > ) -> InterpResult < ' tcx , i32 > {
380
365
let this = self . eval_context_mut ( ) ;
381
- let target_os = & this. tcx . sess . target . os ;
382
- assert ! (
383
- target_os == "linux" || target_os == "macos" ,
384
- "`chdir` is only available for the UNIX target family"
385
- ) ;
366
+ this. assert_target_os_is_unix ( "chdir" ) ;
386
367
387
368
let path = this. read_path_from_c_str ( this. read_pointer ( path_op) ?) ?;
388
369
@@ -468,11 +449,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
468
449
469
450
fn getpid ( & mut self ) -> InterpResult < ' tcx , i32 > {
470
451
let this = self . eval_context_mut ( ) ;
471
- let target_os = & this. tcx . sess . target . os ;
472
- assert ! (
473
- target_os == "linux" || target_os == "macos" ,
474
- "`getpid` is only available for the UNIX target family"
475
- ) ;
452
+ this. assert_target_os_is_unix ( "getpid" ) ;
476
453
477
454
this. check_no_isolation ( "`getpid`" ) ?;
478
455
0 commit comments