mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Revert "vm_trace: implement postponed_jobs as st_table"
This reverts commit 5a1dfb04bc
(r63451)
And mark the functions as async-signal-safe while we're at it to
prevent future developers from making the same mistake as I did :x
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1d6c1e27d4
commit
b67d76b3a6
3 changed files with 60 additions and 21 deletions
|
@ -83,7 +83,11 @@ VALUE rb_tracearg_return_value(rb_trace_arg_t *trace_arg);
|
||||||
VALUE rb_tracearg_raised_exception(rb_trace_arg_t *trace_arg);
|
VALUE rb_tracearg_raised_exception(rb_trace_arg_t *trace_arg);
|
||||||
VALUE rb_tracearg_object(rb_trace_arg_t *trace_arg);
|
VALUE rb_tracearg_object(rb_trace_arg_t *trace_arg);
|
||||||
|
|
||||||
/* Postponed Job API */
|
/*
|
||||||
|
* Postponed Job API
|
||||||
|
* rb_postponed_job_register and rb_postponed_job_register_one are
|
||||||
|
* async-signal-safe and used via SIGPROF by the "stackprof" RubyGem
|
||||||
|
*/
|
||||||
typedef void (*rb_postponed_job_func_t)(void *arg);
|
typedef void (*rb_postponed_job_func_t)(void *arg);
|
||||||
int rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data);
|
int rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data);
|
||||||
int rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data);
|
int rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data);
|
||||||
|
|
|
@ -630,7 +630,8 @@ typedef struct rb_vm_struct {
|
||||||
struct st_table *ensure_rollback_table;
|
struct st_table *ensure_rollback_table;
|
||||||
|
|
||||||
/* postponed_job */
|
/* postponed_job */
|
||||||
struct st_table *postponed_jobs;
|
struct rb_postponed_job_struct *postponed_job_buffer;
|
||||||
|
int postponed_job_index;
|
||||||
|
|
||||||
int src_encoding_index;
|
int src_encoding_index;
|
||||||
|
|
||||||
|
|
72
vm_trace.c
72
vm_trace.c
|
@ -1572,6 +1572,11 @@ Init_vm_trace(void)
|
||||||
Init_postponed_job();
|
Init_postponed_job();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef struct rb_postponed_job_struct {
|
||||||
|
rb_postponed_job_func_t func;
|
||||||
|
void *data;
|
||||||
|
} rb_postponed_job_t;
|
||||||
|
|
||||||
#define MAX_POSTPONED_JOB 1000
|
#define MAX_POSTPONED_JOB 1000
|
||||||
#define MAX_POSTPONED_JOB_SPECIAL_ADDITION 24
|
#define MAX_POSTPONED_JOB_SPECIAL_ADDITION 24
|
||||||
|
|
||||||
|
@ -1579,56 +1584,85 @@ static void
|
||||||
Init_postponed_job(void)
|
Init_postponed_job(void)
|
||||||
{
|
{
|
||||||
rb_vm_t *vm = GET_VM();
|
rb_vm_t *vm = GET_VM();
|
||||||
vm->postponed_jobs = st_init_numtable();
|
vm->postponed_job_buffer = ALLOC_N(rb_postponed_job_t, MAX_POSTPONED_JOB);
|
||||||
|
vm->postponed_job_index = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum postponed_job_register_result {
|
enum postponed_job_register_result {
|
||||||
PJRR_SUCCESS = 0,
|
PJRR_SUCCESS = 0,
|
||||||
PJRR_FULL = 1
|
PJRR_FULL = 1,
|
||||||
|
PJRR_INTERRUPTED = 2
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Async-signal-safe */
|
||||||
static enum postponed_job_register_result
|
static enum postponed_job_register_result
|
||||||
postponed_job_register(rb_execution_context_t *ec, rb_vm_t *vm,
|
postponed_job_register(rb_execution_context_t *ec, rb_vm_t *vm,
|
||||||
unsigned int flags, rb_postponed_job_func_t func, void *data, size_t max)
|
unsigned int flags, rb_postponed_job_func_t func, void *data, int max, int expected_index)
|
||||||
{
|
{
|
||||||
if (vm->postponed_jobs->num_entries >= max) return PJRR_FULL;
|
rb_postponed_job_t *pjob;
|
||||||
|
|
||||||
st_add_direct(vm->postponed_jobs, (st_index_t)func, (st_data_t)data);
|
if (expected_index >= max) return PJRR_FULL; /* failed */
|
||||||
|
|
||||||
|
if (ATOMIC_CAS(vm->postponed_job_index, expected_index, expected_index+1) == expected_index) {
|
||||||
|
pjob = &vm->postponed_job_buffer[expected_index];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return PJRR_INTERRUPTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* unused: pjob->flags = flags; */
|
||||||
|
pjob->func = func;
|
||||||
|
pjob->data = data;
|
||||||
|
|
||||||
RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec);
|
RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec);
|
||||||
|
|
||||||
return PJRR_SUCCESS;
|
return PJRR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
/* return 0 if job buffer is full */
|
* return 0 if job buffer is full
|
||||||
|
* Async-signal-safe
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data)
|
rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data)
|
||||||
{
|
{
|
||||||
rb_execution_context_t *ec = GET_EC();
|
rb_execution_context_t *ec = GET_EC();
|
||||||
rb_vm_t *vm = rb_ec_vm_ptr(ec);
|
rb_vm_t *vm = rb_ec_vm_ptr(ec);
|
||||||
|
|
||||||
switch (postponed_job_register(ec, vm, flags, func, data, MAX_POSTPONED_JOB )) {
|
begin:
|
||||||
|
switch (postponed_job_register(ec, vm, flags, func, data, MAX_POSTPONED_JOB, vm->postponed_job_index)) {
|
||||||
case PJRR_SUCCESS : return 1;
|
case PJRR_SUCCESS : return 1;
|
||||||
case PJRR_FULL : return 0;
|
case PJRR_FULL : return 0;
|
||||||
|
case PJRR_INTERRUPTED: goto begin;
|
||||||
default: rb_bug("unreachable\n");
|
default: rb_bug("unreachable\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* return 0 if job buffer is full */
|
/*
|
||||||
|
* return 0 if job buffer is full
|
||||||
|
* Async-signal-safe
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data)
|
rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data)
|
||||||
{
|
{
|
||||||
rb_execution_context_t *ec = GET_EC();
|
rb_execution_context_t *ec = GET_EC();
|
||||||
rb_vm_t *vm = rb_ec_vm_ptr(ec);
|
rb_vm_t *vm = rb_ec_vm_ptr(ec);
|
||||||
|
rb_postponed_job_t *pjob;
|
||||||
|
int i, index;
|
||||||
|
|
||||||
if (st_lookup(vm->postponed_jobs, (st_data_t)func, 0)) {
|
begin:
|
||||||
RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec);
|
index = vm->postponed_job_index;
|
||||||
return 2;
|
for (i=0; i<index; i++) {
|
||||||
|
pjob = &vm->postponed_job_buffer[i];
|
||||||
|
if (pjob->func == func) {
|
||||||
|
RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
switch (postponed_job_register(ec, vm, flags, func, data, MAX_POSTPONED_JOB + MAX_POSTPONED_JOB_SPECIAL_ADDITION)) {
|
switch (postponed_job_register(ec, vm, flags, func, data, MAX_POSTPONED_JOB + MAX_POSTPONED_JOB_SPECIAL_ADDITION, index)) {
|
||||||
case PJRR_SUCCESS : return 1;
|
case PJRR_SUCCESS : return 1;
|
||||||
case PJRR_FULL : return 0;
|
case PJRR_FULL : return 0;
|
||||||
|
case PJRR_INTERRUPTED: goto begin;
|
||||||
default: rb_bug("unreachable\n");
|
default: rb_bug("unreachable\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1647,12 +1681,12 @@ rb_postponed_job_flush(rb_vm_t *vm)
|
||||||
{
|
{
|
||||||
EC_PUSH_TAG(ec);
|
EC_PUSH_TAG(ec);
|
||||||
if (EC_EXEC_TAG() == TAG_NONE) {
|
if (EC_EXEC_TAG() == TAG_NONE) {
|
||||||
st_data_t k, v;
|
int index;
|
||||||
while (st_shift(vm->postponed_jobs, &k, &v)) {
|
while ((index = vm->postponed_job_index) > 0) {
|
||||||
rb_postponed_job_func_t func = (rb_postponed_job_func_t)k;
|
if (ATOMIC_CAS(vm->postponed_job_index, index, index-1) == index) {
|
||||||
void *arg = (void *)v;
|
rb_postponed_job_t *pjob = &vm->postponed_job_buffer[index-1];
|
||||||
|
(*pjob->func)(pjob->data);
|
||||||
func(arg);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EC_POP_TAG();
|
EC_POP_TAG();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue