Starting to properly attribute virtual vs. physical memory accesses.

This commit is contained in:
Ben Vanik
2015-03-29 11:11:35 -07:00
parent ab90e0932b
commit ec84a688e9
42 changed files with 346 additions and 372 deletions

View File

@@ -38,7 +38,6 @@ class ThreadState {
const std::string& name() const { return name_; }
void set_name(const std::string& value) { name_ = value; }
void* backend_data() const { return backend_data_; }
void* raw_context() const { return raw_context_; }
uint32_t stack_address() const { return stack_address_; }
size_t stack_size() const { return stack_size_; }
uint32_t thread_state_address() const { return thread_state_address_; }
@@ -60,7 +59,6 @@ class ThreadState {
uint32_t thread_id_;
std::string name_;
void* backend_data_;
void* raw_context_;
uint32_t stack_address_;
bool stack_allocated_;
uint32_t stack_size_;