Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
40c4c5d3
Unverified
Commit
40c4c5d3
authored
Aug 14, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
random.c: use `I` specifier for `mrb_get_args()`; ref #5530
parent
8e5e9623
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
51 deletions
+4
-51
mrbgems/mruby-random/src/random.c
mrbgems/mruby-random/src/random.c
+4
-51
No files found.
mrbgems/mruby-random/src/random.c
View file @
40c4c5d3
...
...
@@ -149,14 +149,6 @@ get_opt(mrb_state* mrb)
return
arg
;
}
static
void
random_check
(
mrb_state
*
mrb
,
mrb_value
random
)
{
struct
RClass
*
c
=
mrb_class_get_id
(
mrb
,
MRB_SYM
(
Random
));
if
(
!
mrb_obj_is_kind_of
(
mrb
,
random
,
c
)
||
!
mrb_istruct_p
(
random
))
{
mrb_raise
(
mrb
,
E_TYPE_ERROR
,
"Random instance required"
);
}
}
static
mrb_value
random_default
(
mrb_state
*
mrb
)
{
struct
RClass
*
c
=
mrb_class_get_id
(
mrb
,
MRB_SYM
(
Random
));
...
...
@@ -227,47 +219,13 @@ static mrb_value
mrb_ary_shuffle_bang
(
mrb_state
*
mrb
,
mrb_value
ary
)
{
mrb_int
i
,
max
;
mrb_value
r
=
mrb_nil_value
();
rand_state
*
random
;
/*
* MSC compiler bug generating invalid instructions with optimization
* enabled. MSC errantly uses a hardcoded value with optimizations on
* when using a fixed value from a union.
* Creating a temp volatile variable and reassigning back to the original
* value tricks the compiler to not perform this optimization;
*/
#if defined _MSC_VER && _MSC_VER >= 1923
/* C++ will not cast away volatile easily, so we cannot do something like
* volatile mrb_value rr = r; r = (mrb_value)rr; with C++.
* That cast does work with C.
* We also have to trick the compiler to not optimize away the const_cast entirely
* by creating and manipulating an intermediate volatile pointer.
*/
volatile
mrb_value
*
v_r
;
volatile
mrb_int
ii
;
mrb_value
*
p_r
;
v_r
=
&
r
;
ii
=
2
;
v_r
=
v_r
+
2
;
#if defined __cplusplus
p_r
=
const_cast
<
mrb_value
*>
(
v_r
-
ii
);
#else
p_r
=
(
mrb_value
*
)
v_r
-
ii
;
#endif
r
=
*
p_r
;
#endif
if
(
RARRAY_LEN
(
ary
)
>
1
)
{
mrb_get_args
(
mrb
,
"|o"
,
&
r
);
if
(
mrb_nil_p
(
r
))
{
struct
RClass
*
c
=
mrb_class_get_id
(
mrb
,
MRB_SYM
(
Random
));
if
(
mrb_get_args
(
mrb
,
"|I"
,
&
random
,
c
)
==
0
)
{
random
=
random_default_state
(
mrb
);
}
else
{
random_check
(
mrb
,
r
);
random
=
random_ptr
(
r
);
}
mrb_ary_modify
(
mrb
,
mrb_ary_ptr
(
ary
));
max
=
RARRAY_LEN
(
ary
);
for
(
i
=
RARRAY_LEN
(
ary
)
-
1
;
i
>
0
;
i
--
)
{
...
...
@@ -322,18 +280,13 @@ mrb_ary_sample(mrb_state *mrb, mrb_value ary)
{
mrb_int
n
=
0
;
mrb_bool
given
;
mrb_value
r
=
mrb_nil_value
();
rand_state
*
random
;
mrb_int
len
;
struct
RClass
*
c
=
mrb_class_get_id
(
mrb
,
MRB_SYM
(
Random
));
mrb_get_args
(
mrb
,
"|i?o"
,
&
n
,
&
given
,
&
r
);
if
(
mrb_nil_p
(
r
))
{
if
(
mrb_get_args
(
mrb
,
"|i?I"
,
&
n
,
&
given
,
&
random
,
c
)
<
2
)
{
random
=
random_default_state
(
mrb
);
}
else
{
random_check
(
mrb
,
r
);
random
=
random_ptr
(
r
);
}
len
=
RARRAY_LEN
(
ary
);
if
(
!
given
)
{
/* pick one element */
switch
(
len
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment