Skip to content

Commit

Permalink
[jit-bisect.pl] Give a --nodelay flag
Browse files Browse the repository at this point in the history
So we can run with --nodelay and get more reliable answers
  • Loading branch information
bdw committed Nov 16, 2018
1 parent 6236eb5 commit c130b7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/jit-bisect.pl
Expand Up @@ -132,6 +132,7 @@ sub bisect {
dump => 1,
timeout => undef,
spesh => 0,
nodelay => 0,
);
GetOptions(\%OPTS, qw(verbose dump! timeout=i spesh)) or die "Could not get options";

Expand Down Expand Up @@ -161,6 +162,7 @@ sub bisect {
MVM_SPESH_OSR_DISABLE
)} if $OPTS{spesh};
$ENV{MVM_SPESH_BLOCKING} = 1;
$ENV{MVM_SPESH_NODELAY} = 1 if exists $OPTS{nodelay};

# I find that the addition of the MVM_SPESH_LOG / MVM_JIT_LOG
# environment variable can sometimes change the spesh order of
Expand Down

0 comments on commit c130b7c

Please sign in to comment.