Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into 1.8.7
Browse files Browse the repository at this point in the history
Conflicts:
	Gemfile.lock
	spec/ruby/shared/process/exit.rb
  • Loading branch information
brixen committed Jul 14, 2015
2 parents ab87c8c + abab1ad commit 52a39ac
Show file tree
Hide file tree
Showing 24 changed files with 372 additions and 1,671 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -94,7 +94,7 @@ class SpecRunner
end

def self.set_at_exit_status(status)
@at_exit_status = status
@at_exit_status = status || 1
end

def self.flags
Expand Down
2 changes: 1 addition & 1 deletion library/rubinius/configuration.rb
Expand Up @@ -4,7 +4,7 @@
Rubinius::ConfigurationVariables.define do |c|

c.section "gc" do |s|
s.vm_variable "young_bytes", (40 * 1024 * 1024),
s.vm_variable "young_bytes", (30 * 1024 * 1024),
"The number of bytes the young generation of the GC should use"

s.vm_variable "young_lifetime", 2,
Expand Down
9 changes: 5 additions & 4 deletions spec/ruby/shared/process/exit.rb
Expand Up @@ -53,11 +53,12 @@
status.exitstatus.should == 1
end

it "exits immediately when called from a thread" do
it "exits when called from a thread" do
pid = Process.fork do
Thread.new { @object.exit!(1) }
sleep 1
Process.exit!(2)
Thread.new { @object.exit!(1) }.join

# Do not let the main thread complete
sleep
end
pid, status = Process.waitpid2(pid)
status.exitstatus.should == 1
Expand Down
4 changes: 2 additions & 2 deletions vm/builtin/native_function.cpp
Expand Up @@ -333,7 +333,7 @@ namespace rubinius {
GCTokenImpl gct;
VM* vm = 0;

int calculate_stack = 0;
int stack_address = 0;
if(!env) {
// Apparently we're running in a new thread here, setup
// everything we need here.
Expand All @@ -345,7 +345,7 @@ namespace rubinius {
pthread_attr_init(&attrs);
pthread_attr_getstacksize (&attrs, &stack_size);
pthread_attr_destroy(&attrs);
vm->set_root_stack(reinterpret_cast<uintptr_t>(&calculate_stack), stack_size);
vm->set_root_stack(reinterpret_cast<uintptr_t>(&stack_address), stack_size);

// Setup nativemethod handles into thread local
State state(vm);
Expand Down
136 changes: 100 additions & 36 deletions vm/builtin/thread.cpp
Expand Up @@ -4,20 +4,27 @@
#include "builtin/fiber.hpp"
#include "builtin/fixnum.hpp"
#include "builtin/float.hpp"
#include "builtin/jit.hpp"
#include "builtin/location.hpp"
#include "builtin/lookup_table.hpp"
#include "builtin/native_method.hpp"
#include "builtin/string.hpp"
#include "builtin/symbol.hpp"
#include "builtin/thread.hpp"
#include "builtin/tuple.hpp"
#include "builtin/symbol.hpp"

#include "call_frame.hpp"
#include "dtrace/dtrace.h"
#include "environment.hpp"
#include "instruments/tooling.hpp"
#include "metrics.hpp"
#include "object_utils.hpp"
#include "ontology.hpp"
#include "on_stack.hpp"
#include "metrics.hpp"
#include "ontology.hpp"
#include "signal.hpp"

#include "dtrace/dtrace.h"

#include "instruments/tooling.hpp"

#include "util/logger.hpp"

#include "missing/gettid.h"
Expand Down Expand Up @@ -82,9 +89,15 @@ namespace rubinius {
return thr;
}

Thread* Thread::create(STATE, VM* vm, ThreadFunction function) {
return Thread::create(state, G(thread), vm, function);
}

Thread* Thread::create(STATE, Object* self, ThreadFunction function) {
VM* vm = state->shared().new_vm();
return Thread::create(state, self, state->shared().new_vm(), function);
}

Thread* Thread::create(STATE, Object* self, VM* vm, ThreadFunction function) {
Thread* thr = Thread::create(state, as<Class>(self), vm);

thr->function_ = function;
Expand Down Expand Up @@ -235,28 +248,88 @@ namespace rubinius {
return cFalse;
}

int Thread::start_thread(STATE, const pthread_attr_t &attrs) {
int Thread::start_thread(STATE, void* (*function)(void*)) {
Thread* self = this;
OnStack<1> os(state, self);

self->init_lock_.lock();

if(int error = pthread_create(&self->vm_->os_thread(),
&attrs, Thread::run, (void*)self->vm_)) {
pthread_attr_t attrs;
pthread_attr_init(&attrs);
pthread_attr_setstacksize(&attrs, THREAD_STACK_SIZE);
pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);

int error;

error = pthread_create(&self->vm_->os_thread(), &attrs,
function, (void*)self->vm_);

pthread_attr_destroy(&attrs);

if(error) {
return error;
} else {
// We can't return from here until the new thread completes a minimal
// initialization. After the initialization, it unlocks init_lock_.
// So, wait here until we can lock init_lock_ after that.
self->init_lock_.lock();

// We locked init_lock_. And we are sure that the new thread completed
// the initialization.
// Locking init_lock_ isn't needed anymore, so unlock it.
self->init_lock_.unlock();

return 0;
}
}

// We can't return from here until the new thread completes a minimal
// initialization. After the initialization, it unlocks init_lock_.
// So, wait here until we can lock init_lock_ after that.
self->init_lock_.lock();
Object* Thread::main_thread(STATE) {
GCTokenImpl gct;

// We locked init_lock_. And we are sure that the new thread completed
// the initialization.
// Locking init_lock_ isn't needed anymore, so unlock it.
self->init_lock_.unlock();
state->vm()->thread->hard_unlock(state, gct, 0);

return 0;
std::string& runtime = state->shared().env()->runtime_path();

G(rubinius)->set_const(state, "Signature",
Integer::from(state, state->shared().env()->signature()));

G(rubinius)->set_const(state, "RUNTIME_PATH", String::create(state,
runtime.c_str(), runtime.size()));

state->vm()->thread->pid(state, Fixnum::from(gettid()));

state->shared().env()->load_kernel(state, runtime);
state->shared().env()->run_file(state, runtime + "/loader.rbc");

state->vm()->thread->alive(state, cTrue);
state->vm()->thread_state()->clear();

state->shared().start_console(state);
state->shared().start_metrics(state);

Object* klass = G(rubinius)->get_const(state, state->symbol("Loader"));
if(klass->nil_p()) {
rubinius::bug("unable to find class Rubinius::Loader");
}

Object* instance = 0;
OnStack<1> os(state, instance);

instance = klass->send(state, 0, state->symbol("new"));
if(instance) {
state->shared().env()->set_loader(instance);
} else {
rubinius::bug("unable to instantiate Rubinius::Loader");
}

// Enable the JIT after the core library has loaded
G(jit)->enable(state);

Object* exit = instance->send(state, 0, state->symbol("main"));

state->shared().signals()->system_exit(state->vm()->thread_state()->raise_value());

return exit;
}

void* Thread::run(void* ptr) {
Expand All @@ -277,8 +350,8 @@ namespace rubinius {
vm->thread_id(), (unsigned int)thread_debug_self());
}

int calculate_stack = 0;
vm->set_root_stack(reinterpret_cast<uintptr_t>(&calculate_stack), THREAD_STACK_SIZE);
int stack_address = 0;
vm->set_root_stack(reinterpret_cast<uintptr_t>(&stack_address), THREAD_STACK_SIZE);

NativeMethod::init_thread(state);

Expand All @@ -305,13 +378,7 @@ namespace rubinius {
vm->thread->join_lock_.lock();
vm->thread->stopped();

if(!ret) {
if(vm->thread_state()->raise_reason() == cExit) {
vm->shared.env()->halt_and_exit(state);
}
}

LockedObjects& los = vm->locked_objects();
LockedObjects& los = state->vm()->locked_objects();
for(LockedObjects::iterator i = los.begin();
i != los.end();
++i) {
Expand All @@ -330,7 +397,11 @@ namespace rubinius {
shared.clear_critical(state);
shared.gc_independent();

vm->set_zombie();
if(vm->main_thread_p() || (!ret && vm->thread_state()->raise_reason() == cExit)) {
state->shared().signals()->system_exit(vm->thread_state()->raise_value());
} else {
vm->set_zombie(state);
}

RUBINIUS_THREAD_STOP(
const_cast<RBX_DTRACE_CHAR_P>(vm->name().c_str()), vm->thread_id(), 0);
Expand All @@ -345,19 +416,12 @@ namespace rubinius {
return Primitives::failure();
}

pthread_attr_t attrs;
pthread_attr_init(&attrs);
pthread_attr_setstacksize(&attrs, THREAD_STACK_SIZE);
pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);

if(int error = start_thread(state, attrs)) {
if(int error = start_thread(state, Thread::run)) {
char buf[RBX_STRERROR_BUFSIZE];
char* err = RBX_STRERROR(error, buf, RBX_STRERROR_BUFSIZE);
Exception::thread_error(state, err);
}

pthread_attr_destroy(&attrs);

return cNil;
}

Expand Down
8 changes: 6 additions & 2 deletions vm/builtin/thread.hpp
Expand Up @@ -280,15 +280,19 @@ namespace rubinius {
*
* @see Thread::allocate().
*/
static Thread* create(STATE, Object* self, ThreadFunction function);
static Thread* create(STATE, VM* vm);
static Thread* create(STATE, VM* vm, ThreadFunction function);
static Thread* create(STATE, Object* self, ThreadFunction function);
static Thread* create(STATE, Object* self, VM* vm, ThreadFunction function);
static Thread* create(STATE, Class* klass, VM* vm);

static void finalize(STATE, Thread* thread);

int start_thread(STATE, const pthread_attr_t &attrs);
int start_thread(STATE, void* (*function)(void*));
static void* run(void*);

static Object* main_thread(STATE);

public: /* TypeInfo */

class Info : public TypeInfo {
Expand Down
11 changes: 5 additions & 6 deletions vm/drivers/cli.cpp
Expand Up @@ -52,7 +52,11 @@ int main(int argc, char** argv) {
env.load_conf(path);
}

env.run_from_filesystem();
env.boot();

// If we are here, something went wrong. Otherwise, exit(3) will always
// be called explicitly.
exit_code = -1;
} catch(Assertion *e) {
std::cout << "VM Assertion:" << std::endl;
std::cout << " " << e->reason << std::endl << std::endl;
Expand Down Expand Up @@ -130,11 +134,6 @@ int main(int argc, char** argv) {
std::cout << "Runtime exception: " << e.what() << std::endl;
exit_code = 1;
}

env.halt(env.state);
if(!exit_code) {
exit_code = env.exit_code(env.state);
}
}

return exit_code;
Expand Down

0 comments on commit 52a39ac

Please sign in to comment.