summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2021-07-29 12:41:59 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:38 -0400
commitf4f940e5a63e542a59fc7510332efb38ccafc10f (patch)
tree3f62b55ef5c5e153d46cd80fd93ed49f196b0e34 /bootstraptest
parentb91078ea743fda959ad42f17562c4f3091bcf585 (diff)
Save PC and SP before accessing globals
These instructions are marked as not leaf in insns.def, which indicate that they could raise exceptions and/or call Ruby methods.
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_yjit.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/bootstraptest/test_yjit.rb b/bootstraptest/test_yjit.rb
index 1a683c1c41..a164b7a413 100644
--- a/bootstraptest/test_yjit.rb
+++ b/bootstraptest/test_yjit.rb
@@ -7,6 +7,19 @@ assert_equal 'string', %q{
foo
}
+# Check that exceptions work when setting global variables
+assert_equal 'rescued', %q{
+ def set_var
+ $var = 100
+ rescue
+ :rescued
+ end
+
+ set_var
+ trace_var(:$var) { raise }
+ set_var
+}
+
# Check that global variables work
assert_equal 'string', %q{
$foo = "string"
@@ -18,6 +31,25 @@ assert_equal 'string', %q{
foo
}
+# Check that exceptions work when getting global variable
+assert_equal 'rescued', %q{
+ module Warning
+ def warn(message)
+ raise
+ end
+ end
+
+ def get_var
+ $=
+ rescue
+ :rescued
+ end
+
+ $VERBOSE = true
+ get_var
+ get_var
+}
+
# Check that global tracepoints work
assert_equal 'true', %q{
def foo