rt: Remove rust_stack
This commit is contained in:
parent
8861ba6159
commit
da7d79dfbe
1
mk/rt.mk
1
mk/rt.mk
|
@ -69,7 +69,6 @@ RUNTIME_CXXS_$(1)_$(2) := \
|
||||||
rt/rust_builtin.cpp \
|
rt/rust_builtin.cpp \
|
||||||
rt/rust_run_program.cpp \
|
rt/rust_run_program.cpp \
|
||||||
rt/rust_rng.cpp \
|
rt/rust_rng.cpp \
|
||||||
rt/rust_stack.cpp \
|
|
||||||
rt/rust_upcall.cpp \
|
rt/rust_upcall.cpp \
|
||||||
rt/rust_uv.cpp \
|
rt/rust_uv.cpp \
|
||||||
rt/rust_crate_map.cpp \
|
rt/rust_crate_map.cpp \
|
||||||
|
|
|
@ -681,6 +681,16 @@ rust_drop_env_lock() {
|
||||||
env_lock.unlock();
|
env_lock.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern "C" CDECL unsigned int
|
||||||
|
rust_valgrind_stack_register(void *start, void *end) {
|
||||||
|
return VALGRIND_STACK_REGISTER(start, end);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" CDECL void
|
||||||
|
rust_valgrind_stack_deregister(unsigned int id) {
|
||||||
|
VALGRIND_STACK_DEREGISTER(id);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Local Variables:
|
// Local Variables:
|
||||||
// mode: C++
|
// mode: C++
|
||||||
|
|
|
@ -1,105 +0,0 @@
|
||||||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
||||||
// file at the top-level directory of this distribution and at
|
|
||||||
// http://rust-lang.org/COPYRIGHT.
|
|
||||||
//
|
|
||||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
||||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
||||||
// option. This file may not be copied, modified, or distributed
|
|
||||||
// except according to those terms.
|
|
||||||
|
|
||||||
|
|
||||||
#include "rust_stack.h"
|
|
||||||
#include "vg/valgrind.h"
|
|
||||||
#include "vg/memcheck.h"
|
|
||||||
|
|
||||||
#include <cstdio>
|
|
||||||
|
|
||||||
#ifdef _LP64
|
|
||||||
const uintptr_t canary_value = 0xABCDABCDABCDABCD;
|
|
||||||
#else
|
|
||||||
const uintptr_t canary_value = 0xABCDABCD;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void
|
|
||||||
register_valgrind_stack(stk_seg *stk) {
|
|
||||||
stk->valgrind_id =
|
|
||||||
VALGRIND_STACK_REGISTER(&stk->data[0],
|
|
||||||
stk->end);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
reuse_valgrind_stack(stk_seg *stk, uint8_t *sp) {
|
|
||||||
// Establish that the stack is accessible. This must be done when reusing
|
|
||||||
// old stack segments, since the act of popping the stack previously
|
|
||||||
// caused valgrind to consider the whole thing inaccessible.
|
|
||||||
assert(sp >= stk->data && sp <= (uint8_t*) stk->end
|
|
||||||
&& "Stack pointer must be inside stack segment");
|
|
||||||
size_t sz = stk->end - (uintptr_t)sp;
|
|
||||||
(void) VALGRIND_MAKE_MEM_UNDEFINED(sp, sz);
|
|
||||||
(void) sz;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
deregister_valgrind_stack(stk_seg *stk) {
|
|
||||||
VALGRIND_STACK_DEREGISTER(stk->valgrind_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
add_stack_canary(stk_seg *stk) {
|
|
||||||
stk->canary = canary_value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
check_stack_canary(stk_seg *stk) {
|
|
||||||
assert(stk->canary == canary_value && "Somebody killed the canary");
|
|
||||||
}
|
|
||||||
|
|
||||||
// XXX: Duplication here between the local and exchange heap constructors
|
|
||||||
|
|
||||||
stk_seg *
|
|
||||||
create_stack(memory_region *region, size_t sz) {
|
|
||||||
size_t total_sz = sizeof(stk_seg) + sz;
|
|
||||||
stk_seg *stk = (stk_seg *)region->malloc(total_sz, "stack");
|
|
||||||
memset(stk, 0, sizeof(stk_seg));
|
|
||||||
stk->end = (uintptr_t) &stk->data[sz];
|
|
||||||
stk->is_big = 0;
|
|
||||||
add_stack_canary(stk);
|
|
||||||
register_valgrind_stack(stk);
|
|
||||||
return stk;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
destroy_stack(memory_region *region, stk_seg *stk) {
|
|
||||||
deregister_valgrind_stack(stk);
|
|
||||||
region->free(stk);
|
|
||||||
}
|
|
||||||
|
|
||||||
stk_seg *
|
|
||||||
create_exchange_stack(rust_exchange_alloc *exchange, size_t sz) {
|
|
||||||
size_t total_sz = sizeof(stk_seg) + sz;
|
|
||||||
stk_seg *stk = (stk_seg *)exchange->malloc(total_sz);
|
|
||||||
memset(stk, 0, sizeof(stk_seg));
|
|
||||||
stk->end = (uintptr_t) &stk->data[sz];
|
|
||||||
stk->is_big = 0;
|
|
||||||
add_stack_canary(stk);
|
|
||||||
register_valgrind_stack(stk);
|
|
||||||
return stk;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
destroy_exchange_stack(rust_exchange_alloc *exchange, stk_seg *stk) {
|
|
||||||
deregister_valgrind_stack(stk);
|
|
||||||
exchange->free(stk);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
extern "C" CDECL unsigned int
|
|
||||||
rust_valgrind_stack_register(void *start, void *end) {
|
|
||||||
return VALGRIND_STACK_REGISTER(start, end);
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" CDECL void
|
|
||||||
rust_valgrind_stack_deregister(unsigned int id) {
|
|
||||||
VALGRIND_STACK_DEREGISTER(id);
|
|
||||||
}
|
|
|
@ -1,54 +0,0 @@
|
||||||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
||||||
// file at the top-level directory of this distribution and at
|
|
||||||
// http://rust-lang.org/COPYRIGHT.
|
|
||||||
//
|
|
||||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
||||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
||||||
// option. This file may not be copied, modified, or distributed
|
|
||||||
// except according to those terms.
|
|
||||||
|
|
||||||
#ifndef RUST_STACK_H
|
|
||||||
#define RUST_STACK_H
|
|
||||||
|
|
||||||
#include "rust_globals.h"
|
|
||||||
#include "rust_exchange_alloc.h"
|
|
||||||
#include "memory_region.h"
|
|
||||||
|
|
||||||
struct rust_task;
|
|
||||||
|
|
||||||
struct stk_seg {
|
|
||||||
stk_seg *prev;
|
|
||||||
stk_seg *next;
|
|
||||||
uintptr_t end;
|
|
||||||
unsigned int valgrind_id;
|
|
||||||
uint8_t is_big;
|
|
||||||
|
|
||||||
rust_task *task;
|
|
||||||
uintptr_t canary;
|
|
||||||
|
|
||||||
uint8_t data[];
|
|
||||||
};
|
|
||||||
|
|
||||||
stk_seg *
|
|
||||||
create_stack(memory_region *region, size_t sz);
|
|
||||||
|
|
||||||
void
|
|
||||||
destroy_stack(memory_region *region, stk_seg *stk);
|
|
||||||
|
|
||||||
stk_seg *
|
|
||||||
create_exchange_stack(rust_exchange_alloc *exchange, size_t sz);
|
|
||||||
|
|
||||||
void
|
|
||||||
destroy_exchange_stack(rust_exchange_alloc *exchange, stk_seg *stk);
|
|
||||||
|
|
||||||
// Must be called before each time a stack is reused to tell valgrind
|
|
||||||
// that the stack is accessible.
|
|
||||||
void
|
|
||||||
reuse_valgrind_stack(stk_seg *stk, uint8_t *sp);
|
|
||||||
|
|
||||||
// Run a sanity check
|
|
||||||
void
|
|
||||||
check_stack_canary(stk_seg *stk);
|
|
||||||
|
|
||||||
#endif /* RUST_STACK_H */
|
|
Loading…
Reference in New Issue