aboutsummaryrefslogtreecommitdiffstats
path: root/load.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 05:45:46 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 05:45:46 +0000
commitfce0bd0a73f2f70d267ff3cd3a074d4416376587 (patch)
tree08af33a4df9911669ead6664cfddbe8c804c9fdc /load.c
parentdf51a2eb5c38fbdd841ba42c4af6776c89efe7f8 (diff)
downloadruby-fce0bd0a73f2f70d267ff3cd3a074d4416376587.tar.gz
th->ec: rb_load_internal0
* load.c (rb_load_internal0): accepts `ec`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r--load.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/load.c b/load.c
index 43007b43a6..9b258b7657 100644
--- a/load.c
+++ b/load.c
@@ -578,9 +578,10 @@ NORETURN(static void load_failed(VALUE));
const rb_iseq_t *rb_iseq_load_iseq(VALUE fname);
static int
-rb_load_internal0(rb_thread_t *th, VALUE fname, int wrap)
+rb_load_internal0(rb_execution_context_t *ec, VALUE fname, int wrap)
{
enum ruby_tag_type state;
+ rb_thread_t *th = rb_ec_thread_ptr(ec);
volatile VALUE wrapper = th->top_wrapper;
volatile VALUE self = th->top_self;
#if !defined __GNUC__
@@ -646,11 +647,11 @@ rb_load_internal0(rb_thread_t *th, VALUE fname, int wrap)
static void
rb_load_internal(VALUE fname, int wrap)
{
- rb_thread_t *curr_th = GET_THREAD();
- int state = rb_load_internal0(curr_th, fname, wrap);
+ rb_execution_context_t *ec = GET_EC();
+ int state = rb_load_internal0(ec, fname, wrap);
if (state) {
- if (state == TAG_RAISE) rb_exc_raise(curr_th->ec->errinfo);
- EC_JUMP_TAG(curr_th->ec, state);
+ if (state == TAG_RAISE) rb_exc_raise(ec->errinfo);
+ EC_JUMP_TAG(ec, state);
}
}
@@ -680,7 +681,7 @@ rb_load_protect(VALUE fname, int wrap, int *pstate)
}
POP_TAG();
- if (state == TAG_NONE) state = rb_load_internal0(GET_THREAD(), path, wrap);
+ if (state == TAG_NONE) state = rb_load_internal0(GET_EC(), path, wrap);
if (state != TAG_NONE) *pstate = state;
}
@@ -963,8 +964,8 @@ int
rb_require_internal(VALUE fname, int safe)
{
volatile int result = -1;
- rb_thread_t *th = GET_THREAD();
- volatile VALUE errinfo = th->ec->errinfo;
+ rb_execution_context_t *ec = GET_EC();
+ volatile VALUE errinfo = ec->errinfo;
enum ruby_tag_type state;
struct {
int safe;
@@ -976,7 +977,7 @@ rb_require_internal(VALUE fname, int safe)
path = rb_str_encode_ospath(fname);
RUBY_DTRACE_HOOK(REQUIRE_ENTRY, RSTRING_PTR(fname));
- EC_PUSH_TAG(th->ec);
+ EC_PUSH_TAG(ec);
saved.safe = rb_safe_level();
if ((state = EXEC_TAG()) == TAG_NONE) {
long handle;
@@ -999,7 +1000,7 @@ rb_require_internal(VALUE fname, int safe)
else {
switch (found) {
case 'r':
- state = rb_load_internal0(th, path, 0);
+ state = rb_load_internal0(ec, path, 0);
break;
case 's':
@@ -1025,7 +1026,7 @@ rb_require_internal(VALUE fname, int safe)
return state;
}
- th->ec->errinfo = errinfo;
+ ec->errinfo = errinfo;
RUBY_DTRACE_HOOK(REQUIRE_RETURN, RSTRING_PTR(fname));